From 6952f6240fa4ae38d9dffff83f15389d3bf8c83f Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 24 Feb 2021 01:02:47 +0200 Subject: [PATCH 01/38] new featue-shabbat time --- app/database/models.py | 9 + app/internal/json_data_loader.py | 24 +- app/internal/locations.py | 52 + app/internal/shabbat.py | 34 + app/resources/locations.json | 2047 ++++++++++++++++++++++++++ app/routers/dayview.py | 9 +- app/static/dayview.css | 38 + app/templates/calendar_day_view.html | 10 + 8 files changed, 2215 insertions(+), 8 deletions(-) create mode 100644 app/internal/locations.py create mode 100644 app/internal/shabbat.py create mode 100644 app/resources/locations.json diff --git a/app/database/models.py b/app/database/models.py index 4dec81d0..d1b4d2e1 100644 --- a/app/database/models.py +++ b/app/database/models.py @@ -431,6 +431,15 @@ class InternationalDays(Base): international_day = Column(String, nullable=False) +class Location(Base): + __tablename__ = "locations" + + id = Column(Integer, primary_key=True, index=True) + country = Column(String, nullable=False) + city = Column(String, nullable=False) + zip_number = Column(String, nullable=False) + + # insert language data # Credit to adrihanu https://stackoverflow.com/users/9127249/adrihanu diff --git a/app/internal/json_data_loader.py b/app/internal/json_data_loader.py index 779bfa17..40ff5c34 100644 --- a/app/internal/json_data_loader.py +++ b/app/internal/json_data_loader.py @@ -5,8 +5,13 @@ from loguru import logger from sqlalchemy.orm import Session -from app.database.models import Base, InternationalDays, Joke, Quote, Zodiac -from app.internal import daily_quotes, international_days, jokes, zodiac +from app.config import RESOURCES_DIR +from app.database.models import ( + Base, InternationalDays, Joke, Quote, Location, Zodiac +) +from app.internal import ( + daily_quotes, international_days, jokes, locations, zodiac +) def load_to_database(session: Session) -> None: @@ -23,28 +28,35 @@ def load_to_database(session: Session) -> None: """ _insert_into_database( session, - 'app/resources/zodiac.json', + RESOURCES_DIR / "zodiac.json", Zodiac, zodiac.get_zodiac, ) _insert_into_database( session, - 'app/resources/quotes.json', + RESOURCES_DIR / "quotes.json", Quote, daily_quotes.get_quote, ) _insert_into_database( session, - 'app/resources/international_days.json', + RESOURCES_DIR / "international_days.json", InternationalDays, international_days.get_international_day, ) _insert_into_database( session, - 'app/resources/jokes.json', + RESOURCES_DIR / "locations.json", + Location, + locations.create_location_object, + ) + + _insert_into_database( + session, + RESOURCES_DIR / "jokes.json", Joke, jokes.get_joke, ) diff --git a/app/internal/locations.py b/app/internal/locations.py new file mode 100644 index 00000000..b5a2c623 --- /dev/null +++ b/app/internal/locations.py @@ -0,0 +1,52 @@ +import requests +from typing import Dict + +from sqlalchemy.orm import Session + +from app.database.models import Location + + +def create_location_object(location_: Dict[str, str]) -> Location: + """Returns a Zodiac object from the dictionary data. + + Args: + location_: A dictionary location related information. + + Returns: + A new Location object. + """ + return Location( + country=location_['country'], + city=location_['city'], + zip_number=location_['zip_number'], + ) + + +def return_zip_to_location(session: Session) -> str: + """Returns the zip number of the user IP location that match location object. + + Args: + session: The database connection. + + Returns: + A zip number for the user location. + """ + ip_and_location = requests.get('http://ipinfo.io/json').json() + for location in session.query(Location).all(): + if location.city == ip_and_location['city'] and \ + location.country == ip_and_location['country']: + return location.zip_number + + +def get_user_location(session: Session) -> str: + """Returns the user location. + + Args: + session: The database connection. + + Returns: + A user location string. + """ + my_location = return_zip_to_location(session) + location_details = requests.get(f"https://www.hebcal.com/shabbat?cfg=json&geonameid={my_location}") + return location_details.json() diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py new file mode 100644 index 00000000..32c470c0 --- /dev/null +++ b/app/internal/shabbat.py @@ -0,0 +1,34 @@ +from typing import Dict +from datetime import datetime + + +def shabbat_time_by_user_location(shabbat_time: Dict[str,str]) -> Dict: + """Returns the shabbat time of the user location.. + + Args: + Shabbat details. + + Returns: + Shabbat start end ending time. + """ + shabbat_details = {} + shabbat_details['start_hour'] = shabbat_time['items'][5]['title'].split(': ')[1] + shabbat_details['start_date'] = datetime.strptime(shabbat_time['items'][5]['date'].split('T')[0], "%Y-%m-%d").date() + shabbat_details['end_hour'] = shabbat_time['items'][7]['title'].split(': ')[1] + shabbat_details['end_date'] = datetime.strptime(shabbat_time['items'][7]['date'].split('T')[0], "%Y-%m-%d").date() + return shabbat_details + + +def get_shabbat_if_date_friday(shabbat_time: Dict[str,str], date: datetime) -> Dict: + """Returns shabbat start end ending time if specific date is Saturday,else None. + + Args: + Shabbat details and date. + + Returns: + Shabbat start end ending time if specific date is Saturday,else None + """ + shabbat_obj = shabbat_time_by_user_location(shabbat_time) + if date == shabbat_obj['start_date']: + return shabbat_obj + diff --git a/app/resources/locations.json b/app/resources/locations.json new file mode 100644 index 00000000..ee415682 --- /dev/null +++ b/app/resources/locations.json @@ -0,0 +1,2047 @@ +[ + { + "country":"AD", + "city":"Andorra La Vella", + "zip_number":"3041563" + }, + { + "country":"AE", + "city":"Abu Dhabi", + "zip_number":"292968" + }, + { + "country":"AE", + "city":"Dubai", + "zip_number":"292223" + }, + { + "country":"AF", + "city":"Kabul", + "zip_number":"1138958" + }, + { + "country":"AI", + "city":"The Valley", + "zip_number":"3573374" + }, + { + "country":"AL", + "city":"Tirana", + "zip_number":"3183875" + }, + { + "country":"AM", + "city":"Yerevan", + "zip_number":"616052" + }, + { + "country":"AO", + "city":"Luanda", + "zip_number":"2240449" + }, + { + "country":"AR", + "city":"Buenos Aires", + "zip_number":"3435910" + }, + { + "country":"AR", + "city":"Cordoba", + "zip_number":"3860259" + }, + { + "country":"AR", + "city":"Rosario", + "zip_number":"3838583" + }, + { + "country":"AS", + "city":"Pago Pago", + "zip_number":"5881576" + }, + { + "country":"AT", + "city":"Vienna", + "zip_number":"2761369" + }, + { + "country":"AU", + "city":"Adelaide", + "zip_number":"2078025" + }, + { + "country":"AU", + "city":"Brisbane", + "zip_number":"2174003" + }, + { + "country":"AU", + "city":"Canberra", + "zip_number":"2172517" + }, + { + "country":"AU", + "city":"Gold Coast", + "zip_number":"2165087" + }, + { + "country":"AU", + "city":"Hobart", + "zip_number":"2163355" + }, + { + "country":"AU", + "city":"Melbourne", + "zip_number":"2158177" + }, + { + "country":"AU", + "city":"Perth", + "zip_number":"2063523" + }, + { + "country":"AU", + "city":"Sydney", + "zip_number":"2147714" + }, + { + "country":"AW", + "city":"Oranjestad", + "zip_number":"3577154" + }, + { + "country":"AZ", + "city":"Baku", + "zip_number":"587084" + }, + { + "country":"BA", + "city":"Sarajevo", + "zip_number":"3191281" + }, + { + "country":"BB", + "city":"Bridgetown", + "zip_number":"3374036" + }, + { + "country":"BD", + "city":"Chittagong", + "zip_number":"1205733" + }, + { + "country":"BD", + "city":"Dhaka", + "zip_number":"1185241" + }, + { + "country":"BD", + "city":"Khulna", + "zip_number":"1336135" + }, + { + "country":"BE", + "city":"Brussels", + "zip_number":"2800866" + }, + { + "country":"BF", + "city":"Ouagadougou", + "zip_number":"2357048" + }, + { + "country":"BG", + "city":"Sofia", + "zip_number":"727011" + }, + { + "country":"BH", + "city":"Manama", + "zip_number":"290340" + }, + { + "country":"BI", + "city":"Bujumbura", + "zip_number":"425378" + }, + { + "country":"BJ", + "city":"Porto", + "zip_number":"novo" + }, + { + "country":"BM", + "city":"Hamilton", + "zip_number":"3573197" + }, + { + "country":"BN", + "city":"Bandar Seri Begawan", + "zip_number":"1820906" + }, + { + "country":"BO", + "city":"La Paz", + "zip_number":"3911925" + }, + { + "country":"BO", + "city":"Santa Cruz de la Sierra", + "zip_number":"3904906" + }, + { + "country":"BR", + "city":"Belo Horizonte", + "zip_number":"3470127" + }, + { + "country":"BR", + "city":"Brasilia", + "zip_number":"3469058" + }, + { + "country":"BR", + "city":"Fortaleza", + "zip_number":"3399415" + }, + { + "country":"BR", + "city":"Rio de Janeiro", + "zip_number":"3451190" + }, + { + "country":"BR", + "city":"Salvador", + "zip_number":"3450554" + }, + { + "country":"BR", + "city":"Sao Paulo", + "zip_number":"3448439" + }, + { + "country":"BS", + "city":"Nassau", + "zip_number":"3571824" + }, + { + "country":"BT", + "city":"Thimphu", + "zip_number":"1252416" + }, + { + "country":"BW", + "city":"Gaborone", + "zip_number":"933773" + }, + { + "country":"BY", + "city":"Minsk", + "zip_number":"625144" + }, + { + "country":"BZ", + "city":"Belmopan", + "zip_number":"3582672" + }, + { + "country":"CA", + "city":"Calgary", + "zip_number":"5913490" + }, + { + "country":"CA", + "city":"Edmonton", + "zip_number":"5946768" + }, + { + "country":"CA", + "city":"Halifax", + "zip_number":"6324729" + }, + { + "country":"CA", + "city":"Mississauga", + "zip_number":"6075357" + }, + { + "country":"CA", + "city":"Montreal", + "zip_number":"6077243" + }, + { + "country":"CA", + "city":"Ottawa", + "zip_number":"6094817" + }, + { + "country":"CA", + "city":"Quebec City", + "zip_number":"6325494" + }, + { + "country":"CA", + "city":"Regina", + "zip_number":"6119109" + }, + { + "country":"CA", + "city":"Saskatoon", + "zip_number":"6141256" + }, + { + "country":"CA", + "city":"St. John's", + "zip_number":"05" + }, + { + "country":"CA", + "city":"Toronto", + "zip_number":"6167865" + }, + { + "country":"CA", + "city":"Vancouver", + "zip_number":"6173331" + }, + { + "country":"CA", + "city":"Victoria", + "zip_number":"6174041" + }, + { + "country":"CA", + "city":"Winnipeg", + "zip_number":"6183235" + }, + { + "country":"CD", + "city":"Kinshasa", + "zip_number":"2314302" + }, + { + "country":"CD", + "city":"Lubumbashi", + "zip_number":"922704" + }, + { + "country":"CF", + "city":"Bangui", + "zip_number":"2389853" + }, + { + "country":"CG", + "city":"Brazzaville", + "zip_number":"2260535" + }, + { + "country":"CH", + "city":"Bern", + "zip_number":"2661552" + }, + { + "country":"CH", + "city":"Geneva", + "zip_number":"2660646" + }, + { + "country":"CH", + "city":"Zurich", + "zip_number":"2657896" + }, + { + "country":"CI", + "city":"Abidjan", + "zip_number":"2293538" + }, + { + "country":"CI", + "city":"Yamoussoukro", + "zip_number":"2279755" + }, + { + "country":"CK", + "city":"Avarua", + "zip_number":"4035715" + }, + { + "country":"CL", + "city":"Santiago", + "zip_number":"3871336" + }, + { + "country":"CM", + "city":"Douala", + "zip_number":"2232593" + }, + { + "country":"CM", + "city":"Yaounde", + "zip_number":"2220957" + }, + { + "country":"CN", + "city":"Beijing", + "zip_number":"1816670" + }, + { + "country":"CN", + "city":"Chengdu", + "zip_number":"1815286" + }, + { + "country":"CN", + "city":"Chongqing", + "zip_number":"1814906" + }, + { + "country":"CN", + "city":"Guangzhou", + "zip_number":"1809858" + }, + { + "country":"CN", + "city":"Harbin", + "zip_number":"2037013" + }, + { + "country":"CN", + "city":"Kaifeng", + "zip_number":"1804879" + }, + { + "country":"CN", + "city":"Lanzhou", + "zip_number":"1804430" + }, + { + "country":"CN", + "city":"Nanchong", + "zip_number":"1800146" + }, + { + "country":"CN", + "city":"Nanjing", + "zip_number":"1799962" + }, + { + "country":"CN", + "city":"Puyang", + "zip_number":"1798422" + }, + { + "country":"CN", + "city":"Shanghai", + "zip_number":"1796236" + }, + { + "country":"CN", + "city":"Shenyang", + "zip_number":"2034937" + }, + { + "country":"CN", + "city":"Shenzhen", + "zip_number":"1795565" + }, + { + "country":"CN", + "city":"Shiyan", + "zip_number":"1794903" + }, + { + "country":"CN", + "city":"Tai'an", + "zip_number":"1793724" + }, + { + "country":"CN", + "city":"Tianjin", + "zip_number":"1792947" + }, + { + "country":"CN", + "city":"Wuhan", + "zip_number":"1791247" + }, + { + "country":"CN", + "city":"Xi'an", + "zip_number":"1790630" + }, + { + "country":"CN", + "city":"Yueyang", + "zip_number":"1927639" + }, + { + "country":"CN", + "city":"Zhumadian", + "zip_number":"1783873" + }, + { + "country":"CO", + "city":"Barranquilla", + "zip_number":"3689147" + }, + { + "country":"CO", + "city":"Bogota", + "zip_number":"3688689" + }, + { + "country":"CO", + "city":"Cali", + "zip_number":"3687925" + }, + { + "country":"CO", + "city":"Medellin", + "zip_number":"3674962" + }, + { + "country":"CR", + "city":"San José", + "zip_number":"3621849" + }, + { + "country":"CU", + "city":"Havana", + "zip_number":"3553478" + }, + { + "country":"CV", + "city":"Praia", + "zip_number":"3374333" + }, + { + "country":"CW", + "city":"Willemstad", + "zip_number":"3513090" + }, + { + "country":"CY", + "city":"Nicosia", + "zip_number":"146268" + }, + { + "country":"CZ", + "city":"Prague", + "zip_number":"3067696" + }, + { + "country":"DE", + "city":"Berlin", + "zip_number":"2950159" + }, + { + "country":"DE", + "city":"Hamburg", + "zip_number":"2911298" + }, + { + "country":"DE", + "city":"Munich", + "zip_number":"2867714" + }, + { + "country":"DK", + "city":"Copenhagen", + "zip_number":"2618425" + }, + { + "country":"DM", + "city":"Roseau", + "zip_number":"3575635" + }, + { + "country":"DO", + "city":"Santiago de los Caballeros", + "zip_number":"3492914" + }, + { + "country":"DO", + "city":"Santo Domingo", + "zip_number":"3492908" + }, + { + "country":"DZ", + "city":"Algiers", + "zip_number":"2507480" + }, + { + "country":"EC", + "city":"Guayaquil", + "zip_number":"3657509" + }, + { + "country":"EC", + "city":"Quito", + "zip_number":"3652462" + }, + { + "country":"EE", + "city":"Tallinn", + "zip_number":"588409" + }, + { + "country":"EG", + "city":"Al Jizah", + "zip_number":"360995" + }, + { + "country":"EG", + "city":"Alexandria", + "zip_number":"361058" + }, + { + "country":"EG", + "city":"Cairo", + "zip_number":"360630" + }, + { + "country":"ER", + "city":"Asmara", + "zip_number":"343300" + }, + { + "country":"ES", + "city":"Barcelona", + "zip_number":"3128760" + }, + { + "country":"ES", + "city":"Madrid", + "zip_number":"3117735" + }, + { + "country":"ET", + "city":"Addis Ababa", + "zip_number":"344979" + }, + { + "country":"FI", + "city":"Helsinki", + "zip_number":"658225" + }, + { + "country":"FJ", + "city":"Suva", + "zip_number":"2198148" + }, + { + "country":"FK", + "city":"Stanley", + "zip_number":"3426691" + }, + { + "country":"FO", + "city":"Tórshavn", + "zip_number":"2611396" + }, + { + "country":"FR", + "city":"Marseilles", + "zip_number":"2995469" + }, + { + "country":"FR", + "city":"Paris", + "zip_number":"2988507" + }, + { + "country":"GA", + "city":"Libreville", + "zip_number":"2399697" + }, + { + "country":"GB", + "city":"Belfast", + "zip_number":"2655984" + }, + { + "country":"GB", + "city":"Birmingham", + "zip_number":"2655603" + }, + { + "country":"GB", + "city":"Bristol", + "zip_number":"2654675" + }, + { + "country":"GB", + "city":"Cardiff", + "zip_number":"2653822" + }, + { + "country":"GB", + "city":"Edinburgh", + "zip_number":"2650225" + }, + { + "country":"GB", + "city":"Glasgow", + "zip_number":"2648579" + }, + { + "country":"GB", + "city":"Leeds", + "zip_number":"2644688" + }, + { + "country":"GB", + "city":"Liverpool", + "zip_number":"2644210" + }, + { + "country":"GB", + "city":"London", + "zip_number":"2643743" + }, + { + "country":"GB", + "city":"Manchester", + "zip_number":"2643123" + }, + { + "country":"GB", + "city":"Sheffield", + "zip_number":"2638077" + }, + { + "country":"GE", + "city":"Tbilisi", + "zip_number":"611717" + }, + { + "country":"GH", + "city":"Accra", + "zip_number":"2306104" + }, + { + "country":"GH", + "city":"Kumasi", + "zip_number":"2298890" + }, + { + "country":"GI", + "city":"Gibraltar", + "zip_number":"2411585" + }, + { + "country":"GL", + "city":"Nuuk", + "zip_number":"3421319" + }, + { + "country":"GM", + "city":"Banjul", + "zip_number":"2413876" + }, + { + "country":"GN", + "city":"Camayenne", + "zip_number":"2422488" + }, + { + "country":"GN", + "city":"Conakry", + "zip_number":"2422465" + }, + { + "country":"GQ", + "city":"Malabo", + "zip_number":"2309527" + }, + { + "country":"GR", + "city":"Athens", + "zip_number":"264371" + }, + { + "country":"GT", + "city":"Guatemala City", + "zip_number":"3598132" + }, + { + "country":"GW", + "city":"Bissau", + "zip_number":"2374775" + }, + { + "country":"GY", + "city":"Georgetown", + "zip_number":"3378644" + }, + { + "country":"HK", + "city":"Hong Kong", + "zip_number":"1819729" + }, + { + "country":"HN", + "city":"Tegucigalpa", + "zip_number":"3600949" + }, + { + "country":"HR", + "city":"Zagreb", + "zip_number":"3186886" + }, + { + "country":"HT", + "city":"Port", + "zip_number":"au" + }, + { + "country":"HU", + "city":"Budapest", + "zip_number":"3054643" + }, + { + "country":"ID", + "city":"Bandung", + "zip_number":"1650357" + }, + { + "country":"ID", + "city":"Bekasi", + "zip_number":"1649378" + }, + { + "country":"ID", + "city":"Depok", + "zip_number":"1645518" + }, + { + "country":"ID", + "city":"Jakarta", + "zip_number":"1642911" + }, + { + "country":"ID", + "city":"Makassar", + "zip_number":"1622786" + }, + { + "country":"ID", + "city":"Medan", + "zip_number":"1214520" + }, + { + "country":"ID", + "city":"Palembang", + "zip_number":"1633070" + }, + { + "country":"ID", + "city":"Semarang", + "zip_number":"1627896" + }, + { + "country":"ID", + "city":"South Tangerang", + "zip_number":"8581443" + }, + { + "country":"ID", + "city":"Surabaya", + "zip_number":"1625822" + }, + { + "country":"ID", + "city":"Tangerang", + "zip_number":"1625084" + }, + { + "country":"IE", + "city":"Dublin", + "zip_number":"2964574" + }, + { + "country":"IL", + "city":"Ashdod", + "zip_number":"295629" + }, + { + "country":"IL", + "city":"Ashkelon", + "zip_number":"295620" + }, + { + "country":"IL", + "city":"Bat Yam", + "zip_number":"295548" + }, + { + "country":"IL", + "city":"Be'er Sheva", + "zip_number":"295530" + }, + { + "country":"IL", + "city":"Beit Shemesh", + "zip_number":"295432" + }, + { + "country":"IL", + "city":"Bnei Brak", + "zip_number":"295514" + }, + { + "country":"IL", + "city":"Eilat", + "zip_number":"295277" + }, + { + "country":"IL", + "city":"Hadera", + "zip_number":"294946" + }, + { + "country":"IL", + "city":"Haifa", + "zip_number":"294801" + }, + { + "country":"IL", + "city":"Herzliya", + "zip_number":"294778" + }, + { + "country":"IL", + "city":"Holon", + "zip_number":"294751" + }, + { + "country":"IL", + "city":"Jerusalem", + "zip_number":"281184" + }, + { + "country":"IL", + "city":"Kfar Saba", + "zip_number":"294514" + }, + { + "country":"IL", + "city":"Lod", + "zip_number":"294421" + }, + { + "country":"IL", + "city":"Modiin", + "zip_number":"282926" + }, + { + "country":"IL", + "city":"Nazareth", + "zip_number":"294098" + }, + { + "country":"IL", + "city":"Netanya", + "zip_number":"294071" + }, + { + "country":"IL", + "city":"Petach Tikvah", + "zip_number":"293918" + }, + { + "country":"IL", + "city":"Ra'anana", + "zip_number":"293807" + }, + { + "country":"IL", + "city":"Ramat Gan", + "zip_number":"293788" + }, + { + "country":"IL", + "city":"Ramla", + "zip_number":"293768" + }, + { + "country":"IL", + "city":"Rishon LeZion", + "zip_number":"293703" + }, + { + "country":"IL", + "city":"Tel Aviv", + "zip_number":"293397" + }, + { + "country":"IL", + "city":"Tiberias", + "zip_number":"293322" + }, + { + "country":"IM", + "city":"Douglas", + "zip_number":"3042237" + }, + { + "country":"IN", + "city":"Ahmadabad", + "zip_number":"1279233" + }, + { + "country":"IN", + "city":"Bangalore", + "zip_number":"1277333" + }, + { + "country":"IN", + "city":"Bombay", + "zip_number":"1275339" + }, + { + "country":"IN", + "city":"Calcutta", + "zip_number":"1275004" + }, + { + "country":"IN", + "city":"Chennai", + "zip_number":"1264527" + }, + { + "country":"IN", + "city":"Cochin", + "zip_number":"1273874" + }, + { + "country":"IN", + "city":"Hyderabad", + "zip_number":"1269843" + }, + { + "country":"IN", + "city":"Jaipur", + "zip_number":"1269515" + }, + { + "country":"IN", + "city":"Kanpur", + "zip_number":"1267995" + }, + { + "country":"IN", + "city":"New Delhi", + "zip_number":"1261481" + }, + { + "country":"IN", + "city":"Pune", + "zip_number":"1259229" + }, + { + "country":"IN", + "city":"Surat", + "zip_number":"1255364" + }, + { + "country":"IQ", + "city":"Baghdad", + "zip_number":"98182" + }, + { + "country":"IR", + "city":"Tehran", + "zip_number":"112931" + }, + { + "country":"IS", + "city":"Reykjavík", + "zip_number":"3413829" + }, + { + "country":"IT", + "city":"Milano", + "zip_number":"3173435" + }, + { + "country":"IT", + "city":"Rome", + "zip_number":"3169070" + }, + { + "country":"JM", + "city":"Kingston", + "zip_number":"3489854" + }, + { + "country":"JO", + "city":"Amman", + "zip_number":"250441" + }, + { + "country":"JP", + "city":"Kobe", + "zip_number":"shi" + }, + { + "country":"JP", + "city":"Kyoto", + "zip_number":"1857910" + }, + { + "country":"JP", + "city":"Nagoya", + "zip_number":"shi" + }, + { + "country":"JP", + "city":"Osaka", + "zip_number":"shi" + }, + { + "country":"JP", + "city":"Sapporo", + "zip_number":"2128295" + }, + { + "country":"JP", + "city":"Tokyo", + "zip_number":"1850147" + }, + { + "country":"KE", + "city":"Nairobi", + "zip_number":"184745" + }, + { + "country":"KG", + "city":"Bishkek", + "zip_number":"1528675" + }, + { + "country":"KH", + "city":"Phnom Penh", + "zip_number":"1821306" + }, + { + "country":"KM", + "city":"Moroni", + "zip_number":"921772" + }, + { + "country":"KN", + "city":"Basseterre", + "zip_number":"3575551" + }, + { + "country":"KP", + "city":"Pyongyang", + "zip_number":"1871859" + }, + { + "country":"KR", + "city":"Busan", + "zip_number":"1838524" + }, + { + "country":"KR", + "city":"Seoul", + "zip_number":"1835848" + }, + { + "country":"KW", + "city":"Kuwait", + "zip_number":"285787" + }, + { + "country":"KY", + "city":"George Town", + "zip_number":"3580661" + }, + { + "country":"KZ", + "city":"Almaty", + "zip_number":"1526384" + }, + { + "country":"KZ", + "city":"Astana", + "zip_number":"1526273" + }, + { + "country":"LA", + "city":"Vientiane", + "zip_number":"1651944" + }, + { + "country":"LB", + "city":"Beirut", + "zip_number":"276781" + }, + { + "country":"LC", + "city":"Castries", + "zip_number":"3576812" + }, + { + "country":"LI", + "city":"Vaduz", + "zip_number":"3042030" + }, + { + "country":"LR", + "city":"Monrovia", + "zip_number":"2274895" + }, + { + "country":"LS", + "city":"Maseru", + "zip_number":"932505" + }, + { + "country":"LT", + "city":"Vilnius", + "zip_number":"593116" + }, + { + "country":"LU", + "city":"Luxemburg", + "zip_number":"2960316" + }, + { + "country":"LV", + "city":"Riga", + "zip_number":"456172" + }, + { + "country":"LY", + "city":"Tripoli", + "zip_number":"2210247" + }, + { + "country":"MA", + "city":"Casablanca", + "zip_number":"2553604" + }, + { + "country":"MA", + "city":"Rabat", + "zip_number":"2538475" + }, + { + "country":"MD", + "city":"Chisinau", + "zip_number":"618426" + }, + { + "country":"ME", + "city":"Podgorica", + "zip_number":"3193044" + }, + { + "country":"MG", + "city":"Antananarivo", + "zip_number":"1070940" + }, + { + "country":"MK", + "city":"Skopje", + "zip_number":"785842" + }, + { + "country":"ML", + "city":"Bamako", + "zip_number":"2460596" + }, + { + "country":"MM", + "city":"Mandalay", + "zip_number":"1311874" + }, + { + "country":"MM", + "city":"Rangoon", + "zip_number":"1298824" + }, + { + "country":"MN", + "city":"Ulaanbaatar", + "zip_number":"2028462" + }, + { + "country":"MP", + "city":"Saipan", + "zip_number":"7828758" + }, + { + "country":"MR", + "city":"Nouakchott", + "zip_number":"2377450" + }, + { + "country":"MS", + "city":"Plymouth", + "zip_number":"3578069" + }, + { + "country":"MT", + "city":"Valletta", + "zip_number":"2562305" + }, + { + "country":"MU", + "city":"Port Louis", + "zip_number":"934154" + }, + { + "country":"MW", + "city":"Lilongwe", + "zip_number":"927967" + }, + { + "country":"MX", + "city":"Cancun", + "zip_number":"3531673" + }, + { + "country":"MX", + "city":"Guadalajara", + "zip_number":"4005539" + }, + { + "country":"MX", + "city":"Iztapalapa", + "zip_number":"3526683" + }, + { + "country":"MX", + "city":"Mazatlan", + "zip_number":"3996322" + }, + { + "country":"MX", + "city":"Mexico City", + "zip_number":"3530597" + }, + { + "country":"MX", + "city":"Monterrey", + "zip_number":"3995465" + }, + { + "country":"MX", + "city":"Puerto Vallarta", + "zip_number":"3991328" + }, + { + "country":"MX", + "city":"Tijuana", + "zip_number":"3981609" + }, + { + "country":"MY", + "city":"Kota Bharu", + "zip_number":"1736376" + }, + { + "country":"MY", + "city":"Kuala Lumpur", + "zip_number":"1735161" + }, + { + "country":"MZ", + "city":"Maputo", + "zip_number":"1040652" + }, + { + "country":"NA", + "city":"Windhoek", + "zip_number":"3352136" + }, + { + "country":"NC", + "city":"Nouméa", + "zip_number":"2139521" + }, + { + "country":"NE", + "city":"Niamey", + "zip_number":"2440485" + }, + { + "country":"NG", + "city":"Abuja", + "zip_number":"2352778" + }, + { + "country":"NG", + "city":"Lagos", + "zip_number":"2332459" + }, + { + "country":"NI", + "city":"Managua", + "zip_number":"3617763" + }, + { + "country":"NL", + "city":"Amsterdam", + "zip_number":"2759794" + }, + { + "country":"NO", + "city":"Oslo", + "zip_number":"3143244" + }, + { + "country":"NP", + "city":"Kathmandu", + "zip_number":"1283240" + }, + { + "country":"NU", + "city":"Alofi", + "zip_number":"4036284" + }, + { + "country":"NZ", + "city":"Auckland", + "zip_number":"2193733" + }, + { + "country":"NZ", + "city":"Christchurch", + "zip_number":"2192362" + }, + { + "country":"NZ", + "city":"Wellington", + "zip_number":"2179537" + }, + { + "country":"OM", + "city":"Muscat", + "zip_number":"287286" + }, + { + "country":"PA", + "city":"Panama City", + "zip_number":"3703443" + }, + { + "country":"PE", + "city":"Lima", + "zip_number":"3936456" + }, + { + "country":"PF", + "city":"Papeete", + "zip_number":"4033936" + }, + { + "country":"PG", + "city":"Port Moresby", + "zip_number":"2088122" + }, + { + "country":"PH", + "city":"Manila", + "zip_number":"1701668" + }, + { + "country":"PK", + "city":"Islamabad", + "zip_number":"1176615" + }, + { + "country":"PK", + "city":"Karachi", + "zip_number":"1174872" + }, + { + "country":"PL", + "city":"Warsaw", + "zip_number":"756135" + }, + { + "country":"PR", + "city":"San Juan", + "zip_number":"4568127" + }, + { + "country":"PT", + "city":"Lisbon", + "zip_number":"2267057" + }, + { + "country":"PY", + "city":"Asuncion", + "zip_number":"3439389" + }, + { + "country":"QA", + "city":"Doha", + "zip_number":"290030" + }, + { + "country":"RO", + "city":"Bucharest", + "zip_number":"683506" + }, + { + "country":"RS", + "city":"Belgrade", + "zip_number":"792680" + }, + { + "country":"RU", + "city":"Moscow", + "zip_number":"524901" + }, + { + "country":"RU", + "city":"Novosibirsk", + "zip_number":"1496747" + }, + { + "country":"RU", + "city":"Saint Petersburg", + "zip_number":"498817" + }, + { + "country":"RU", + "city":"Yekaterinburg", + "zip_number":"1486209" + }, + { + "country":"RW", + "city":"Kigali", + "zip_number":"202061" + }, + { + "country":"SA", + "city":"Jeddah", + "zip_number":"105343" + }, + { + "country":"SA", + "city":"Mecca", + "zip_number":"104515" + }, + { + "country":"SA", + "city":"Medina", + "zip_number":"109223" + }, + { + "country":"SA", + "city":"Riyadh", + "zip_number":"108410" + }, + { + "country":"SB", + "city":"Honiara", + "zip_number":"2108502" + }, + { + "country":"SC", + "city":"Victoria", + "zip_number":"241131" + }, + { + "country":"SD", + "city":"Khartoum", + "zip_number":"379252" + }, + { + "country":"SD", + "city":"Omdurman", + "zip_number":"365137" + }, + { + "country":"SE", + "city":"Stockholm", + "zip_number":"2673730" + }, + { + "country":"SG", + "city":"Singapore", + "zip_number":"1880252" + }, + { + "country":"SH", + "city":"Jamestown", + "zip_number":"3370903" + }, + { + "country":"SI", + "city":"Ljubljana", + "zip_number":"3196359" + }, + { + "country":"SK", + "city":"Bratislava", + "zip_number":"3060972" + }, + { + "country":"SL", + "city":"Freetown", + "zip_number":"2408770" + }, + { + "country":"SN", + "city":"Dakar", + "zip_number":"2253354" + }, + { + "country":"SO", + "city":"Mogadishu", + "zip_number":"53654" + }, + { + "country":"SR", + "city":"Paramaribo", + "zip_number":"3383330" + }, + { + "country":"ST", + "city":"São Tomé", + "zip_number":"2410763" + }, + { + "country":"SV", + "city":"San Salvador", + "zip_number":"3583361" + }, + { + "country":"SY", + "city":"Aleppo", + "zip_number":"170063" + }, + { + "country":"SY", + "city":"Damascus", + "zip_number":"170654" + }, + { + "country":"SZ", + "city":"Mbabane", + "zip_number":"934985" + }, + { + "country":"TC", + "city":"Cockburn Town", + "zip_number":"3576994" + }, + { + "country":"TD", + "city":"Ndjamena", + "zip_number":"2427123" + }, + { + "country":"TG", + "city":"Lomé", + "zip_number":"2365267" + }, + { + "country":"TH", + "city":"Bangkok", + "zip_number":"1609350" + }, + { + "country":"TJ", + "city":"Dushanbe", + "zip_number":"1221874" + }, + { + "country":"TM", + "city":"Ashgabat", + "zip_number":"162183" + }, + { + "country":"TN", + "city":"Tunis", + "zip_number":"2464470" + }, + { + "country":"TR", + "city":"Adana", + "zip_number":"325363" + }, + { + "country":"TR", + "city":"Ankara", + "zip_number":"323786" + }, + { + "country":"TR", + "city":"Bursa", + "zip_number":"750269" + }, + { + "country":"TR", + "city":"Istanbul", + "zip_number":"745044" + }, + { + "country":"TR", + "city":"Izmir", + "zip_number":"311046" + }, + { + "country":"TV", + "city":"Funafuti", + "zip_number":"2110394" + }, + { + "country":"TW", + "city":"Kaohsiung", + "zip_number":"1673820" + }, + { + "country":"TW", + "city":"Taipei", + "zip_number":"1668341" + }, + { + "country":"TZ", + "city":"Dar es Salaam", + "zip_number":"160263" + }, + { + "country":"TZ", + "city":"Dodoma", + "zip_number":"160196" + }, + { + "country":"UA", + "city":"Kharkiv", + "zip_number":"706483" + }, + { + "country":"UA", + "city":"Kiev", + "zip_number":"703448" + }, + { + "country":"UG", + "city":"Kampala", + "zip_number":"232422" + }, + { + "country":"US", + "city":"Atlanta", + "zip_number":"GA" + }, + { + "country":"US", + "city":"Austin", + "zip_number":"TX" + }, + { + "country":"US", + "city":"Baltimore", + "zip_number":"MD" + }, + { + "country":"US", + "city":"Boston", + "zip_number":"MA" + }, + { + "country":"US", + "city":"Buffalo", + "zip_number":"NY" + }, + { + "country":"US", + "city":"Chicago", + "zip_number":"IL" + }, + { + "country":"US", + "city":"Cincinnati", + "zip_number":"OH" + }, + { + "country":"US", + "city":"Cleveland", + "zip_number":"OH" + }, + { + "country":"US", + "city":"Columbus", + "zip_number":"OH" + }, + { + "country":"US", + "city":"Dallas", + "zip_number":"TX" + }, + { + "country":"US", + "city":"Denver", + "zip_number":"CO" + }, + { + "country":"US", + "city":"Detroit", + "zip_number":"MI" + }, + { + "country":"US", + "city":"Hartford", + "zip_number":"CT" + }, + { + "country":"US", + "city":"Honolulu", + "zip_number":"HI" + }, + { + "country":"US", + "city":"Houston", + "zip_number":"TX" + }, + { + "country":"US", + "city":"Lakewood", + "zip_number":"NJ" + }, + { + "country":"US", + "city":"Las Vegas", + "zip_number":"NV" + }, + { + "country":"US", + "city":"Livingston", + "zip_number":"NY" + }, + { + "country":"US", + "city":"Los Angeles", + "zip_number":"CA" + }, + { + "country":"US", + "city":"Memphis", + "zip_number":"TN" + }, + { + "country":"US", + "city":"Miami", + "zip_number":"FL" + }, + { + "country":"US", + "city":"Milwaukee", + "zip_number":"WI" + }, + { + "country":"US", + "city":"Monsey", + "zip_number":"NY" + }, + { + "country":"US", + "city":"New Haven", + "zip_number":"CT" + }, + { + "country":"US", + "city":"New York", + "zip_number":"NY" + }, + { + "country":"US", + "city":"Omaha", + "zip_number":"NE" + }, + { + "country":"US", + "city":"Orlando", + "zip_number":"FL" + }, + { + "country":"US", + "city":"Passaic", + "zip_number":"NJ" + }, + { + "country":"US", + "city":"Philadelphia", + "zip_number":"PA" + }, + { + "country":"US", + "city":"Phoenix", + "zip_number":"AZ" + }, + { + "country":"US", + "city":"Pittsburgh", + "zip_number":"PA" + }, + { + "country":"US", + "city":"Portland", + "zip_number":"OR" + }, + { + "country":"US", + "city":"Providence", + "zip_number":"RI" + }, + { + "country":"US", + "city":"Richmond", + "zip_number":"VA" + }, + { + "country":"US", + "city":"Rochester", + "zip_number":"NY" + }, + { + "country":"US", + "city":"Saint Louis", + "zip_number":"MO" + }, + { + "country":"US", + "city":"Saint Paul", + "zip_number":"MN" + }, + { + "country":"US", + "city":"San Diego", + "zip_number":"CA" + }, + { + "country":"US", + "city":"San Francisco", + "zip_number":"CA" + }, + { + "country":"US", + "city":"Seattle", + "zip_number":"WA" + }, + { + "country":"US", + "city":"Silver Spring", + "zip_number":"MD" + }, + { + "country":"US", + "city":"Teaneck", + "zip_number":"NJ" + }, + { + "country":"US", + "city":"Washington", + "zip_number":"DC" + }, + { + "country":"US", + "city":"White Plains", + "zip_number":"NY" + }, + { + "country":"UY", + "city":"Montevideo", + "zip_number":"3441575" + }, + { + "country":"UZ", + "city":"Tashkent", + "zip_number":"1512569" + }, + { + "country":"VC", + "city":"Kingstown", + "zip_number":"3577887" + }, + { + "country":"VE", + "city":"Caracas", + "zip_number":"3646738" + }, + { + "country":"VE", + "city":"Maracaibo", + "zip_number":"3633009" + }, + { + "country":"VE", + "city":"Maracay", + "zip_number":"3632998" + }, + { + "country":"VE", + "city":"Valencia", + "zip_number":"3625549" + }, + { + "country":"VG", + "city":"Road Town", + "zip_number":"3577430" + }, + { + "country":"VN", + "city":"Hanoi", + "zip_number":"1581130" + }, + { + "country":"VN", + "city":"Ho Chi Minh City", + "zip_number":"1566083" + }, + { + "country":"WS", + "city":"Apia", + "zip_number":"4035413" + }, + { + "country":"YE", + "city":"Sanaa", + "zip_number":"71137" + }, + { + "country":"YT", + "city":"Mamoudzou", + "zip_number":"921815" + }, + { + "country":"ZA", + "city":"Cape Town", + "zip_number":"3369157" + }, + { + "country":"ZA", + "city":"Durban", + "zip_number":"1007311" + }, + { + "country":"ZA", + "city":"Johannesburg", + "zip_number":"993800" + }, + { + "country":"ZA", + "city":"Pretoria", + "zip_number":"964137" + }, + { + "country":"ZM", + "city":"Lusaka", + "zip_number":"909137" + }, + { + "country":"ZW", + "city":"Harare", + "zip_number":"890299" + } +] \ No newline at end of file diff --git a/app/routers/dayview.py b/app/routers/dayview.py index f9b1cefc..75772221 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -6,7 +6,7 @@ from app.database.models import Event, User from app.dependencies import get_db, templates -from app.internal import international_days, zodiac +from app.internal import international_days, locations, shabbat, zodiac from app.routers.user import get_all_user_events router = APIRouter() @@ -165,7 +165,7 @@ async def dayview( view="day", ): # TODO: add a login session - user = session.query(User).filter_by(username="test_username").first() + user = session.query(User).filter_by(username="new_user").first() if not user: error_message = "User not found." raise HTTPException( @@ -177,6 +177,9 @@ async def dayview( except ValueError as err: raise HTTPException(status_code=404, detail=f"{err}") zodiac_obj = zodiac.get_zodiac_of_day(session, day) + location_and_shabbat = locations.get_user_location(session) + user_location = location_and_shabbat['location']['title'] + shabbat_obj = shabbat.get_shabbat_if_date_friday(location_and_shabbat, day.date()) events_n_attrs = get_events_and_attributes( day=day, session=session, @@ -200,5 +203,7 @@ async def dayview( "international_day": inter_day, "zodiac": zodiac_obj, "view": view, + "user_location": user_location, + "shabbat": shabbat_obj }, ) diff --git a/app/static/dayview.css b/app/static/dayview.css index 4b13cbb6..ff121a9f 100644 --- a/app/static/dayview.css +++ b/app/static/dayview.css @@ -164,3 +164,41 @@ body { width: 1.2rem; height: 1.2rem; } + +.location { + position: absolute; + right: 1.2rem; + top: 15rem; + padding-right: var(--space_xs); + padding-left: var(--space_xs); + padding-bottom: var(--space_xxs); + border: solid 0.1px var(--primary); + background-color: var(--surface-variant); + box-shadow: 1px 1px 2px #999; + line-height: 1.2; + height: 6rem; + width: 5.2rem; + align-items: center; + justify-content: center; + font-weight: bold; + font-size: 0.65rem; +} + +.shabbat { + position: absolute; + right: 1.2rem; + top: 20rem; + padding-right: var(--space_xs); + padding-left: var(--space_xs); + padding-bottom: var(--space_xxs); + border: solid 0.1px var(--primary); + background-color: var(--surface-variant); + box-shadow: 1px 1px 2px #999; + line-height: 1.2; + height: 6rem; + width: 5.2rem; + align-items: center; + justify-content: center; + font-weight: bold; + font-size: 0.65rem; +} diff --git a/app/templates/calendar_day_view.html b/app/templates/calendar_day_view.html index bb320981..95fc55fb 100644 --- a/app/templates/calendar_day_view.html +++ b/app/templates/calendar_day_view.html @@ -31,6 +31,16 @@ The International days are: "{{ international_day.international_day }}" {% endif %} + {% if user_location %} +
{{user_location}}
+ {% endif %} + {% if shabbat %} +
+ {{ gettext(" :זמני הדלקת נרות") }}
+ {{ gettext(" :כניסת שבת %(enter)s", enter=shabbat['start_hour']) }}
+ {{ gettext(" :צאת שבת %(exit)s", exit=shabbat['end_hour']) }} +
+ {% endif %}
{% for event in all_day_events %}

{{ event.title }}

From c745b37936fda7e56b403ab578a91fc7fe2197ee Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 24 Feb 2021 01:33:33 +0200 Subject: [PATCH 02/38] edit --- app/routers/dayview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 75772221..9214ed79 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -165,7 +165,7 @@ async def dayview( view="day", ): # TODO: add a login session - user = session.query(User).filter_by(username="new_user").first() + user = session.query(User).filter_by(username="test_username").first() if not user: error_message = "User not found." raise HTTPException( From 58d8fbac4f34dea1df7bf3bcfe5f723fceea3b38 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 24 Feb 2021 02:09:21 +0200 Subject: [PATCH 03/38] edit --- app/templates/calendar_day_view.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/templates/calendar_day_view.html b/app/templates/calendar_day_view.html index 95fc55fb..5ff454ec 100644 --- a/app/templates/calendar_day_view.html +++ b/app/templates/calendar_day_view.html @@ -32,7 +32,9 @@
{% endif %} {% if user_location %} -
{{user_location}}
+
+ {{user_location}} +
{% endif %} {% if shabbat %}
From 4d2e3d349fe45d2970be519bb8298e1e4febc7dc Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 24 Feb 2021 02:21:28 +0200 Subject: [PATCH 04/38] edit --- app/internal/locations.py | 4 +++- app/internal/shabbat.py | 35 +++++++++++++++++++++-------------- app/routers/dayview.py | 5 ++++- 3 files changed, 28 insertions(+), 16 deletions(-) diff --git a/app/internal/locations.py b/app/internal/locations.py index b5a2c623..ad5135bf 100644 --- a/app/internal/locations.py +++ b/app/internal/locations.py @@ -48,5 +48,7 @@ def get_user_location(session: Session) -> str: A user location string. """ my_location = return_zip_to_location(session) - location_details = requests.get(f"https://www.hebcal.com/shabbat?cfg=json&geonameid={my_location}") + location_details = requests.get( + f"https://www.hebcal.com/shabbat?cfg=json&geonameid={my_location}" + ) return location_details.json() diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 32c470c0..c7c63d5f 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -1,8 +1,8 @@ -from typing import Dict +from typing import Dict from datetime import datetime -def shabbat_time_by_user_location(shabbat_time: Dict[str,str]) -> Dict: +def shabbat_time_by_user_location(shabbat_time: Dict[str, str]) -> Dict: """Returns the shabbat time of the user location.. Args: @@ -11,24 +11,31 @@ def shabbat_time_by_user_location(shabbat_time: Dict[str,str]) -> Dict: Returns: Shabbat start end ending time. """ - shabbat_details = {} - shabbat_details['start_hour'] = shabbat_time['items'][5]['title'].split(': ')[1] - shabbat_details['start_date'] = datetime.strptime(shabbat_time['items'][5]['date'].split('T')[0], "%Y-%m-%d").date() - shabbat_details['end_hour'] = shabbat_time['items'][7]['title'].split(': ')[1] - shabbat_details['end_date'] = datetime.strptime(shabbat_time['items'][7]['date'].split('T')[0], "%Y-%m-%d").date() - return shabbat_details - - -def get_shabbat_if_date_friday(shabbat_time: Dict[str,str], date: datetime) -> Dict: - """Returns shabbat start end ending time if specific date is Saturday,else None. + shabbat_limit = { + 'start_hour': shabbat_time['items'][5]['title'].split(': ')[1], + 'start_date': datetime.strptime( + shabbat_time['items'][5]['date'].split('T')[0],"%Y-%m-%d" + ).date(), + 'end_hour': shabbat_time['items'][7]['title'].split(': ')[1], + 'end_date': datetime.strptime( + shabbat_time['items'][7]['date'].split('T')[0], "%Y-%m-%d" + ).date()} + return shabbat_limit + + +def get_shabbat_if_date_friday( + shabbat_time: Dict[str,str], + date: datetime) -> Dict: + """Returns shabbat start end ending time if specific date + is Saturday, else None. Args: Shabbat details and date. Returns: - Shabbat start end ending time if specific date is Saturday,else None + Shabbat start end ending time if specific date + is Saturday, else None """ shabbat_obj = shabbat_time_by_user_location(shabbat_time) if date == shabbat_obj['start_date']: return shabbat_obj - diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 9214ed79..91cc0a5f 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -179,7 +179,10 @@ async def dayview( zodiac_obj = zodiac.get_zodiac_of_day(session, day) location_and_shabbat = locations.get_user_location(session) user_location = location_and_shabbat['location']['title'] - shabbat_obj = shabbat.get_shabbat_if_date_friday(location_and_shabbat, day.date()) + shabbat_obj = shabbat.get_shabbat_if_date_friday( + location_and_shabbat, + day.date() + ) events_n_attrs = get_events_and_attributes( day=day, session=session, From f4451ca7795bd35c94115d6b483599626b3eaea8 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 24 Feb 2021 02:24:29 +0200 Subject: [PATCH 05/38] edit --- app/internal/shabbat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index c7c63d5f..1fb89e8d 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -14,7 +14,7 @@ def shabbat_time_by_user_location(shabbat_time: Dict[str, str]) -> Dict: shabbat_limit = { 'start_hour': shabbat_time['items'][5]['title'].split(': ')[1], 'start_date': datetime.strptime( - shabbat_time['items'][5]['date'].split('T')[0],"%Y-%m-%d" + shabbat_time['items'][5]['date'].split('T')[0], "%Y-%m-%d" ).date(), 'end_hour': shabbat_time['items'][7]['title'].split(': ')[1], 'end_date': datetime.strptime( @@ -24,7 +24,7 @@ def shabbat_time_by_user_location(shabbat_time: Dict[str, str]) -> Dict: def get_shabbat_if_date_friday( - shabbat_time: Dict[str,str], + shabbat_time: Dict[str, str], date: datetime) -> Dict: """Returns shabbat start end ending time if specific date is Saturday, else None. From 03f8200f8e6ae1ad82ee41b4a1b5917ba2442733 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 24 Feb 2021 15:58:49 +0200 Subject: [PATCH 06/38] edit --- app/internal/locations.py | 4 ++-- app/internal/shabbat.py | 9 ++++++--- app/routers/dayview.py | 4 ++-- app/static/dayview.css | 8 +++++--- app/templates/calendar_day_view.html | 10 +++++----- 5 files changed, 20 insertions(+), 15 deletions(-) diff --git a/app/internal/locations.py b/app/internal/locations.py index ad5135bf..34fb92f0 100644 --- a/app/internal/locations.py +++ b/app/internal/locations.py @@ -33,8 +33,8 @@ def return_zip_to_location(session: Session) -> str: """ ip_and_location = requests.get('http://ipinfo.io/json').json() for location in session.query(Location).all(): - if location.city == ip_and_location['city'] and \ - location.country == ip_and_location['country']: + if (location.city == ip_and_location['city']) and \ + (location.country == ip_and_location['country']): return location.zip_number diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 1fb89e8d..fef42407 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -1,8 +1,10 @@ -from typing import Dict +from typing import Dict, Optional, Union from datetime import datetime -def shabbat_time_by_user_location(shabbat_time: Dict[str, str]) -> Dict: +def shabbat_time_by_user_location( + shabbat_time: Dict[str, str] +) -> Dict[str, Union[str, datetime]]: """Returns the shabbat time of the user location.. Args: @@ -25,7 +27,8 @@ def shabbat_time_by_user_location(shabbat_time: Dict[str, str]) -> Dict: def get_shabbat_if_date_friday( shabbat_time: Dict[str, str], - date: datetime) -> Dict: + date: datetime +) -> Optional[Dict[str, Union[str, datetime]]]: """Returns shabbat start end ending time if specific date is Saturday, else None. diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 91cc0a5f..28845cea 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -165,7 +165,7 @@ async def dayview( view="day", ): # TODO: add a login session - user = session.query(User).filter_by(username="test_username").first() + user = session.query(User).filter_by(username="new_user").first() if not user: error_message = "User not found." raise HTTPException( @@ -207,6 +207,6 @@ async def dayview( "zodiac": zodiac_obj, "view": view, "user_location": user_location, - "shabbat": shabbat_obj + "shabbat": shabbat_obj, }, ) diff --git a/app/static/dayview.css b/app/static/dayview.css index ff121a9f..442bd4da 100644 --- a/app/static/dayview.css +++ b/app/static/dayview.css @@ -165,7 +165,7 @@ body { height: 1.2rem; } -.location { +.new-location { position: absolute; right: 1.2rem; top: 15rem; @@ -176,18 +176,19 @@ body { background-color: var(--surface-variant); box-shadow: 1px 1px 2px #999; line-height: 1.2; - height: 6rem; + height: 2rem; width: 5.2rem; align-items: center; justify-content: center; font-weight: bold; font-size: 0.65rem; + color: green; } .shabbat { position: absolute; right: 1.2rem; - top: 20rem; + top: 17rem; padding-right: var(--space_xs); padding-left: var(--space_xs); padding-bottom: var(--space_xxs); @@ -201,4 +202,5 @@ body { justify-content: center; font-weight: bold; font-size: 0.65rem; + color: red; } diff --git a/app/templates/calendar_day_view.html b/app/templates/calendar_day_view.html index 5ff454ec..e8541100 100644 --- a/app/templates/calendar_day_view.html +++ b/app/templates/calendar_day_view.html @@ -32,15 +32,15 @@
{% endif %} {% if user_location %} -
+
{{user_location}}
{% endif %} {% if shabbat %} -
- {{ gettext(" :זמני הדלקת נרות") }}
- {{ gettext(" :כניסת שבת %(enter)s", enter=shabbat['start_hour']) }}
- {{ gettext(" :צאת שבת %(exit)s", exit=shabbat['end_hour']) }} +
+ {{ gettext(" Candle lighting time:") }}
+ {{ gettext(" Shabbat entry: %(enter)s", enter=shabbat['start_hour']) }}
+ {{ gettext(" Shabbat exit: %(exit)s", exit=shabbat['end_hour']) }}
{% endif %}
From ad29c3b10af7ae6b294c8c8bae517fb7d5783faa Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 24 Feb 2021 16:48:41 +0200 Subject: [PATCH 07/38] edit --- app/internal/shabbat.py | 1 + app/routers/dayview.py | 2 +- tests/test_locations.py | 14 ++++++++++++++ tests/test_shabbat.py | 33 +++++++++++++++++++++++++++++++++ 4 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 tests/test_locations.py create mode 100644 tests/test_shabbat.py diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index fef42407..99daf4d1 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -39,6 +39,7 @@ def get_shabbat_if_date_friday( Shabbat start end ending time if specific date is Saturday, else None """ + print(shabbat_time) shabbat_obj = shabbat_time_by_user_location(shabbat_time) if date == shabbat_obj['start_date']: return shabbat_obj diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 28845cea..da7f3ba1 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -165,7 +165,7 @@ async def dayview( view="day", ): # TODO: add a login session - user = session.query(User).filter_by(username="new_user").first() + user = session.query(User).filter_by(username="test_username").first() if not user: error_message = "User not found." raise HTTPException( diff --git a/tests/test_locations.py b/tests/test_locations.py new file mode 100644 index 00000000..e14edbfe --- /dev/null +++ b/tests/test_locations.py @@ -0,0 +1,14 @@ +from app.internal import locations + + +def test_create_location_object(): + location_fields = { + 'country': "AD", + 'city': "Andorra La Vella", + 'zip_number': "3041563", + 'end_month': 4, + 'end_day_in_month': 19, + } + result = locations.create_location_object(location_fields) + assert result.city == 'Andorra La Vella' + assert result.zip_number == "3041563" diff --git a/tests/test_shabbat.py b/tests/test_shabbat.py new file mode 100644 index 00000000..1d4b74c4 --- /dev/null +++ b/tests/test_shabbat.py @@ -0,0 +1,33 @@ +from datetime import date + +from app.internal import shabbat + +SHABBAT_TIME = {'items': [ + {'title': 'Fast begins'}, + {'title': "Ta'anit Esther"}, + {'title': 'Fast ends'}, + {'title': 'Erev Purim'}, + {'title': 'Purim'}, + {'title': 'Candle lighting: 17:15', + 'date': '2021-02-26T17:15:00+02:00', + 'category': 'candles', + 'title_orig': 'Candle lighting', + 'hebrew': 'הדלקת נרות'}, + {'title': 'Parashat Tetzaveh'}, + {'title': 'Havdalah: 18:11', + 'date': '2021-02-27T18:11:00+02:00', + 'category': 'havdalah', + 'title_orig': 'Havdalah', + 'hebrew': 'הבדלה'} +]} +DATE1 = date(2021, 2, 27) +FRIDAY = date(2021, 2, 27) + + +def test_get_shabbat_if_date_friday(): + result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, FRIDAY.date()) + assert result.start_hour == '17:15' + +def test_return_none_if_date_no_friday(): + result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, DATE1) + assert result is None From e82ad8181f496b7ed41be5bb129ce4e6a6b2b837 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 24 Feb 2021 17:26:24 +0200 Subject: [PATCH 08/38] edit --- app/internal/shabbat.py | 1 - tests/test_shabbat.py | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 99daf4d1..fef42407 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -39,7 +39,6 @@ def get_shabbat_if_date_friday( Shabbat start end ending time if specific date is Saturday, else None """ - print(shabbat_time) shabbat_obj = shabbat_time_by_user_location(shabbat_time) if date == shabbat_obj['start_date']: return shabbat_obj diff --git a/tests/test_shabbat.py b/tests/test_shabbat.py index 1d4b74c4..d80c4196 100644 --- a/tests/test_shabbat.py +++ b/tests/test_shabbat.py @@ -25,7 +25,9 @@ def test_get_shabbat_if_date_friday(): - result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, FRIDAY.date()) + result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, FRIDAY) + print(SHABBAT_TIME) + print(FRIDAY) assert result.start_hour == '17:15' def test_return_none_if_date_no_friday(): From 55e82fa05377eeb13b8c24981187f280f6d48c80 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Thu, 25 Feb 2021 02:10:53 +0200 Subject: [PATCH 09/38] Details Message --- app/routers/dayview.py | 14 +++++++------- app/templates/calendar_day_view.html | 14 +++++++------- tests/test_shabbat.py | 6 ------ 3 files changed, 14 insertions(+), 20 deletions(-) diff --git a/app/routers/dayview.py b/app/routers/dayview.py index da7f3ba1..9d8e0022 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -177,12 +177,6 @@ async def dayview( except ValueError as err: raise HTTPException(status_code=404, detail=f"{err}") zodiac_obj = zodiac.get_zodiac_of_day(session, day) - location_and_shabbat = locations.get_user_location(session) - user_location = location_and_shabbat['location']['title'] - shabbat_obj = shabbat.get_shabbat_if_date_friday( - location_and_shabbat, - day.date() - ) events_n_attrs = get_events_and_attributes( day=day, session=session, @@ -194,6 +188,12 @@ async def dayview( user_id=user.id, ) inter_day = international_days.get_international_day_per_day(session, day) + location_and_shabbat = locations.get_user_location(session) + user_location = location_and_shabbat['location']['title'] + shabbat_obj = shabbat.get_shabbat_if_date_friday( + location_and_shabbat, + day.date() + ) month = day.strftime("%B").upper() return templates.TemplateResponse( "calendar_day_view.html", @@ -206,7 +206,7 @@ async def dayview( "international_day": inter_day, "zodiac": zodiac_obj, "view": view, - "user_location": user_location, + # "user_location": user_location, "shabbat": shabbat_obj, }, ) diff --git a/app/templates/calendar_day_view.html b/app/templates/calendar_day_view.html index e8541100..cf72385d 100644 --- a/app/templates/calendar_day_view.html +++ b/app/templates/calendar_day_view.html @@ -25,13 +25,7 @@ {% else %} {{day}} / {{month}} {% endif %} -
- {% if international_day %} -
- The International days are: "{{ international_day.international_day }}" -
- {% endif %} - {% if user_location %} + {% if user_location %}
{{user_location}}
@@ -43,6 +37,12 @@ {{ gettext(" Shabbat exit: %(exit)s", exit=shabbat['end_hour']) }}
{% endif %} +
+ {% if international_day %} +
+ The International days are: "{{ international_day.international_day }}" +
+ {% endif %}
{% for event in all_day_events %}

{{ event.title }}

diff --git a/tests/test_shabbat.py b/tests/test_shabbat.py index d80c4196..1418b6a5 100644 --- a/tests/test_shabbat.py +++ b/tests/test_shabbat.py @@ -24,12 +24,6 @@ FRIDAY = date(2021, 2, 27) -def test_get_shabbat_if_date_friday(): - result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, FRIDAY) - print(SHABBAT_TIME) - print(FRIDAY) - assert result.start_hour == '17:15' - def test_return_none_if_date_no_friday(): result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, DATE1) assert result is None From c42239838b5dcf51df44ae4ef617f435294f984a Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Thu, 25 Feb 2021 02:18:55 +0200 Subject: [PATCH 10/38] Details Message --- app/routers/dayview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 9d8e0022..9dd4caae 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -206,7 +206,7 @@ async def dayview( "international_day": inter_day, "zodiac": zodiac_obj, "view": view, - # "user_location": user_location, + "user_location": user_location, "shabbat": shabbat_obj, }, ) From a0271518665f574429e7869d267071c96c0c0344 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Thu, 25 Feb 2021 02:49:52 +0200 Subject: [PATCH 11/38] Details Message --- tests/test_dayview.py | 6 +++++- tests/test_weekview.py | 10 ++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/tests/test_dayview.py b/tests/test_dayview.py index ef77eb05..406ff25b 100644 --- a/tests/test_dayview.py +++ b/tests/test_dayview.py @@ -117,7 +117,9 @@ def test_wrong_timeformat(session, user, client, event1, event2, event3): assert response.status_code == 404 -def test_dayview_html(event1, event2, event3, session, user, client): +def test_dayview_html( + event1, event2, event3, session, user, client, + user_location, shabbat): create_dayview_event([event1, event2, event3], session=session, user=user) response = client.get("/day/2021-2-1") soup = BeautifulSoup(response.content, "html.parser") @@ -142,6 +144,8 @@ def test_dayview_html_with_multiday_event( client, day, grid_position, + user_location, + shabbat, ): create_dayview_event([multiday_event], session=session, user=user) session.commit() diff --git a/tests/test_weekview.py b/tests/test_weekview.py index a1d40a04..120186e9 100644 --- a/tests/test_weekview.py +++ b/tests/test_weekview.py @@ -23,7 +23,9 @@ def test_get_week_dates(weekdays, sunday): assert week_dates[i].strftime("%A") == weekdays[i] -def test_weekview_day_names(session, user, client, weekdays): +def test_weekview_day_names( + session, user, client, weekdays, + user_location, shabbat): response = client.get("/week/2021-1-3") soup = BeautifulSoup(response.content, "html.parser") day_divs = soup.find_all("div", {"class": "day-name"}) @@ -31,7 +33,9 @@ def test_weekview_day_names(session, user, client, weekdays): assert weekdays[i][:3].upper() in str(day_divs[i]) -def test_weekview_day_dates(session, user, client, sunday): +def test_weekview_day_dates( + session, user, client, sunday, + user_location, shabbat): response = client.get("/week/2021-1-3") soup = BeautifulSoup(response.content, "html.parser") day_divs = soup.find_all("span", {"class": "date-nums"}) @@ -54,6 +58,8 @@ def test_weekview_html_events( client, date, event, + user_location, + shabbat ): create_weekview_event([event1, event2, event3], session=session, user=user) response = client.get(f"/week/{date}") From d07f516ad726783e1fb7c122a959e5a8db672be8 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Thu, 25 Feb 2021 16:21:14 +0200 Subject: [PATCH 12/38] Details Message --- app/routers/dayview.py | 4 ++-- tests/fixtures/location_fixture.py | 34 ++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 tests/fixtures/location_fixture.py diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 9dd4caae..8aa8f435 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -189,7 +189,7 @@ async def dayview( ) inter_day = international_days.get_international_day_per_day(session, day) location_and_shabbat = locations.get_user_location(session) - user_location = location_and_shabbat['location']['title'] + location = location_and_shabbat['location']['title'] shabbat_obj = shabbat.get_shabbat_if_date_friday( location_and_shabbat, day.date() @@ -206,7 +206,7 @@ async def dayview( "international_day": inter_day, "zodiac": zodiac_obj, "view": view, - "user_location": user_location, + "user_location": location, "shabbat": shabbat_obj, }, ) diff --git a/tests/fixtures/location_fixture.py b/tests/fixtures/location_fixture.py new file mode 100644 index 00000000..1c918d9d --- /dev/null +++ b/tests/fixtures/location_fixture.py @@ -0,0 +1,34 @@ +import pytest +from sqlalchemy.orm import Session + +from app.database.models import Location +from app.internal.utils import create_model, delete_instance + + +def add_location( + session: Session, + id_location: int, + country: str, + city: str, + zip_number: str, +) -> Location: + location = create_model( + session, + Location, + id=id_location, + country=country, + city=city, + zip_number=zip_number) + yield location + delete_instance(session, location) + + +@pytest.fixture +def location(session: Session) -> Location: + yield from add_location( + session=session, + id_location=1, + country="AD", + city="Andorra La Vella", + zip_number="3041563" + ) From d1da1f325e31112ed537f4fb54eeca8925c2b8e7 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Thu, 25 Feb 2021 22:28:27 +0200 Subject: [PATCH 13/38] fix: flake8 --- app/routers/dayview.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 038736b3..cf2ed9b6 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -6,11 +6,8 @@ from app.database.models import Event, User from app.dependencies import get_db, templates -from app.internal import international_days, zodiac -from app.internal.security.dependencies import current_user - -# from app.internal.security.schema import CurrentUser from app.internal import international_days, locations, shabbat, zodiac +from app.internal.security.dependencies import current_user from app.routers.user import get_all_user_events router = APIRouter() From 00450c3e972f37f219b520ae8cfc83c6fda0b457 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Thu, 25 Feb 2021 23:33:08 +0200 Subject: [PATCH 14/38] fix: many code improvements --- app/internal/locations.py | 32 ++++++++------- app/internal/shabbat.py | 62 +++++++++++++++--------------- app/routers/dayview.py | 9 +++-- tests/fixtures/location_fixture.py | 34 ---------------- tests/test_shabbat.py | 54 ++++++++++++++++---------- 5 files changed, 88 insertions(+), 103 deletions(-) delete mode 100644 tests/fixtures/location_fixture.py diff --git a/app/internal/locations.py b/app/internal/locations.py index 34fb92f0..6da86dea 100644 --- a/app/internal/locations.py +++ b/app/internal/locations.py @@ -1,6 +1,6 @@ -import requests -from typing import Dict +from typing import Any, Dict, Optional +import requests from sqlalchemy.orm import Session from app.database.models import Location @@ -16,14 +16,15 @@ def create_location_object(location_: Dict[str, str]) -> Location: A new Location object. """ return Location( - country=location_['country'], - city=location_['city'], - zip_number=location_['zip_number'], + country=location_["country"], + city=location_["city"], + zip_number=location_["zip_number"], ) -def return_zip_to_location(session: Session) -> str: - """Returns the zip number of the user IP location that match location object. +def return_zip_to_location(session: Session) -> Optional[str]: + """Returns the zip number of the user IP location that match location + object. Args: session: The database connection. @@ -31,24 +32,27 @@ def return_zip_to_location(session: Session) -> str: Returns: A zip number for the user location. """ - ip_and_location = requests.get('http://ipinfo.io/json').json() + response = requests.get("http://ipinfo.io/json").json() + if not response.ok: + return None for location in session.query(Location).all(): - if (location.city == ip_and_location['city']) and \ - (location.country == ip_and_location['country']): + if (location.city == response["city"] + and location.country == response["country"]): return location.zip_number -def get_user_location(session: Session) -> str: +def get_user_location(session: Session) -> Optional[Dict[str, Any]]: """Returns the user location. Args: session: The database connection. Returns: - A user location string. + A user location. """ my_location = return_zip_to_location(session) - location_details = requests.get( + response = requests.get( f"https://www.hebcal.com/shabbat?cfg=json&geonameid={my_location}" ) - return location_details.json() + if response.ok: + return response.json() diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index fef42407..29da24f6 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -1,44 +1,46 @@ -from typing import Dict, Optional, Union -from datetime import datetime - - -def shabbat_time_by_user_location( - shabbat_time: Dict[str, str] -) -> Dict[str, Union[str, datetime]]: - """Returns the shabbat time of the user location.. - - Args: - Shabbat details. - - Returns: - Shabbat start end ending time. - """ - shabbat_limit = { - 'start_hour': shabbat_time['items'][5]['title'].split(': ')[1], - 'start_date': datetime.strptime( - shabbat_time['items'][5]['date'].split('T')[0], "%Y-%m-%d" - ).date(), - 'end_hour': shabbat_time['items'][7]['title'].split(': ')[1], - 'end_date': datetime.strptime( - shabbat_time['items'][7]['date'].split('T')[0], "%Y-%m-%d" - ).date()} - return shabbat_limit +from datetime import date, datetime +from typing import Any, Dict, Optional, Union def get_shabbat_if_date_friday( - shabbat_time: Dict[str, str], - date: datetime -) -> Optional[Dict[str, Union[str, datetime]]]: + shabbat_time: Dict[str, Any], + calendar_date: date, +) -> Optional[Dict[str, Union[str, date]]]: """Returns shabbat start end ending time if specific date is Saturday, else None. Args: - Shabbat details and date. + shabbat_time: Shabbat details. + calendar_date: date. Returns: Shabbat start end ending time if specific date is Saturday, else None """ shabbat_obj = shabbat_time_by_user_location(shabbat_time) - if date == shabbat_obj['start_date']: + if calendar_date == shabbat_obj["start_date"]: return shabbat_obj + + +def shabbat_time_by_user_location( + shabbat_time: Dict[str, Any] +) -> Dict[str, Union[str, date]]: + """Returns the shabbat time of the user location.. + + Args: + shabbat_time: Shabbat details. + + Returns: + Shabbat start end ending time. + """ + shabbat_entry = shabbat_time["items"][5] + shabbat_exit = shabbat_time["items"][7] + shabbat_entry_date = shabbat_entry["date"].split("T")[0] + shabbat_exit_date = shabbat_entry["date"].split("T")[0] + shabbat_limit = { + "start_hour": shabbat_entry["title"].split(": ")[1], + "start_date": datetime.strptime(shabbat_entry_date, "%Y-%m-%d").date(), + "end_hour": shabbat_exit["title"].split(": ")[1], + "end_date": datetime.strptime(shabbat_exit_date, "%Y-%m-%d").date(), + } + return shabbat_limit diff --git a/app/routers/dayview.py b/app/routers/dayview.py index cf2ed9b6..9af619e4 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -4,10 +4,11 @@ from fastapi import APIRouter, Depends, HTTPException, Request -from app.database.models import Event, User +from app.database.models import Event from app.dependencies import get_db, templates from app.internal import international_days, locations, shabbat, zodiac from app.internal.security.dependencies import current_user +from app.internal.security.schema import CurrentUser from app.routers.user import get_all_user_events router = APIRouter() @@ -191,7 +192,7 @@ async def dayview( date: str, view="day", session=Depends(get_db), - user: User = Depends(current_user), + user: CurrentUser = Depends(current_user), ): try: day = datetime.strptime(date, "%Y-%m-%d") @@ -211,10 +212,10 @@ async def dayview( current_time_with_attrs = CurrentTimeAttributes(date=day) inter_day = international_days.get_international_day_per_day(session, day) location_and_shabbat = locations.get_user_location(session) - location = location_and_shabbat['location']['title'] + location = location_and_shabbat["location"]["title"] shabbat_obj = shabbat.get_shabbat_if_date_friday( location_and_shabbat, - day.date() + day.date(), ) month = day.strftime("%B").upper() return templates.TemplateResponse( diff --git a/tests/fixtures/location_fixture.py b/tests/fixtures/location_fixture.py deleted file mode 100644 index 1c918d9d..00000000 --- a/tests/fixtures/location_fixture.py +++ /dev/null @@ -1,34 +0,0 @@ -import pytest -from sqlalchemy.orm import Session - -from app.database.models import Location -from app.internal.utils import create_model, delete_instance - - -def add_location( - session: Session, - id_location: int, - country: str, - city: str, - zip_number: str, -) -> Location: - location = create_model( - session, - Location, - id=id_location, - country=country, - city=city, - zip_number=zip_number) - yield location - delete_instance(session, location) - - -@pytest.fixture -def location(session: Session) -> Location: - yield from add_location( - session=session, - id_location=1, - country="AD", - city="Andorra La Vella", - zip_number="3041563" - ) diff --git a/tests/test_shabbat.py b/tests/test_shabbat.py index 1418b6a5..356278d3 100644 --- a/tests/test_shabbat.py +++ b/tests/test_shabbat.py @@ -2,28 +2,40 @@ from app.internal import shabbat -SHABBAT_TIME = {'items': [ - {'title': 'Fast begins'}, - {'title': "Ta'anit Esther"}, - {'title': 'Fast ends'}, - {'title': 'Erev Purim'}, - {'title': 'Purim'}, - {'title': 'Candle lighting: 17:15', - 'date': '2021-02-26T17:15:00+02:00', - 'category': 'candles', - 'title_orig': 'Candle lighting', - 'hebrew': 'הדלקת נרות'}, - {'title': 'Parashat Tetzaveh'}, - {'title': 'Havdalah: 18:11', - 'date': '2021-02-27T18:11:00+02:00', - 'category': 'havdalah', - 'title_orig': 'Havdalah', - 'hebrew': 'הבדלה'} -]} -DATE1 = date(2021, 2, 27) -FRIDAY = date(2021, 2, 27) +SHABBAT_TIME = { + "items": + [ + {"title": "Fast begins"}, + {"title": "Ta'anit Esther"}, + {"title": "Fast ends"}, + {"title": "Erev Purim"}, + {"title": "Purim"}, + { + "title": "Candle lighting: 17:15", + "date": "2021-02-26T17:15:00+02:00", + "category": "candles", + "title_orig": "Candle lighting", + "hebrew": "הדלקת נרות", + }, + {"title": "Parashat Tetzaveh"}, + { + "title": "Havdalah: 18:11", + "date": "2021-02-27T18:11:00+02:00", + "category": "havdalah", + "title_orig": "Havdalah", + "hebrew": "הבדלה", + }, + ] +} +BAD_DAY = date(2021, 2, 27) +FRIDAY = date(2021, 2, 26) def test_return_none_if_date_no_friday(): - result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, DATE1) + result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, BAD_DAY) assert result is None + + +def test_return_if_date_is_friday(): + result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, FRIDAY) + assert result From 1d21cd232de26c6aa5be7f2aaf6d4dcb418f816d Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Thu, 25 Feb 2021 23:41:21 +0200 Subject: [PATCH 15/38] fix: many code improvements --- app/internal/locations.py | 7 ++++--- app/routers/dayview.py | 14 +++++++++----- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/app/internal/locations.py b/app/internal/locations.py index 6da86dea..de4e49a4 100644 --- a/app/internal/locations.py +++ b/app/internal/locations.py @@ -32,12 +32,13 @@ def return_zip_to_location(session: Session) -> Optional[str]: Returns: A zip number for the user location. """ - response = requests.get("http://ipinfo.io/json").json() + response = requests.get("http://ipinfo.io/json") if not response.ok: return None + location_by_ip = response.json() for location in session.query(Location).all(): - if (location.city == response["city"] - and location.country == response["country"]): + if (location.city == location_by_ip["city"] + and location.country == location_by_ip["country"]): return location.zip_number diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 9af619e4..1a9fba32 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -212,11 +212,15 @@ async def dayview( current_time_with_attrs = CurrentTimeAttributes(date=day) inter_day = international_days.get_international_day_per_day(session, day) location_and_shabbat = locations.get_user_location(session) - location = location_and_shabbat["location"]["title"] - shabbat_obj = shabbat.get_shabbat_if_date_friday( - location_and_shabbat, - day.date(), - ) + if location_and_shabbat: + location = location_and_shabbat["location"]["title"] + shabbat_obj = shabbat.get_shabbat_if_date_friday( + location_and_shabbat, + day.date(), + ) + else: + location = None + shabbat_obj = None month = day.strftime("%B").upper() return templates.TemplateResponse( "calendar_day_view.html", From 10e5b04616f1ebfee7a4e682c0d10502574de047 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Fri, 26 Feb 2021 01:09:20 +0200 Subject: [PATCH 16/38] fix: style improvements --- app/internal/locations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/internal/locations.py b/app/internal/locations.py index de4e49a4..3aefacc2 100644 --- a/app/internal/locations.py +++ b/app/internal/locations.py @@ -7,7 +7,7 @@ def create_location_object(location_: Dict[str, str]) -> Location: - """Returns a Zodiac object from the dictionary data. + """Returns a Location object from the dictionary data. Args: location_: A dictionary location related information. From 48cae1125a9255c8659a7fca71e19a122941984e Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Sat, 27 Feb 2021 00:17:38 +0200 Subject: [PATCH 17/38] fix: improvments --- app/database/models.py | 9 - app/internal/json_data_loader.py | 7 - app/internal/shabbat.py | 79 +- app/resources/shabbat_time_by_location.json | 32869 ++++++++++++++++++ app/routers/dayview.py | 22 +- requirements.txt | 2 + 6 files changed, 32927 insertions(+), 61 deletions(-) create mode 100644 app/resources/shabbat_time_by_location.json diff --git a/app/database/models.py b/app/database/models.py index a7b43e98..4466dc76 100644 --- a/app/database/models.py +++ b/app/database/models.py @@ -599,15 +599,6 @@ class Task(Base): owner = relationship("User", back_populates="tasks") -class Location(Base): - __tablename__ = "locations" - - id = Column(Integer, primary_key=True, index=True) - country = Column(String, nullable=False) - city = Column(String, nullable=False) - zip_number = Column(String, nullable=False) - - # insert language data diff --git a/app/internal/json_data_loader.py b/app/internal/json_data_loader.py index 40ff5c34..05badcb9 100644 --- a/app/internal/json_data_loader.py +++ b/app/internal/json_data_loader.py @@ -47,13 +47,6 @@ def load_to_database(session: Session) -> None: international_days.get_international_day, ) - _insert_into_database( - session, - RESOURCES_DIR / "locations.json", - Location, - locations.create_location_object, - ) - _insert_into_database( session, RESOURCES_DIR / "jokes.json", diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 29da24f6..96ec9ee6 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -1,46 +1,67 @@ +import json from datetime import date, datetime from typing import Any, Dict, Optional, Union +import geocoder -def get_shabbat_if_date_friday( - shabbat_time: Dict[str, Any], - calendar_date: date, -) -> Optional[Dict[str, Union[str, date]]]: - """Returns shabbat start end ending time if specific date - is Saturday, else None. - Args: - shabbat_time: Shabbat details. - calendar_date: date. +def return_zip_to_ip_location() -> Optional[str]: + """Returns the zip number of the user IP location that match location + object. - Returns: - Shabbat start end ending time if specific date - is Saturday, else None - """ - shabbat_obj = shabbat_time_by_user_location(shabbat_time) - if calendar_date == shabbat_obj["start_date"]: - return shabbat_obj + Returns: + A zip number for the user location. + """ + location_by_ip = geocoder.ip('me') + path = r'../app/resources/shabbat_time_by_location.json' + with open(path, 'r') as json_file: + shabat_details = json.load(json_file) + for location in shabat_details: + if (location["location"]["city"] == location_by_ip.city + and location["location"]["cc"] == location_by_ip.country): + return location["items"], location_by_ip -def shabbat_time_by_user_location( - shabbat_time: Dict[str, Any] -) -> Dict[str, Union[str, date]]: - """Returns the shabbat time of the user location.. - Args: - shabbat_time: Shabbat details. +def shabbat_time_by_user_location() -> Dict[str, Union[str, date]]: + """Returns the shabbat time of the user location. Returns: Shabbat start end ending time. """ - shabbat_entry = shabbat_time["items"][5] - shabbat_exit = shabbat_time["items"][7] - shabbat_entry_date = shabbat_entry["date"].split("T")[0] - shabbat_exit_date = shabbat_entry["date"].split("T")[0] + shabat_items, location_by_ip = return_zip_to_ip_location() + for item in shabat_items: + if "Candle lighting" in item["title"]: + shabbat_entry = item + if "Havdalah" in item["title"]: + shabbat_exit = item + + shabbat_entry_date = shabbat_entry.split("T")[0] + shabbat_entry_hour = shabbat_entry.split("T")[1] + shabbat_exit_date = shabbat_exit.split("T")[0] + shabbat_exit_hour = shabbat_exit.split("T")[1] shabbat_limit = { - "start_hour": shabbat_entry["title"].split(": ")[1], + "start_hour": shabbat_entry_hour[:5], "start_date": datetime.strptime(shabbat_entry_date, "%Y-%m-%d").date(), - "end_hour": shabbat_exit["title"].split(": ")[1], + "end_hour": shabbat_exit_hour[:5], "end_date": datetime.strptime(shabbat_exit_date, "%Y-%m-%d").date(), } - return shabbat_limit + return shabbat_limit, location_by_ip + + +def get_shabbat_if_date_friday(calendar_date: date) \ + -> Optional[Dict[str, Union[str, date]], Any]: + """Returns shabbat start end ending time if specific date + is Saturday, else None. + + Args: + shabbat_time: Shabbat details. + calendar_date: date. + + Returns: + Shabbat start end ending time if specific date + is Saturday, else None + """ + shabbat_obj, location_by_ip = shabbat_time_by_user_location() + if calendar_date == shabbat_obj["start_date"]: + return shabbat_obj, location_by_ip diff --git a/app/resources/shabbat_time_by_location.json b/app/resources/shabbat_time_by_location.json new file mode 100644 index 00000000..3ac97bd8 --- /dev/null +++ b/app/resources/shabbat_time_by_location.json @@ -0,0 +1,32869 @@ +[ + { + "title":"Hebcal Andorra la Vella February 2021", + "date":"2021-02-26T21:14:16.480Z", + "location":{ + "title":"Andorra la Vella, Andorra", + "city":"Andorra la Vella", + "tzid":"Europe/Andorra", + "latitude":42.50779, + "longitude":1.52109, + "cc":"AD", + "country":"Andorra", + "admin1":"Andorra la Vella", + "geo":"geoname", + "geonameid":3041563 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:18", + "date":"2021-02-26T18:18:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:20", + "date":"2021-02-27T19:20:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Abu Dhabi February 2021", + "date":"2021-02-26T21:15:45.756Z", + "location":{ + "title":"Abu Dhabi, United Arab Emirates", + "city":"Abu Dhabi", + "tzid":"Asia/Dubai", + "latitude":24.45118, + "longitude":54.39696, + "cc":"AE", + "country":"United Arab Emirates", + "admin1":"Abu Dhabi", + "geo":"geoname", + "geonameid":292968 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:03", + "date":"2021-02-26T18:03:00+04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:56", + "date":"2021-02-27T18:56:00+04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Dubai February 2021", + "date":"2021-02-26T21:15:46.214Z", + "location":{ + "title":"Dubai, United Arab Emirates", + "city":"Dubai", + "tzid":"Asia/Dubai", + "latitude":25.07725, + "longitude":55.30927, + "cc":"AE", + "country":"United Arab Emirates", + "admin1":"Dubai", + "geo":"geoname", + "geonameid":292223 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:59", + "date":"2021-02-26T17:59:00+04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:52", + "date":"2021-02-27T18:52:00+04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kabul February 2021", + "date":"2021-02-26T21:15:46.662Z", + "location":{ + "title":"Kabul, Afghanistan", + "city":"Kabul", + "tzid":"Asia/Kabul", + "latitude":34.52813, + "longitude":69.17233, + "cc":"AF", + "country":"Afghanistan", + "admin1":"Kabul", + "geo":"geoname", + "geonameid":1138958 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:25", + "date":"2021-02-26T17:25:00+04:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:22", + "date":"2021-02-27T18:22:00+04:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal The Valley February 2021", + "date":"2021-02-26T21:15:47.109Z", + "location":{ + "title":"The Valley, Anguilla", + "city":"The Valley", + "tzid":"America/Anguilla", + "latitude":18.21704, + "longitude":-63.05783, + "cc":"AI", + "country":"Anguilla", + "admin1":"The Valley", + "geo":"geoname", + "geonameid":3573374 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:58", + "date":"2021-02-26T17:58:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:49", + "date":"2021-02-27T18:49:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tirana February 2021", + "date":"2021-02-26T21:15:47.562Z", + "location":{ + "title":"Tirana, Albania", + "city":"Tirana", + "tzid":"Europe/Tirane", + "latitude":41.3275, + "longitude":19.81889, + "cc":"AL", + "country":"Albania", + "admin1":"Tirana", + "geo":"geoname", + "geonameid":3183875 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:06", + "date":"2021-02-26T17:06:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:07", + "date":"2021-02-27T18:07:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Yerevan February 2021", + "date":"2021-02-26T21:15:48.023Z", + "location":{ + "title":"Yerevan, Armenia", + "city":"Yerevan", + "tzid":"Asia/Yerevan", + "latitude":40.18111, + "longitude":44.51361, + "cc":"AM", + "country":"Armenia", + "admin1":"Yerevan", + "geo":"geoname", + "geonameid":616052 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:28", + "date":"2021-02-26T18:28:00+04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:29", + "date":"2021-02-27T19:29:00+04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Luanda February 2021", + "date":"2021-02-26T21:15:48.479Z", + "location":{ + "title":"Luanda, Angola", + "city":"Luanda", + "tzid":"Africa/Luanda", + "latitude":-8.83682, + "longitude":13.23432, + "cc":"AO", + "country":"Angola", + "admin1":"Luanda", + "geo":"geoname", + "geonameid":2240449 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:11", + "date":"2021-02-26T18:11:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:01", + "date":"2021-02-27T19:01:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Buenos Aires February 2021", + "date":"2021-02-26T21:15:48.942Z", + "location":{ + "title":"Buenos Aires, Argentina", + "city":"Buenos Aires", + "tzid":"America/Argentina/Buenos_Aires", + "latitude":-34.61315, + "longitude":-58.37723, + "cc":"AR", + "country":"Argentina", + "admin1":"Buenos Aires F.D.", + "geo":"geoname", + "geonameid":3435910 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:19", + "date":"2021-02-26T19:19:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 20:15", + "date":"2021-02-27T20:15:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Córdoba February 2021", + "date":"2021-02-26T21:15:49.397Z", + "location":{ + "title":"Córdoba, Cordoba, Argentina", + "city":"Córdoba", + "tzid":"America/Argentina/Cordoba", + "latitude":-31.4135, + "longitude":-64.18105, + "cc":"AR", + "country":"Argentina", + "admin1":"Cordoba", + "asciiname":"Cordoba", + "geo":"geoname", + "geonameid":3860259 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:39", + "date":"2021-02-26T19:39:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 20:33", + "date":"2021-02-27T20:33:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Rosario February 2021", + "date":"2021-02-26T21:15:49.851Z", + "location":{ + "title":"Rosario, Santa Fe, Argentina", + "city":"Rosario", + "tzid":"America/Argentina/Cordoba", + "latitude":-32.94682, + "longitude":-60.63932, + "cc":"AR", + "country":"Argentina", + "admin1":"Santa Fe", + "geo":"geoname", + "geonameid":3838583 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:26", + "date":"2021-02-26T19:26:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 20:21", + "date":"2021-02-27T20:21:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Pago Pago February 2021", + "date":"2021-02-26T21:15:50.302Z", + "location":{ + "title":"Pago Pago, Eastern District, American Samoa", + "city":"Pago Pago", + "tzid":"Pacific/Pago_Pago", + "latitude":-14.27806, + "longitude":-170.7025, + "cc":"AS", + "country":"American Samoa", + "admin1":"Eastern District", + "geo":"geoname", + "geonameid":5881576 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:31", + "date":"2021-02-26T18:31:00-11:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:21", + "date":"2021-02-27T19:21:00-11:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Vienna February 2021", + "date":"2021-02-26T21:15:50.751Z", + "location":{ + "title":"Vienna, Austria", + "city":"Vienna", + "tzid":"Europe/Vienna", + "latitude":48.20849, + "longitude":16.37208, + "cc":"AT", + "country":"Austria", + "admin1":"Vienna", + "geo":"geoname", + "geonameid":2761369 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:11", + "date":"2021-02-26T17:11:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:18", + "date":"2021-02-27T18:18:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Adelaide February 2021", + "date":"2021-02-26T21:15:51.235Z", + "location":{ + "title":"Adelaide, South Australia, Australia", + "city":"Adelaide", + "tzid":"Australia/Adelaide", + "latitude":-34.92866, + "longitude":138.59863, + "cc":"AU", + "country":"Australia", + "admin1":"South Australia", + "geo":"geoname", + "geonameid":2078025 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 7:42pm", + "date":"2021-02-26T19:42:00+10:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 8:38pm", + "date":"2021-02-27T20:38:00+10:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Brisbane February 2021", + "date":"2021-02-26T21:15:51.701Z", + "location":{ + "title":"Brisbane, Queensland, Australia", + "city":"Brisbane", + "tzid":"Australia/Brisbane", + "latitude":-27.46794, + "longitude":153.02809, + "cc":"AU", + "country":"Australia", + "admin1":"Queensland", + "geo":"geoname", + "geonameid":2174003 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:07pm", + "date":"2021-02-26T18:07:00+10:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:00pm", + "date":"2021-02-27T19:00:00+10:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Canberra February 2021", + "date":"2021-02-26T21:15:52.155Z", + "location":{ + "title":"Canberra, Australian Capital Territory, Australia", + "city":"Canberra", + "tzid":"Australia/Sydney", + "latitude":-35.28346, + "longitude":149.12807, + "cc":"AU", + "country":"Australia", + "admin1":"Australian Capital Territory", + "geo":"geoname", + "geonameid":2172517 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 7:30pm", + "date":"2021-02-26T19:30:00+11:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 8:26pm", + "date":"2021-02-27T20:26:00+11:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Gold Coast February 2021", + "date":"2021-02-26T21:15:52.605Z", + "location":{ + "title":"Gold Coast, Queensland, Australia", + "city":"Gold Coast", + "tzid":"Australia/Brisbane", + "latitude":-28.00029, + "longitude":153.43088, + "cc":"AU", + "country":"Australia", + "admin1":"Queensland", + "geo":"geoname", + "geonameid":2165087 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:06pm", + "date":"2021-02-26T18:06:00+10:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:59pm", + "date":"2021-02-27T18:59:00+10:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Hobart February 2021", + "date":"2021-02-26T21:15:53.065Z", + "location":{ + "title":"Hobart, Tasmania, Australia", + "city":"Hobart", + "tzid":"Australia/Hobart", + "latitude":-42.87936, + "longitude":147.32941, + "cc":"AU", + "country":"Australia", + "admin1":"Tasmania", + "geo":"geoname", + "geonameid":2163355 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 7:47pm", + "date":"2021-02-26T19:47:00+11:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 8:47pm", + "date":"2021-02-27T20:47:00+11:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Melbourne February 2021", + "date":"2021-02-26T21:15:53.524Z", + "location":{ + "title":"Melbourne, Victoria, Australia", + "city":"Melbourne", + "tzid":"Australia/Melbourne", + "latitude":-37.814, + "longitude":144.96332, + "cc":"AU", + "country":"Australia", + "admin1":"Victoria", + "geo":"geoname", + "geonameid":2158177 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 7:50pm", + "date":"2021-02-26T19:50:00+11:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 8:47pm", + "date":"2021-02-27T20:47:00+11:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Perth February 2021", + "date":"2021-02-26T21:15:53.979Z", + "location":{ + "title":"Perth, Western Australia, Australia", + "city":"Perth", + "tzid":"Australia/Perth", + "latitude":-31.95224, + "longitude":115.8614, + "cc":"AU", + "country":"Australia", + "admin1":"Western Australia", + "geo":"geoname", + "geonameid":2063523 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:40pm", + "date":"2021-02-26T18:40:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:34pm", + "date":"2021-02-27T19:34:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Sydney February 2021", + "date":"2021-02-26T21:15:54.430Z", + "location":{ + "title":"Sydney, New South Wales, Australia", + "city":"Sydney", + "tzid":"Australia/Sydney", + "latitude":-33.86785, + "longitude":151.20732, + "cc":"AU", + "country":"Australia", + "admin1":"New South Wales", + "geo":"geoname", + "geonameid":2147714 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 7:20pm", + "date":"2021-02-26T19:20:00+11:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 8:16pm", + "date":"2021-02-27T20:16:00+11:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Oranjestad February 2021", + "date":"2021-02-26T21:15:54.888Z", + "location":{ + "title":"Oranjestad, Aruba", + "city":"Oranjestad", + "tzid":"America/Aruba", + "latitude":12.52398, + "longitude":-70.02703, + "cc":"AW", + "country":"Aruba", + "geo":"geoname", + "geonameid":3577154 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:30", + "date":"2021-02-26T18:30:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:20", + "date":"2021-02-27T19:20:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Baku February 2021", + "date":"2021-02-26T21:15:55.334Z", + "location":{ + "title":"Baku, Baki, Azerbaijan", + "city":"Baku", + "tzid":"Asia/Baku", + "latitude":40.37767, + "longitude":49.89201, + "cc":"AZ", + "country":"Azerbaijan", + "admin1":"Baki", + "geo":"geoname", + "geonameid":587084 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:07", + "date":"2021-02-26T18:07:00+04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:07", + "date":"2021-02-27T19:07:00+04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Sarajevo February 2021", + "date":"2021-02-26T21:15:55.782Z", + "location":{ + "title":"Sarajevo, Federation of B&H, Bosnia and Herzegovina", + "city":"Sarajevo", + "tzid":"Europe/Sarajevo", + "latitude":43.84864, + "longitude":18.35644, + "cc":"BA", + "country":"Bosnia and Herzegovina", + "admin1":"Federation of B&H", + "geo":"geoname", + "geonameid":3191281 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:09", + "date":"2021-02-26T17:09:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:12", + "date":"2021-02-27T18:12:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bridgetown February 2021", + "date":"2021-02-26T21:15:56.232Z", + "location":{ + "title":"Bridgetown, Saint Michael, Barbados", + "city":"Bridgetown", + "tzid":"America/Barbados", + "latitude":13.10732, + "longitude":-59.62021, + "cc":"BB", + "country":"Barbados", + "admin1":"Saint Michael", + "geo":"geoname", + "geonameid":3374036 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:48", + "date":"2021-02-26T17:48:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:38", + "date":"2021-02-27T18:38:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Chattogram February 2021", + "date":"2021-02-26T21:15:56.686Z", + "location":{ + "title":"Chattogram, Chittagong, Bangladesh", + "city":"Chattogram", + "tzid":"Asia/Dhaka", + "latitude":22.3384, + "longitude":91.83168, + "cc":"BD", + "country":"Bangladesh", + "admin1":"Chittagong", + "geo":"geoname", + "geonameid":1205733 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:35", + "date":"2021-02-26T17:35:00+06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:28", + "date":"2021-02-27T18:28:00+06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Dhaka February 2021", + "date":"2021-02-26T21:15:57.154Z", + "location":{ + "title":"Dhaka, Bangladesh", + "city":"Dhaka", + "tzid":"Asia/Dhaka", + "latitude":23.7104, + "longitude":90.40744, + "cc":"BD", + "country":"Bangladesh", + "admin1":"Dhaka", + "geo":"geoname", + "geonameid":1185241 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:40", + "date":"2021-02-26T17:40:00+06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:33", + "date":"2021-02-27T18:33:00+06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Khulna February 2021", + "date":"2021-02-26T21:15:57.610Z", + "location":{ + "title":"Khulna, Bangladesh", + "city":"Khulna", + "tzid":"Asia/Dhaka", + "latitude":22.80979, + "longitude":89.56439, + "cc":"BD", + "country":"Bangladesh", + "admin1":"Khulna", + "geo":"geoname", + "geonameid":1336135 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:44", + "date":"2021-02-26T17:44:00+06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:36", + "date":"2021-02-27T18:36:00+06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Brussels February 2021", + "date":"2021-02-26T21:15:58.067Z", + "location":{ + "title":"Brussels, Belgium", + "city":"Brussels", + "tzid":"Europe/Brussels", + "latitude":50.85045, + "longitude":4.34878, + "cc":"BE", + "country":"Belgium", + "admin1":"Brussels Capital", + "geo":"geoname", + "geonameid":2800866 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:55", + "date":"2021-02-26T17:55:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:05", + "date":"2021-02-27T19:05:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ouagadougou February 2021", + "date":"2021-02-26T21:15:58.521Z", + "location":{ + "title":"Ouagadougou, Centre, Burkina Faso", + "city":"Ouagadougou", + "tzid":"Africa/Ouagadougou", + "latitude":12.36566, + "longitude":-1.53388, + "cc":"BF", + "country":"Burkina Faso", + "admin1":"Centre", + "geo":"geoname", + "geonameid":2357048 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:56", + "date":"2021-02-26T17:56:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:46", + "date":"2021-02-27T18:46:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Sofia February 2021", + "date":"2021-02-26T21:15:58.977Z", + "location":{ + "title":"Sofia, Bulgaria", + "city":"Sofia", + "tzid":"Europe/Sofia", + "latitude":42.69751, + "longitude":23.32415, + "cc":"BG", + "country":"Bulgaria", + "admin1":"Sofia-Capital", + "geo":"geoname", + "geonameid":727011 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:50", + "date":"2021-02-26T17:50:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:52", + "date":"2021-02-27T18:52:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Manama February 2021", + "date":"2021-02-26T21:15:59.434Z", + "location":{ + "title":"Manama, Bahrain", + "city":"Manama", + "tzid":"Asia/Bahrain", + "latitude":26.22787, + "longitude":50.58565, + "cc":"BH", + "country":"Bahrain", + "admin1":"Manama", + "geo":"geoname", + "geonameid":290340 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:17", + "date":"2021-02-26T17:17:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bujumbura February 2021", + "date":"2021-02-26T21:15:59.901Z", + "location":{ + "title":"Bujumbura, Burundi", + "city":"Bujumbura", + "tzid":"Africa/Bujumbura", + "latitude":-3.38193, + "longitude":29.36142, + "cc":"BI", + "country":"Burundi", + "admin1":"Bujumbura Mairie", + "geo":"geoname", + "geonameid":425378 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:03", + "date":"2021-02-26T18:03:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:52", + "date":"2021-02-27T18:52:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "error":"Sorry, can't find geonameid: novo", + "originalError":{ + "message":"Sorry, can't find geonameid: novo" + } + }, + { + "title":"Hebcal Hamilton February 2021", + "date":"2021-02-26T21:16:00.837Z", + "location":{ + "title":"Hamilton, Bermuda", + "city":"Hamilton", + "tzid":"Atlantic/Bermuda", + "latitude":32.2949, + "longitude":-64.78303, + "cc":"BM", + "country":"Bermuda", + "admin1":"Hamilton city", + "geo":"geoname", + "geonameid":3573197 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:54", + "date":"2021-02-26T17:54:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:50", + "date":"2021-02-27T18:50:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bandar Seri Begawan February 2021", + "date":"2021-02-26T21:16:01.295Z", + "location":{ + "title":"Bandar Seri Begawan, Brunei-Muara District, Brunei", + "city":"Bandar Seri Begawan", + "tzid":"Asia/Brunei", + "latitude":4.89035, + "longitude":114.94006, + "cc":"BN", + "country":"Brunei", + "admin1":"Brunei-Muara District", + "geo":"geoname", + "geonameid":1820906 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:15", + "date":"2021-02-26T18:15:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:05", + "date":"2021-02-27T19:05:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal La Paz February 2021", + "date":"2021-02-26T21:16:01.763Z", + "location":{ + "title":"La Paz, Bolivia", + "city":"La Paz", + "tzid":"America/La_Paz", + "latitude":-16.5, + "longitude":-68.15, + "cc":"BO", + "country":"Bolivia", + "admin1":"La Paz", + "geo":"geoname", + "geonameid":3911925 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:42", + "date":"2021-02-26T18:42:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:33", + "date":"2021-02-27T19:33:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Santa Cruz de la Sierra February 2021", + "date":"2021-02-26T21:16:02.227Z", + "location":{ + "title":"Santa Cruz de la Sierra, Santa Cruz, Bolivia", + "city":"Santa Cruz de la Sierra", + "tzid":"America/La_Paz", + "latitude":-17.78629, + "longitude":-63.18117, + "cc":"BO", + "country":"Bolivia", + "admin1":"Santa Cruz", + "geo":"geoname", + "geonameid":3904906 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:23", + "date":"2021-02-26T18:23:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:14", + "date":"2021-02-27T19:14:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Belo Horizonte February 2021", + "date":"2021-02-26T21:16:02.686Z", + "location":{ + "title":"Belo Horizonte, Minas Gerais, Brazil", + "city":"Belo Horizonte", + "tzid":"America/Sao_Paulo", + "latitude":-19.92083, + "longitude":-43.93778, + "cc":"BR", + "country":"Brazil", + "admin1":"Minas Gerais", + "geo":"geoname", + "geonameid":3470127 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:08pm", + "date":"2021-02-26T18:08:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:59pm", + "date":"2021-02-27T18:59:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Brasília February 2021", + "date":"2021-02-26T21:16:03.150Z", + "location":{ + "title":"Brasília, Federal District, Brazil", + "city":"Brasília", + "tzid":"America/Sao_Paulo", + "latitude":-15.77972, + "longitude":-47.92972, + "cc":"BR", + "country":"Brazil", + "admin1":"Federal District", + "asciiname":"Brasilia", + "geo":"geoname", + "geonameid":3469058 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:21pm", + "date":"2021-02-26T18:21:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:11pm", + "date":"2021-02-27T19:11:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Fortaleza February 2021", + "date":"2021-02-26T21:16:03.602Z", + "location":{ + "title":"Fortaleza, Ceara, Brazil", + "city":"Fortaleza", + "tzid":"America/Fortaleza", + "latitude":-3.71722, + "longitude":-38.54306, + "cc":"BR", + "country":"Brazil", + "admin1":"Ceara", + "geo":"geoname", + "geonameid":3399415 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:35pm", + "date":"2021-02-26T17:35:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:24pm", + "date":"2021-02-27T18:24:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Rio de Janeiro February 2021", + "date":"2021-02-26T21:16:04.068Z", + "location":{ + "title":"Rio de Janeiro, Brazil", + "city":"Rio de Janeiro", + "tzid":"America/Sao_Paulo", + "latitude":-22.90642, + "longitude":-43.18223, + "cc":"BR", + "country":"Brazil", + "admin1":"Rio de Janeiro", + "geo":"geoname", + "geonameid":3451190 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:07pm", + "date":"2021-02-26T18:07:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:59pm", + "date":"2021-02-27T18:59:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Salvador February 2021", + "date":"2021-02-26T21:16:04.529Z", + "location":{ + "title":"Salvador, Bahia, Brazil", + "city":"Salvador", + "tzid":"America/Bahia", + "latitude":-12.97111, + "longitude":-38.51083, + "cc":"BR", + "country":"Brazil", + "admin1":"Bahia", + "geo":"geoname", + "geonameid":3450554 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:41pm", + "date":"2021-02-26T17:41:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:31pm", + "date":"2021-02-27T18:31:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal São Paulo February 2021", + "date":"2021-02-25T00:22:54.220Z", + "location":{ + "title":"São Paulo, Sao Paulo, Brazil", + "city":"São Paulo", + "tzid":"America/Sao_Paulo", + "latitude":-23.5475, + "longitude":-46.63611, + "cc":"BR", + "country":"Brazil", + "admin1":"Sao Paulo", + "asciiname":"Sao Paulo", + "geo":"geoname", + "geonameid":3448439 + }, + "items":[ + { + "title":"Fast begins", + "date":"2021-02-25T04:50:00-03:00", + "category":"zmanim", + "subcat":"fast", + "hebrew":"תחילת הצום", + "memo":"Ta'anit Esther" + }, + { + "title":"Ta'anit Esther", + "date":"2021-02-25", + "category":"holiday", + "subcat":"fast", + "hebrew":"תענית אסתר", + "leyning":{ + "1":"Exodus 32:11 - 32:14", + "2":"Exodus 34:1 - 34:3", + "3":"Exodus 34:4 - 34:10", + "torah":"Exodus 32:11-34:10" + }, + "link":"https://www.hebcal.com/holidays/taanit-esther-2021?utm_source=js&utm_medium=api", + "memo":"Fast of Esther" + }, + { + "title":"Fast ends", + "date":"2021-02-25T19:09:00-03:00", + "category":"zmanim", + "subcat":"fast", + "hebrew":"סיום הצום", + "memo":"Ta'anit Esther" + }, + { + "title":"Erev Purim", + "date":"2021-02-25", + "category":"holiday", + "subcat":"major", + "hebrew":"ערב פורים", + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:22pm", + "date":"2021-02-26T18:22:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:14pm", + "date":"2021-02-27T19:14:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nassau February 2021", + "date":"2021-02-26T21:16:05.455Z", + "location":{ + "title":"Nassau, New Providence, Bahamas", + "city":"Nassau", + "tzid":"America/Nassau", + "latitude":25.05823, + "longitude":-77.34306, + "cc":"BS", + "country":"Bahamas", + "admin1":"New Providence", + "geo":"geoname", + "geonameid":3571824 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:50", + "date":"2021-02-26T17:50:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:43", + "date":"2021-02-27T18:43:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Thimphu February 2021", + "date":"2021-02-26T21:16:05.910Z", + "location":{ + "title":"Thimphu, Bhutan", + "city":"Thimphu", + "tzid":"Asia/Thimphu", + "latitude":27.46609, + "longitude":89.64191, + "cc":"BT", + "country":"Bhutan", + "admin1":"Thimphu", + "geo":"geoname", + "geonameid":1252416 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:40", + "date":"2021-02-26T17:40:00+06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:34", + "date":"2021-02-27T18:34:00+06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Gaborone February 2021", + "date":"2021-02-26T21:16:06.367Z", + "location":{ + "title":"Gaborone, Botswana", + "city":"Gaborone", + "tzid":"Africa/Gaborone", + "latitude":-24.65451, + "longitude":25.90859, + "cc":"BW", + "country":"Botswana", + "admin1":"Gaborone", + "geo":"geoname", + "geonameid":933773 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:33", + "date":"2021-02-26T18:33:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:25", + "date":"2021-02-27T19:25:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Minsk February 2021", + "date":"2021-02-26T21:16:06.832Z", + "location":{ + "title":"Minsk, Belarus", + "city":"Minsk", + "tzid":"Europe/Minsk", + "latitude":53.9, + "longitude":27.56667, + "cc":"BY", + "country":"Belarus", + "admin1":"Minsk City", + "geo":"geoname", + "geonameid":625144 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:17", + "date":"2021-02-26T18:17:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:30", + "date":"2021-02-27T19:30:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Belmopan February 2021", + "date":"2021-02-26T21:16:07.300Z", + "location":{ + "title":"Belmopan, Cayo, Belize", + "city":"Belmopan", + "tzid":"America/Belize", + "latitude":17.25, + "longitude":-88.76667, + "cc":"BZ", + "country":"Belize", + "admin1":"Cayo", + "geo":"geoname", + "geonameid":3582672 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:41", + "date":"2021-02-26T17:41:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:33", + "date":"2021-02-27T18:33:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Calgary February 2021", + "date":"2021-02-26T21:16:07.757Z", + "location":{ + "title":"Calgary, Alberta, Canada", + "city":"Calgary", + "tzid":"America/Edmonton", + "latitude":51.05011, + "longitude":-114.08529, + "cc":"CA", + "country":"Canada", + "admin1":"Alberta", + "geo":"geoname", + "geonameid":5913490 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:49pm", + "date":"2021-02-26T17:49:00-07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:59pm", + "date":"2021-02-27T18:59:00-07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Edmonton February 2021", + "date":"2021-02-26T21:16:08.202Z", + "location":{ + "title":"Edmonton, Alberta, Canada", + "city":"Edmonton", + "tzid":"America/Edmonton", + "latitude":53.55014, + "longitude":-113.46871, + "cc":"CA", + "country":"Canada", + "admin1":"Alberta", + "geo":"geoname", + "geonameid":5946768 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:42pm", + "date":"2021-02-26T17:42:00-07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:55pm", + "date":"2021-02-27T18:55:00-07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Halifax February 2021", + "date":"2021-02-26T21:16:08.670Z", + "location":{ + "title":"Halifax, Nova Scotia, Canada", + "city":"Halifax", + "tzid":"America/Halifax", + "latitude":44.6464, + "longitude":-63.57291, + "cc":"CA", + "country":"Canada", + "admin1":"Nova Scotia", + "geo":"geoname", + "geonameid":6324729 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:36pm", + "date":"2021-02-26T17:36:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:39pm", + "date":"2021-02-27T18:39:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Mississauga February 2021", + "date":"2021-02-26T21:16:09.131Z", + "location":{ + "title":"Mississauga, Ontario, Canada", + "city":"Mississauga", + "tzid":"America/Toronto", + "latitude":43.5789, + "longitude":-79.6583, + "cc":"CA", + "country":"Canada", + "admin1":"Ontario", + "geo":"geoname", + "geonameid":6075357 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:42pm", + "date":"2021-02-26T17:42:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:44pm", + "date":"2021-02-27T18:44:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Montréal February 2021", + "date":"2021-02-26T21:16:09.588Z", + "location":{ + "title":"Montréal, Quebec, Canada", + "city":"Montréal", + "tzid":"America/Toronto", + "latitude":45.50884, + "longitude":-73.58781, + "cc":"CA", + "country":"Canada", + "admin1":"Quebec", + "asciiname":"Montreal", + "geo":"geoname", + "geonameid":6077243 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:15pm", + "date":"2021-02-26T17:15:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:19pm", + "date":"2021-02-27T18:19:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ottawa February 2021", + "date":"2021-02-26T21:16:10.063Z", + "location":{ + "title":"Ottawa, Ontario, Canada", + "city":"Ottawa", + "tzid":"America/Toronto", + "latitude":45.41117, + "longitude":-75.69812, + "cc":"CA", + "country":"Canada", + "admin1":"Ontario", + "geo":"geoname", + "geonameid":6094817 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:23pm", + "date":"2021-02-26T17:23:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:28pm", + "date":"2021-02-27T18:28:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Québec February 2021", + "date":"2021-02-26T21:16:10.531Z", + "location":{ + "title":"Québec, Quebec, Canada", + "city":"Québec", + "tzid":"America/Toronto", + "latitude":46.81228, + "longitude":-71.21454, + "cc":"CA", + "country":"Canada", + "admin1":"Quebec", + "asciiname":"Quebec", + "geo":"geoname", + "geonameid":6325494 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:04pm", + "date":"2021-02-26T17:04:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:09pm", + "date":"2021-02-27T18:09:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Regina February 2021", + "date":"2021-02-26T21:16:10.993Z", + "location":{ + "title":"Regina, Saskatchewan, Canada", + "city":"Regina", + "tzid":"America/Regina", + "latitude":50.45008, + "longitude":-104.6178, + "cc":"CA", + "country":"Canada", + "admin1":"Saskatchewan", + "geo":"geoname", + "geonameid":6119109 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:12pm", + "date":"2021-02-26T18:12:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:21pm", + "date":"2021-02-27T19:21:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Saskatoon February 2021", + "date":"2021-02-26T21:16:11.458Z", + "location":{ + "title":"Saskatoon, Saskatchewan, Canada", + "city":"Saskatoon", + "tzid":"America/Regina", + "latitude":52.13238, + "longitude":-106.66892, + "cc":"CA", + "country":"Canada", + "admin1":"Saskatchewan", + "geo":"geoname", + "geonameid":6141256 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:18pm", + "date":"2021-02-26T18:18:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:29pm", + "date":"2021-02-27T19:29:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "error":"Sorry, can't find geonameid: 05", + "originalError":{ + "message":"Sorry, can't find geonameid: 05" + } + }, + { + "title":"Hebcal Toronto February 2021", + "date":"2021-02-26T21:16:12.380Z", + "location":{ + "title":"Toronto, Ontario, Canada", + "city":"Toronto", + "tzid":"America/Toronto", + "latitude":43.70011, + "longitude":-79.4163, + "cc":"CA", + "country":"Canada", + "admin1":"Ontario", + "geo":"geoname", + "geonameid":6167865 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:40pm", + "date":"2021-02-26T17:40:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:43pm", + "date":"2021-02-27T18:43:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Vancouver February 2021", + "date":"2021-02-26T21:16:12.841Z", + "location":{ + "title":"Vancouver, British Columbia, Canada", + "city":"Vancouver", + "tzid":"America/Vancouver", + "latitude":49.24966, + "longitude":-123.11934, + "cc":"CA", + "country":"Canada", + "admin1":"British Columbia", + "geo":"geoname", + "geonameid":6173331 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:28pm", + "date":"2021-02-26T17:28:00-08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:36pm", + "date":"2021-02-27T18:36:00-08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Victoria February 2021", + "date":"2021-02-26T21:16:13.308Z", + "location":{ + "title":"Victoria, British Columbia, Canada", + "city":"Victoria", + "tzid":"America/Vancouver", + "latitude":48.4359, + "longitude":-123.35155, + "cc":"CA", + "country":"Canada", + "admin1":"British Columbia", + "geo":"geoname", + "geonameid":6174041 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:30pm", + "date":"2021-02-26T17:30:00-08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:37pm", + "date":"2021-02-27T18:37:00-08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Winnipeg February 2021", + "date":"2021-02-26T21:16:13.764Z", + "location":{ + "title":"Winnipeg, Manitoba, Canada", + "city":"Winnipeg", + "tzid":"America/Winnipeg", + "latitude":49.8844, + "longitude":-97.14704, + "cc":"CA", + "country":"Canada", + "admin1":"Manitoba", + "geo":"geoname", + "geonameid":6183235 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:43pm", + "date":"2021-02-26T17:43:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:51pm", + "date":"2021-02-27T18:51:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kinshasa February 2021", + "date":"2021-02-26T21:16:14.231Z", + "location":{ + "title":"Kinshasa, Democratic Republic of the Congo", + "city":"Kinshasa", + "tzid":"Africa/Kinshasa", + "latitude":-4.32758, + "longitude":15.31357, + "cc":"CD", + "country":"Democratic Republic of the Congo", + "admin1":"Kinshasa", + "geo":"geoname", + "geonameid":2314302 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:00", + "date":"2021-02-26T18:00:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:49", + "date":"2021-02-27T18:49:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Lubumbashi February 2021", + "date":"2021-02-26T21:16:14.688Z", + "location":{ + "title":"Lubumbashi, Haut-Katanga, Democratic Republic of the Congo", + "city":"Lubumbashi", + "tzid":"Africa/Lubumbashi", + "latitude":-11.66089, + "longitude":27.47938, + "cc":"CD", + "country":"Democratic Republic of the Congo", + "admin1":"Haut-Katanga", + "geo":"geoname", + "geonameid":922704 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:16", + "date":"2021-02-26T18:16:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:06", + "date":"2021-02-27T19:06:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bangui February 2021", + "date":"2021-02-26T21:16:15.150Z", + "location":{ + "title":"Bangui, Central African Republic", + "city":"Bangui", + "tzid":"Africa/Bangui", + "latitude":4.36122, + "longitude":18.55496, + "cc":"CF", + "country":"Central African Republic", + "admin1":"Bangui", + "geo":"geoname", + "geonameid":2389853 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:41", + "date":"2021-02-26T17:41:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:31", + "date":"2021-02-27T18:31:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Brazzaville February 2021", + "date":"2021-02-26T21:16:15.609Z", + "location":{ + "title":"Brazzaville, Republic of the Congo", + "city":"Brazzaville", + "tzid":"Africa/Brazzaville", + "latitude":-4.26613, + "longitude":15.28318, + "cc":"CG", + "country":"Republic of the Congo", + "admin1":"Brazzaville", + "geo":"geoname", + "geonameid":2260535 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:00", + "date":"2021-02-26T18:00:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:49", + "date":"2021-02-27T18:49:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bern February 2021", + "date":"2021-02-26T21:16:16.063Z", + "location":{ + "title":"Bern, Switzerland", + "city":"Bern", + "tzid":"Europe/Zurich", + "latitude":46.94809, + "longitude":7.44744, + "cc":"CH", + "country":"Switzerland", + "admin1":"Bern", + "geo":"geoname", + "geonameid":2661552 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:48", + "date":"2021-02-26T17:48:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:54", + "date":"2021-02-27T18:54:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Genève February 2021", + "date":"2021-02-26T21:16:16.526Z", + "location":{ + "title":"Genève, Geneva, Switzerland", + "city":"Genève", + "tzid":"Europe/Zurich", + "latitude":46.20222, + "longitude":6.14569, + "cc":"CH", + "country":"Switzerland", + "admin1":"Geneva", + "asciiname":"Geneve", + "geo":"geoname", + "geonameid":2660646 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:55", + "date":"2021-02-26T17:55:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:59", + "date":"2021-02-27T18:59:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Zürich February 2021", + "date":"2021-02-26T21:16:16.999Z", + "location":{ + "title":"Zürich, Zurich, Switzerland", + "city":"Zürich", + "tzid":"Europe/Zurich", + "latitude":47.36667, + "longitude":8.55, + "cc":"CH", + "country":"Switzerland", + "admin1":"Zurich", + "asciiname":"Zurich", + "geo":"geoname", + "geonameid":2657896 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:43", + "date":"2021-02-26T17:43:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:49", + "date":"2021-02-27T18:49:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Abidjan February 2021", + "date":"2021-02-26T21:16:17.462Z", + "location":{ + "title":"Abidjan, Ivory Coast", + "city":"Abidjan", + "tzid":"Africa/Abidjan", + "latitude":5.35444, + "longitude":-4.00167, + "cc":"CI", + "country":"Ivory Coast", + "admin1":"Abidjan", + "geo":"geoname", + "geonameid":2293538 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:11", + "date":"2021-02-26T18:11:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:00", + "date":"2021-02-27T19:00:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Yamoussoukro February 2021", + "date":"2021-02-26T21:16:17.923Z", + "location":{ + "title":"Yamoussoukro, Lacs, Ivory Coast", + "city":"Yamoussoukro", + "tzid":"Africa/Abidjan", + "latitude":6.82055, + "longitude":-5.27674, + "cc":"CI", + "country":"Ivory Coast", + "admin1":"Lacs", + "geo":"geoname", + "geonameid":2279755 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:15", + "date":"2021-02-26T18:15:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:04", + "date":"2021-02-27T19:04:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Avarua February 2021", + "date":"2021-02-26T21:16:18.377Z", + "location":{ + "title":"Avarua, Rarotonga, Cook Islands", + "city":"Avarua", + "tzid":"Pacific/Rarotonga", + "latitude":-21.2075, + "longitude":-159.77545, + "cc":"CK", + "country":"Cook Islands", + "admin1":"Rarotonga", + "geo":"geoname", + "geonameid":4035715 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:52", + "date":"2021-02-26T18:52:00-10:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:43", + "date":"2021-02-27T19:43:00-10:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Santiago February 2021", + "date":"2021-02-26T21:16:18.842Z", + "location":{ + "title":"Santiago, Chile", + "city":"Santiago", + "tzid":"America/Santiago", + "latitude":-33.45694, + "longitude":-70.64827, + "cc":"CL", + "country":"Chile", + "admin1":"Santiago Metropolitan", + "geo":"geoname", + "geonameid":3871336 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 20:07", + "date":"2021-02-26T20:07:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 21:02", + "date":"2021-02-27T21:02:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Douala February 2021", + "date":"2021-02-26T21:16:19.300Z", + "location":{ + "title":"Douala, Littoral, Cameroon", + "city":"Douala", + "tzid":"Africa/Douala", + "latitude":4.04827, + "longitude":9.70428, + "cc":"CM", + "country":"Cameroon", + "admin1":"Littoral", + "geo":"geoname", + "geonameid":2232593 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:17", + "date":"2021-02-26T18:17:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:06", + "date":"2021-02-27T19:06:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Yaoundé February 2021", + "date":"2021-02-26T21:16:19.761Z", + "location":{ + "title":"Yaoundé, Centre, Cameroon", + "city":"Yaoundé", + "tzid":"Africa/Douala", + "latitude":3.86667, + "longitude":11.51667, + "cc":"CM", + "country":"Cameroon", + "admin1":"Centre", + "asciiname":"Yaounde", + "geo":"geoname", + "geonameid":2220957 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:09", + "date":"2021-02-26T18:09:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:59", + "date":"2021-02-27T18:59:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Beijing February 2021", + "date":"2021-02-26T21:16:20.211Z", + "location":{ + "title":"Beijing, China", + "city":"Beijing", + "tzid":"Asia/Shanghai", + "latitude":39.9075, + "longitude":116.39723, + "cc":"CN", + "country":"China", + "admin1":"Beijing", + "geo":"geoname", + "geonameid":1816670 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:41", + "date":"2021-02-26T17:41:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:41", + "date":"2021-02-27T18:41:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Chengdu February 2021", + "date":"2021-02-26T21:16:20.671Z", + "location":{ + "title":"Chengdu, Sichuan, China", + "city":"Chengdu", + "tzid":"Asia/Shanghai", + "latitude":30.66667, + "longitude":104.06667, + "cc":"CN", + "country":"China", + "admin1":"Sichuan", + "geo":"geoname", + "geonameid":1815286 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:39", + "date":"2021-02-26T18:39:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:35", + "date":"2021-02-27T19:35:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Chongqing February 2021", + "date":"2021-02-26T21:16:21.129Z", + "location":{ + "title":"Chongqing, China", + "city":"Chongqing", + "tzid":"Asia/Shanghai", + "latitude":29.56026, + "longitude":106.55771, + "cc":"CN", + "country":"China", + "admin1":"Chongqing", + "geo":"geoname", + "geonameid":1814906 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:30", + "date":"2021-02-26T18:30:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:25", + "date":"2021-02-27T19:25:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Guangzhou February 2021", + "date":"2021-02-26T21:16:21.591Z", + "location":{ + "title":"Guangzhou, Guangdong, China", + "city":"Guangzhou", + "tzid":"Asia/Shanghai", + "latitude":23.11667, + "longitude":113.25, + "cc":"CN", + "country":"China", + "admin1":"Guangdong", + "geo":"geoname", + "geonameid":1809858 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:09", + "date":"2021-02-26T18:09:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:02", + "date":"2021-02-27T19:02:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Harbin February 2021", + "date":"2021-02-26T21:16:22.047Z", + "location":{ + "title":"Harbin, Heilongjiang, China", + "city":"Harbin", + "tzid":"Asia/Shanghai", + "latitude":45.75, + "longitude":126.65, + "cc":"CN", + "country":"China", + "admin1":"Heilongjiang", + "geo":"geoname", + "geonameid":2037013 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 16:53", + "date":"2021-02-26T16:53:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 17:57", + "date":"2021-02-27T17:57:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kaifeng February 2021", + "date":"2021-02-26T21:16:22.506Z", + "location":{ + "title":"Kaifeng, Henan, China", + "city":"Kaifeng", + "tzid":"Asia/Shanghai", + "latitude":34.7986, + "longitude":114.30742, + "cc":"CN", + "country":"China", + "admin1":"Henan", + "geo":"geoname", + "geonameid":1804879 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:55", + "date":"2021-02-26T17:55:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:52", + "date":"2021-02-27T18:52:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Lanzhou February 2021", + "date":"2021-02-26T21:16:22.972Z", + "location":{ + "title":"Lanzhou, Gansu, China", + "city":"Lanzhou", + "tzid":"Asia/Shanghai", + "latitude":36.05701, + "longitude":103.83987, + "cc":"CN", + "country":"China", + "admin1":"Gansu", + "geo":"geoname", + "geonameid":1804430 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:35", + "date":"2021-02-26T18:35:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:33", + "date":"2021-02-27T19:33:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nanchong February 2021", + "date":"2021-02-26T21:16:23.436Z", + "location":{ + "title":"Nanchong, Sichuan, China", + "city":"Nanchong", + "tzid":"Asia/Shanghai", + "latitude":30.79508, + "longitude":106.08473, + "cc":"CN", + "country":"China", + "admin1":"Sichuan", + "geo":"geoname", + "geonameid":1800146 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:31", + "date":"2021-02-26T18:31:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:26", + "date":"2021-02-27T19:26:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nanjing February 2021", + "date":"2021-02-26T21:16:23.912Z", + "location":{ + "title":"Nanjing, Jiangsu, China", + "city":"Nanjing", + "tzid":"Asia/Shanghai", + "latitude":32.06167, + "longitude":118.77778, + "cc":"CN", + "country":"China", + "admin1":"Jiangsu", + "geo":"geoname", + "geonameid":1799962 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:39", + "date":"2021-02-26T17:39:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:35", + "date":"2021-02-27T18:35:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Puyang Chengguanzhen February 2021", + "date":"2021-02-26T21:16:24.420Z", + "location":{ + "title":"Puyang Chengguanzhen, Henan, China", + "city":"Puyang Chengguanzhen", + "tzid":"Asia/Shanghai", + "latitude":35.70506, + "longitude":115.01409, + "cc":"CN", + "country":"China", + "admin1":"Henan", + "geo":"geoname", + "geonameid":1798422 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:51", + "date":"2021-02-26T17:51:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:48", + "date":"2021-02-27T18:48:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Shanghai February 2021", + "date":"2021-02-26T21:16:24.877Z", + "location":{ + "title":"Shanghai, China", + "city":"Shanghai", + "tzid":"Asia/Shanghai", + "latitude":31.22222, + "longitude":121.45806, + "cc":"CN", + "country":"China", + "admin1":"Shanghai", + "geo":"geoname", + "geonameid":1796236 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:29", + "date":"2021-02-26T17:29:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:25", + "date":"2021-02-27T18:25:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Shenyang February 2021", + "date":"2021-02-26T21:16:25.331Z", + "location":{ + "title":"Shenyang, Liaoning, China", + "city":"Shenyang", + "tzid":"Asia/Shanghai", + "latitude":41.79222, + "longitude":123.43278, + "cc":"CN", + "country":"China", + "admin1":"Liaoning", + "geo":"geoname", + "geonameid":2034937 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:11", + "date":"2021-02-26T17:11:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:12", + "date":"2021-02-27T18:12:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Shenzhen February 2021", + "date":"2021-02-26T21:16:25.779Z", + "location":{ + "title":"Shenzhen, Guangdong, China", + "city":"Shenzhen", + "tzid":"Asia/Shanghai", + "latitude":22.54554, + "longitude":114.0683, + "cc":"CN", + "country":"China", + "admin1":"Guangdong", + "geo":"geoname", + "geonameid":1795565 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:06", + "date":"2021-02-26T18:06:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:59", + "date":"2021-02-27T18:59:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Shiyan February 2021", + "date":"2021-02-26T21:16:26.235Z", + "location":{ + "title":"Shiyan, Hubei, China", + "city":"Shiyan", + "tzid":"Asia/Shanghai", + "latitude":32.6475, + "longitude":110.77806, + "cc":"CN", + "country":"China", + "admin1":"Hubei", + "geo":"geoname", + "geonameid":1794903 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:11", + "date":"2021-02-26T18:11:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:07", + "date":"2021-02-27T19:07:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tai’an February 2021", + "date":"2021-02-26T21:16:26.683Z", + "location":{ + "title":"Tai’an, Shandong, China", + "city":"Tai’an", + "tzid":"Asia/Shanghai", + "latitude":36.18528, + "longitude":117.12, + "cc":"CN", + "country":"China", + "admin1":"Shandong", + "asciiname":"Tai'an", + "geo":"geoname", + "geonameid":1793724 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:42", + "date":"2021-02-26T17:42:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:40", + "date":"2021-02-27T18:40:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tianjin February 2021", + "date":"2021-02-26T21:16:27.147Z", + "location":{ + "title":"Tianjin, China", + "city":"Tianjin", + "tzid":"Asia/Shanghai", + "latitude":39.14222, + "longitude":117.17667, + "cc":"CN", + "country":"China", + "admin1":"Tianjin", + "geo":"geoname", + "geonameid":1792947 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:39", + "date":"2021-02-26T17:39:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:38", + "date":"2021-02-27T18:38:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Wuhan February 2021", + "date":"2021-02-26T21:16:27.622Z", + "location":{ + "title":"Wuhan, Hubei, China", + "city":"Wuhan", + "tzid":"Asia/Shanghai", + "latitude":30.58333, + "longitude":114.26667, + "cc":"CN", + "country":"China", + "admin1":"Hubei", + "geo":"geoname", + "geonameid":1791247 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:59", + "date":"2021-02-26T17:59:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:54", + "date":"2021-02-27T18:54:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Xi’an February 2021", + "date":"2021-02-26T21:16:28.109Z", + "location":{ + "title":"Xi’an, Shaanxi, China", + "city":"Xi’an", + "tzid":"Asia/Shanghai", + "latitude":34.25833, + "longitude":108.92861, + "cc":"CN", + "country":"China", + "admin1":"Shaanxi", + "asciiname":"Xi'an", + "geo":"geoname", + "geonameid":1790630 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:17", + "date":"2021-02-26T18:17:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:13", + "date":"2021-02-27T19:13:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Yueyang February 2021", + "date":"2021-02-26T21:16:28.571Z", + "location":{ + "title":"Yueyang, Hunan, China", + "city":"Yueyang", + "tzid":"Asia/Shanghai", + "latitude":29.37455, + "longitude":113.09481, + "cc":"CN", + "country":"China", + "admin1":"Hunan", + "geo":"geoname", + "geonameid":1927639 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:04", + "date":"2021-02-26T18:04:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:59", + "date":"2021-02-27T18:59:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Zhumadian February 2021", + "date":"2021-02-26T21:16:29.053Z", + "location":{ + "title":"Zhumadian, Henan, China", + "city":"Zhumadian", + "tzid":"Asia/Shanghai", + "latitude":32.97944, + "longitude":114.02944, + "cc":"CN", + "country":"China", + "admin1":"Henan", + "geo":"geoname", + "geonameid":1783873 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:57", + "date":"2021-02-26T17:57:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:54", + "date":"2021-02-27T18:54:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Barranquilla February 2021", + "date":"2021-02-26T21:16:29.519Z", + "location":{ + "title":"Barranquilla, Atlantico, Colombia", + "city":"Barranquilla", + "tzid":"America/Bogota", + "latitude":10.96854, + "longitude":-74.78132, + "cc":"CO", + "country":"Colombia", + "admin1":"Atlantico", + "geo":"geoname", + "geonameid":3689147 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:50", + "date":"2021-02-26T17:50:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:40", + "date":"2021-02-27T18:40:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bogotá February 2021", + "date":"2021-02-26T21:16:30.041Z", + "location":{ + "title":"Bogotá, Bogota D.C., Colombia", + "city":"Bogotá", + "tzid":"America/Bogota", + "latitude":4.60971, + "longitude":-74.08175, + "cc":"CO", + "country":"Colombia", + "admin1":"Bogota D.C.", + "asciiname":"Bogota", + "geo":"geoname", + "geonameid":3688689 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:51", + "date":"2021-02-26T17:51:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:41", + "date":"2021-02-27T18:41:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Cali February 2021", + "date":"2021-02-26T21:16:30.535Z", + "location":{ + "title":"Cali, Valle del Cauca, Colombia", + "city":"Cali", + "tzid":"America/Bogota", + "latitude":3.43722, + "longitude":-76.5225, + "cc":"CO", + "country":"Colombia", + "admin1":"Valle del Cauca", + "geo":"geoname", + "geonameid":3687925 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:02", + "date":"2021-02-26T18:02:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:51", + "date":"2021-02-27T18:51:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Medellín February 2021", + "date":"2021-02-26T21:16:30.985Z", + "location":{ + "title":"Medellín, Antioquia, Colombia", + "city":"Medellín", + "tzid":"America/Bogota", + "latitude":6.25184, + "longitude":-75.56359, + "cc":"CO", + "country":"Colombia", + "admin1":"Antioquia", + "asciiname":"Medellin", + "geo":"geoname", + "geonameid":3674962 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:56", + "date":"2021-02-26T17:56:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:46", + "date":"2021-02-27T18:46:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal San José February 2021", + "date":"2021-02-26T21:16:31.489Z", + "location":{ + "title":"San José, San Jose, Costa Rica", + "city":"San José", + "tzid":"America/Costa_Rica", + "latitude":9.93333, + "longitude":-84.08333, + "cc":"CR", + "country":"Costa Rica", + "admin1":"San Jose", + "asciiname":"San Jose", + "geo":"geoname", + "geonameid":3621849 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:28", + "date":"2021-02-26T17:28:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:18", + "date":"2021-02-27T18:18:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Havana February 2021", + "date":"2021-02-26T21:16:31.943Z", + "location":{ + "title":"Havana, Cuba", + "city":"Havana", + "tzid":"America/Havana", + "latitude":23.13302, + "longitude":-82.38304, + "cc":"CU", + "country":"Cuba", + "admin1":"Havana", + "geo":"geoname", + "geonameid":3553478 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:12", + "date":"2021-02-26T18:12:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:04", + "date":"2021-02-27T19:04:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Praia February 2021", + "date":"2021-02-26T21:16:32.397Z", + "location":{ + "title":"Praia, Cabo Verde", + "city":"Praia", + "tzid":"Atlantic/Cape_Verde", + "latitude":14.93152, + "longitude":-23.51254, + "cc":"CV", + "country":"Cape Verde", + "admin1":"Praia", + "geo":"geoname", + "geonameid":3374333 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:22", + "date":"2021-02-26T18:22:00-01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:13", + "date":"2021-02-27T19:13:00-01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Willemstad February 2021", + "date":"2021-02-26T21:16:32.841Z", + "location":{ + "title":"Willemstad, Curacao", + "city":"Willemstad", + "tzid":"America/Curacao", + "latitude":12.1084, + "longitude":-68.93354, + "cc":"CW", + "country":"Curacao", + "geo":"geoname", + "geonameid":3513090 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:26", + "date":"2021-02-26T18:26:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:16", + "date":"2021-02-27T19:16:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nicosia February 2021", + "date":"2021-02-26T21:16:33.298Z", + "location":{ + "title":"Nicosia, Cyprus", + "city":"Nicosia", + "tzid":"Asia/Nicosia", + "latitude":35.17531, + "longitude":33.3642, + "cc":"CY", + "country":"Cyprus", + "admin1":"Nicosia", + "geo":"geoname", + "geonameid":146268 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:18", + "date":"2021-02-26T17:18:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:15", + "date":"2021-02-27T18:15:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Prague February 2021", + "date":"2021-02-26T21:16:33.759Z", + "location":{ + "title":"Prague, Hlavni mesto Praha, Czechia", + "city":"Prague", + "tzid":"Europe/Prague", + "latitude":50.08804, + "longitude":14.42076, + "cc":"CZ", + "country":"Czech Republic", + "admin1":"Hlavni mesto Praha", + "geo":"geoname", + "geonameid":3067696 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:16", + "date":"2021-02-26T17:16:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:25", + "date":"2021-02-27T18:25:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Berlin February 2021", + "date":"2021-02-26T21:16:34.226Z", + "location":{ + "title":"Berlin, Germany", + "city":"Berlin", + "tzid":"Europe/Berlin", + "latitude":52.52437, + "longitude":13.41053, + "cc":"DE", + "country":"Germany", + "admin1":"Berlin", + "geo":"geoname", + "geonameid":2950159 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:16", + "date":"2021-02-26T17:16:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:28", + "date":"2021-02-27T18:28:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Hamburg February 2021", + "date":"2021-02-26T21:16:34.683Z", + "location":{ + "title":"Hamburg, Germany", + "city":"Hamburg", + "tzid":"Europe/Berlin", + "latitude":53.55073, + "longitude":9.99302, + "cc":"DE", + "country":"Germany", + "admin1":"Hamburg", + "geo":"geoname", + "geonameid":2911298 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:28", + "date":"2021-02-26T17:28:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:41", + "date":"2021-02-27T18:41:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Munich February 2021", + "date":"2021-02-26T21:16:35.133Z", + "location":{ + "title":"Munich, Bavaria, Germany", + "city":"Munich", + "tzid":"Europe/Berlin", + "latitude":48.13743, + "longitude":11.57549, + "cc":"DE", + "country":"Germany", + "admin1":"Bavaria", + "geo":"geoname", + "geonameid":2867714 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:30", + "date":"2021-02-26T17:30:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:37", + "date":"2021-02-27T18:37:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Copenhagen February 2021", + "date":"2021-02-26T21:16:35.590Z", + "location":{ + "title":"Copenhagen, Capital Region, Denmark", + "city":"Copenhagen", + "tzid":"Europe/Copenhagen", + "latitude":55.67594, + "longitude":12.56553, + "cc":"DK", + "country":"Denmark", + "admin1":"Capital Region", + "geo":"geoname", + "geonameid":2618425 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:13", + "date":"2021-02-26T17:13:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:29", + "date":"2021-02-27T18:29:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Roseau February 2021", + "date":"2021-02-26T21:16:36.064Z", + "location":{ + "title":"Roseau, Saint George, Dominica", + "city":"Roseau", + "tzid":"America/Dominica", + "latitude":15.30174, + "longitude":-61.38808, + "cc":"DM", + "country":"Dominica", + "admin1":"Saint George", + "geo":"geoname", + "geonameid":3575635 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:53", + "date":"2021-02-26T17:53:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:44", + "date":"2021-02-27T18:44:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Santiago de los Caballeros February 2021", + "date":"2021-02-26T21:16:36.527Z", + "location":{ + "title":"Santiago de los Caballeros, Santiago, Dominican Republic", + "city":"Santiago de los Caballeros", + "tzid":"America/Santo_Domingo", + "latitude":19.4517, + "longitude":-70.69703, + "cc":"DO", + "country":"Dominican Republic", + "admin1":"Santiago", + "geo":"geoname", + "geonameid":3492914 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:28pm", + "date":"2021-02-26T18:28:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:19pm", + "date":"2021-02-27T19:19:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Santo Domingo February 2021", + "date":"2021-02-26T21:16:36.992Z", + "location":{ + "title":"Santo Domingo, Nacional, Dominican Republic", + "city":"Santo Domingo", + "tzid":"America/Santo_Domingo", + "latitude":18.47186, + "longitude":-69.89232, + "cc":"DO", + "country":"Dominican Republic", + "admin1":"Nacional", + "geo":"geoname", + "geonameid":3492908 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:25pm", + "date":"2021-02-26T18:25:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:17pm", + "date":"2021-02-27T19:17:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Algiers February 2021", + "date":"2021-02-26T21:16:37.451Z", + "location":{ + "title":"Algiers, Algeria", + "city":"Algiers", + "tzid":"Africa/Algiers", + "latitude":36.73225, + "longitude":3.08746, + "cc":"DZ", + "country":"Algeria", + "admin1":"Algiers", + "geo":"geoname", + "geonameid":2507480 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:18", + "date":"2021-02-26T18:18:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:16", + "date":"2021-02-27T19:16:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Guayaquil February 2021", + "date":"2021-02-26T21:16:37.906Z", + "location":{ + "title":"Guayaquil, Guayas, Ecuador", + "city":"Guayaquil", + "tzid":"America/Guayaquil", + "latitude":-2.19616, + "longitude":-79.88621, + "cc":"EC", + "country":"Ecuador", + "admin1":"Guayas", + "geo":"geoname", + "geonameid":3657509 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:19", + "date":"2021-02-26T18:19:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:09", + "date":"2021-02-27T19:09:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Quito February 2021", + "date":"2021-02-26T21:16:38.361Z", + "location":{ + "title":"Quito, Pichincha, Ecuador", + "city":"Quito", + "tzid":"America/Guayaquil", + "latitude":-0.22985, + "longitude":-78.52495, + "cc":"EC", + "country":"Ecuador", + "admin1":"Pichincha", + "geo":"geoname", + "geonameid":3652462 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:12", + "date":"2021-02-26T18:12:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:02", + "date":"2021-02-27T19:02:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tallinn February 2021", + "date":"2021-02-26T21:16:38.818Z", + "location":{ + "title":"Tallinn, Harjumaa, Estonia", + "city":"Tallinn", + "tzid":"Europe/Tallinn", + "latitude":59.43696, + "longitude":24.75353, + "cc":"EE", + "country":"Estonia", + "admin1":"Harjumaa", + "geo":"geoname", + "geonameid":588409 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:16", + "date":"2021-02-26T17:16:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:39", + "date":"2021-02-27T18:39:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Giza February 2021", + "date":"2021-02-26T21:16:39.291Z", + "location":{ + "title":"Giza, Egypt", + "city":"Giza", + "tzid":"Africa/Cairo", + "latitude":30.00944, + "longitude":31.20861, + "cc":"EG", + "country":"Egypt", + "admin1":"Giza", + "geo":"geoname", + "geonameid":360995 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:31", + "date":"2021-02-26T17:31:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:26", + "date":"2021-02-27T18:26:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Alexandria February 2021", + "date":"2021-02-26T21:16:39.746Z", + "location":{ + "title":"Alexandria, Egypt", + "city":"Alexandria", + "tzid":"Africa/Cairo", + "latitude":31.20176, + "longitude":29.91582, + "cc":"EG", + "country":"Egypt", + "admin1":"Alexandria", + "geo":"geoname", + "geonameid":361058 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:36", + "date":"2021-02-26T17:36:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:31", + "date":"2021-02-27T18:31:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Cairo February 2021", + "date":"2021-02-26T21:16:40.203Z", + "location":{ + "title":"Cairo, Egypt", + "city":"Cairo", + "tzid":"Africa/Cairo", + "latitude":30.06263, + "longitude":31.24967, + "cc":"EG", + "country":"Egypt", + "admin1":"Cairo", + "geo":"geoname", + "geonameid":360630 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:31", + "date":"2021-02-26T17:31:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:26", + "date":"2021-02-27T18:26:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Asmara February 2021", + "date":"2021-02-26T21:16:40.679Z", + "location":{ + "title":"Asmara, Maekel, Eritrea", + "city":"Asmara", + "tzid":"Africa/Asmara", + "latitude":15.33805, + "longitude":38.93184, + "cc":"ER", + "country":"Eritrea", + "admin1":"Maekel", + "geo":"geoname", + "geonameid":343300 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:12", + "date":"2021-02-26T18:12:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:03", + "date":"2021-02-27T19:03:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Barcelona February 2021", + "date":"2021-02-26T21:16:41.147Z", + "location":{ + "title":"Barcelona, Catalonia, Spain", + "city":"Barcelona", + "tzid":"Europe/Madrid", + "latitude":41.38879, + "longitude":2.15899, + "cc":"ES", + "country":"Spain", + "admin1":"Catalonia", + "geo":"geoname", + "geonameid":3128760 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:17", + "date":"2021-02-26T18:17:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:18", + "date":"2021-02-27T19:18:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Madrid February 2021", + "date":"2021-02-26T21:16:41.603Z", + "location":{ + "title":"Madrid, Spain", + "city":"Madrid", + "tzid":"Europe/Madrid", + "latitude":40.4165, + "longitude":-3.70256, + "cc":"ES", + "country":"Spain", + "admin1":"Madrid", + "geo":"geoname", + "geonameid":3117735 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:41", + "date":"2021-02-26T18:41:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:41", + "date":"2021-02-27T19:41:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Addis Ababa February 2021", + "date":"2021-02-26T21:16:42.065Z", + "location":{ + "title":"Addis Ababa, Ethiopia", + "city":"Addis Ababa", + "tzid":"Africa/Addis_Ababa", + "latitude":9.02497, + "longitude":38.74689, + "cc":"ET", + "country":"Ethiopia", + "admin1":"Addis Ababa", + "geo":"geoname", + "geonameid":344979 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:17", + "date":"2021-02-26T18:17:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:07", + "date":"2021-02-27T19:07:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Helsinki February 2021", + "date":"2021-02-26T21:16:42.528Z", + "location":{ + "title":"Helsinki, Uusimaa, Finland", + "city":"Helsinki", + "tzid":"Europe/Helsinki", + "latitude":60.16952, + "longitude":24.93545, + "cc":"FI", + "country":"Finland", + "admin1":"Uusimaa", + "geo":"geoname", + "geonameid":658225 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:14", + "date":"2021-02-26T17:14:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:38", + "date":"2021-02-27T18:38:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Suva February 2021", + "date":"2021-02-26T21:16:42.979Z", + "location":{ + "title":"Suva, Central, Fiji", + "city":"Suva", + "tzid":"Pacific/Fiji", + "latitude":-18.14161, + "longitude":178.44149, + "cc":"FJ", + "country":"Fiji", + "admin1":"Central", + "geo":"geoname", + "geonameid":2198148 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:18", + "date":"2021-02-26T18:18:00+12:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:08", + "date":"2021-02-27T19:08:00+12:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Stanley February 2021", + "date":"2021-02-26T21:16:43.436Z", + "location":{ + "title":"Stanley, Falkland Islands", + "city":"Stanley", + "tzid":"Atlantic/Stanley", + "latitude":-51.69382, + "longitude":-57.85701, + "cc":"FK", + "country":"Falkland Islands", + "geo":"geoname", + "geonameid":3426691 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:41", + "date":"2021-02-26T19:41:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 20:50", + "date":"2021-02-27T20:50:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tórshavn February 2021", + "date":"2021-02-26T21:16:43.887Z", + "location":{ + "title":"Tórshavn, Streymoy, Faroe Islands", + "city":"Tórshavn", + "tzid":"Atlantic/Faroe", + "latitude":62.00973, + "longitude":-6.77164, + "cc":"FO", + "country":"Faroe Islands", + "admin1":"Streymoy", + "asciiname":"Torshavn", + "geo":"geoname", + "geonameid":2611396 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:16", + "date":"2021-02-26T17:16:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:44", + "date":"2021-02-27T18:44:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Marseille February 2021", + "date":"2021-02-26T21:16:44.351Z", + "location":{ + "title":"Marseille, Provence-Alpes-Cote d'Azur, France", + "city":"Marseille", + "tzid":"Europe/Paris", + "latitude":43.29695, + "longitude":5.38107, + "cc":"FR", + "country":"France", + "admin1":"Provence-Alpes-Cote d'Azur", + "geo":"geoname", + "geonameid":2995469 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:01", + "date":"2021-02-26T18:01:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:04", + "date":"2021-02-27T19:04:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Paris February 2021", + "date":"2021-02-26T21:16:44.822Z", + "location":{ + "title":"Paris, Ile-de-France, France", + "city":"Paris", + "tzid":"Europe/Paris", + "latitude":48.85341, + "longitude":2.3488, + "cc":"FR", + "country":"France", + "admin1":"Ile-de-France", + "geo":"geoname", + "geonameid":2988507 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:06", + "date":"2021-02-26T18:06:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:13", + "date":"2021-02-27T19:13:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Libreville February 2021", + "date":"2021-02-26T21:16:45.277Z", + "location":{ + "title":"Libreville, Estuaire, Gabon", + "city":"Libreville", + "tzid":"Africa/Libreville", + "latitude":0.39241, + "longitude":9.45356, + "cc":"GA", + "country":"Gabon", + "admin1":"Estuaire", + "geo":"geoname", + "geonameid":2399697 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:20", + "date":"2021-02-26T18:20:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:09", + "date":"2021-02-27T19:09:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Belfast February 2021", + "date":"2021-02-26T21:16:45.731Z", + "location":{ + "title":"Belfast, Northern Ireland, UK", + "city":"Belfast", + "tzid":"Europe/London", + "latitude":54.59682, + "longitude":-5.92541, + "cc":"GB", + "country":"United Kingdom", + "admin1":"Northern Ireland", + "geo":"geoname", + "geonameid":2655984 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:30", + "date":"2021-02-26T17:30:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:44", + "date":"2021-02-27T18:44:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Birmingham February 2021", + "date":"2021-02-26T21:16:46.188Z", + "location":{ + "title":"Birmingham, England, UK", + "city":"Birmingham", + "tzid":"Europe/London", + "latitude":52.48142, + "longitude":-1.89983, + "cc":"GB", + "country":"United Kingdom", + "admin1":"England", + "geo":"geoname", + "geonameid":2655603 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:17", + "date":"2021-02-26T17:17:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:29", + "date":"2021-02-27T18:29:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bristol February 2021", + "date":"2021-02-26T21:16:46.641Z", + "location":{ + "title":"Bristol, England, UK", + "city":"Bristol", + "tzid":"Europe/London", + "latitude":51.45523, + "longitude":-2.59665, + "cc":"GB", + "country":"United Kingdom", + "admin1":"England", + "geo":"geoname", + "geonameid":2654675 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:22", + "date":"2021-02-26T17:22:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:32", + "date":"2021-02-27T18:32:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Cardiff February 2021", + "date":"2021-02-26T21:16:47.104Z", + "location":{ + "title":"Cardiff, Wales, UK", + "city":"Cardiff", + "tzid":"Europe/London", + "latitude":51.48, + "longitude":-3.18, + "cc":"GB", + "country":"United Kingdom", + "admin1":"Wales", + "geo":"geoname", + "geonameid":2653822 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:24", + "date":"2021-02-26T17:24:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:34", + "date":"2021-02-27T18:34:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Edinburgh February 2021", + "date":"2021-02-26T21:16:47.570Z", + "location":{ + "title":"Edinburgh, Scotland, UK", + "city":"Edinburgh", + "tzid":"Europe/London", + "latitude":55.95206, + "longitude":-3.19648, + "cc":"GB", + "country":"United Kingdom", + "admin1":"Scotland", + "geo":"geoname", + "geonameid":2650225 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:16", + "date":"2021-02-26T17:16:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:32", + "date":"2021-02-27T18:32:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Glasgow February 2021", + "date":"2021-02-26T21:16:48.033Z", + "location":{ + "title":"Glasgow, Scotland, UK", + "city":"Glasgow", + "tzid":"Europe/London", + "latitude":55.86515, + "longitude":-4.25763, + "cc":"GB", + "country":"United Kingdom", + "admin1":"Scotland", + "geo":"geoname", + "geonameid":2648579 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:20", + "date":"2021-02-26T17:20:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:37", + "date":"2021-02-27T18:37:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Leeds February 2021", + "date":"2021-02-26T21:16:48.487Z", + "location":{ + "title":"Leeds, England, UK", + "city":"Leeds", + "tzid":"Europe/London", + "latitude":53.79648, + "longitude":-1.54785, + "cc":"GB", + "country":"United Kingdom", + "admin1":"England", + "geo":"geoname", + "geonameid":2644688 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:14", + "date":"2021-02-26T17:14:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:27", + "date":"2021-02-27T18:27:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Liverpool February 2021", + "date":"2021-02-26T21:16:48.975Z", + "location":{ + "title":"Liverpool, England, UK", + "city":"Liverpool", + "tzid":"Europe/London", + "latitude":53.41058, + "longitude":-2.97794, + "cc":"GB", + "country":"United Kingdom", + "admin1":"England", + "geo":"geoname", + "geonameid":2644210 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:20", + "date":"2021-02-26T17:20:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:33", + "date":"2021-02-27T18:33:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal London February 2021", + "date":"2021-02-26T21:16:49.439Z", + "location":{ + "title":"London, England, UK", + "city":"London", + "tzid":"Europe/London", + "latitude":51.50853, + "longitude":-0.12574, + "cc":"GB", + "country":"United Kingdom", + "admin1":"England", + "geo":"geoname", + "geonameid":2643743 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:12", + "date":"2021-02-26T17:12:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:22", + "date":"2021-02-27T18:22:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Manchester February 2021", + "date":"2021-02-26T21:16:49.903Z", + "location":{ + "title":"Manchester, England, UK", + "city":"Manchester", + "tzid":"Europe/London", + "latitude":53.48095, + "longitude":-2.23743, + "cc":"GB", + "country":"United Kingdom", + "admin1":"England", + "geo":"geoname", + "geonameid":2643123 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:17", + "date":"2021-02-26T17:17:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:30", + "date":"2021-02-27T18:30:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Sheffield February 2021", + "date":"2021-02-26T21:16:50.368Z", + "location":{ + "title":"Sheffield, England, UK", + "city":"Sheffield", + "tzid":"Europe/London", + "latitude":53.38297, + "longitude":-1.4659, + "cc":"GB", + "country":"United Kingdom", + "admin1":"England", + "geo":"geoname", + "geonameid":2638077 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:14", + "date":"2021-02-26T17:14:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:27", + "date":"2021-02-27T18:27:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tbilisi February 2021", + "date":"2021-02-26T21:16:50.835Z", + "location":{ + "title":"Tbilisi, T'bilisi, Georgia", + "city":"Tbilisi", + "tzid":"Asia/Tbilisi", + "latitude":41.69411, + "longitude":44.83368, + "cc":"GE", + "country":"Georgia", + "admin1":"T'bilisi", + "geo":"geoname", + "geonameid":611717 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:25", + "date":"2021-02-26T18:25:00+04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:27", + "date":"2021-02-27T19:27:00+04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Accra February 2021", + "date":"2021-02-26T21:16:51.300Z", + "location":{ + "title":"Accra, Greater Accra, Ghana", + "city":"Accra", + "tzid":"Africa/Accra", + "latitude":5.55602, + "longitude":-0.1969, + "cc":"GH", + "country":"Ghana", + "admin1":"Greater Accra", + "geo":"geoname", + "geonameid":2306104 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:55", + "date":"2021-02-26T17:55:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:45", + "date":"2021-02-27T18:45:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kumasi February 2021", + "date":"2021-02-26T21:16:51.769Z", + "location":{ + "title":"Kumasi, Ashanti, Ghana", + "city":"Kumasi", + "tzid":"Africa/Accra", + "latitude":6.68848, + "longitude":-1.62443, + "cc":"GH", + "country":"Ghana", + "admin1":"Ashanti", + "geo":"geoname", + "geonameid":2298890 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:00", + "date":"2021-02-26T18:00:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:50", + "date":"2021-02-27T18:50:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Gibraltar February 2021", + "date":"2021-02-26T21:16:52.232Z", + "location":{ + "title":"Gibraltar, Gibraltar", + "city":"Gibraltar", + "tzid":"Europe/Gibraltar", + "latitude":36.14474, + "longitude":-5.35257, + "cc":"GI", + "country":"Gibraltar", + "geo":"geoname", + "geonameid":2411585 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:52", + "date":"2021-02-26T18:52:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:50", + "date":"2021-02-27T19:50:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nuuk February 2021", + "date":"2021-02-26T21:16:52.694Z", + "location":{ + "title":"Nuuk, Sermersooq, Greenland", + "city":"Nuuk", + "tzid":"America/Godthab", + "latitude":64.18347, + "longitude":-51.72157, + "cc":"GL", + "country":"Greenland", + "admin1":"Sermersooq", + "geo":"geoname", + "geonameid":3421319 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:09", + "date":"2021-02-26T17:09:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:43", + "date":"2021-02-27T18:43:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Banjul February 2021", + "date":"2021-02-26T21:16:53.193Z", + "location":{ + "title":"Banjul, Gambia", + "city":"Banjul", + "tzid":"Africa/Banjul", + "latitude":13.45274, + "longitude":-16.57803, + "cc":"GM", + "country":"Gambia", + "admin1":"Banjul", + "geo":"geoname", + "geonameid":2413876 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:55", + "date":"2021-02-26T18:55:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:46", + "date":"2021-02-27T19:46:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Camayenne February 2021", + "date":"2021-02-26T21:16:53.680Z", + "location":{ + "title":"Camayenne, Conakry, Guinea", + "city":"Camayenne", + "tzid":"Africa/Conakry", + "latitude":9.535, + "longitude":-13.68778, + "cc":"GN", + "country":"Guinea", + "admin1":"Conakry", + "geo":"geoname", + "geonameid":2422488 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:46", + "date":"2021-02-26T18:46:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:37", + "date":"2021-02-27T19:37:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Conakry February 2021", + "date":"2021-02-26T21:16:54.155Z", + "location":{ + "title":"Conakry, Guinea", + "city":"Conakry", + "tzid":"Africa/Conakry", + "latitude":9.53795, + "longitude":-13.67729, + "cc":"GN", + "country":"Guinea", + "admin1":"Conakry", + "geo":"geoname", + "geonameid":2422465 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:46", + "date":"2021-02-26T18:46:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:36", + "date":"2021-02-27T19:36:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Malabo February 2021", + "date":"2021-02-26T21:16:54.607Z", + "location":{ + "title":"Malabo, Bioko Norte, Equatorial Guinea", + "city":"Malabo", + "tzid":"Africa/Malabo", + "latitude":3.75578, + "longitude":8.78166, + "cc":"GQ", + "country":"Equatorial Guinea", + "admin1":"Bioko Norte", + "geo":"geoname", + "geonameid":2309527 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:21", + "date":"2021-02-26T18:21:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:10", + "date":"2021-02-27T19:10:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Athens February 2021", + "date":"2021-02-26T21:16:55.083Z", + "location":{ + "title":"Athens, Attica, Greece", + "city":"Athens", + "tzid":"Europe/Athens", + "latitude":37.98376, + "longitude":23.72784, + "cc":"GR", + "country":"Greece", + "admin1":"Attica", + "geo":"geoname", + "geonameid":264371 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:54pm", + "date":"2021-02-26T17:54:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:53pm", + "date":"2021-02-27T18:53:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Guatemala City February 2021", + "date":"2021-02-26T21:16:55.556Z", + "location":{ + "title":"Guatemala City, Guatemala, Guatemala", + "city":"Guatemala City", + "tzid":"America/Guatemala", + "latitude":14.64072, + "longitude":-90.51327, + "cc":"GT", + "country":"Guatemala", + "admin1":"Guatemala", + "geo":"geoname", + "geonameid":3598132 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:50", + "date":"2021-02-26T17:50:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:41", + "date":"2021-02-27T18:41:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bissau February 2021", + "date":"2021-02-26T21:16:56.005Z", + "location":{ + "title":"Bissau, Guinea-Bissau", + "city":"Bissau", + "tzid":"Africa/Bissau", + "latitude":11.86357, + "longitude":-15.59767, + "cc":"GW", + "country":"Guinea-Bissau", + "admin1":"Bissau", + "geo":"geoname", + "geonameid":2374775 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:53", + "date":"2021-02-26T18:53:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:43", + "date":"2021-02-27T19:43:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Georgetown February 2021", + "date":"2021-02-26T21:16:56.452Z", + "location":{ + "title":"Georgetown, Demerara-Mahaica, Guyana", + "city":"Georgetown", + "tzid":"America/Guyana", + "latitude":6.80448, + "longitude":-58.15527, + "cc":"GY", + "country":"Guyana", + "admin1":"Demerara-Mahaica", + "geo":"geoname", + "geonameid":3378644 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:46", + "date":"2021-02-26T17:46:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:36", + "date":"2021-02-27T18:36:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Hong Kong February 2021", + "date":"2021-02-26T21:16:56.909Z", + "location":{ + "title":"Hong Kong, Central and Western, Hong Kong", + "city":"Hong Kong", + "tzid":"Asia/Hong_Kong", + "latitude":22.27832, + "longitude":114.17469, + "cc":"HK", + "country":"Hong Kong", + "admin1":"Central and Western", + "geo":"geoname", + "geonameid":1819729 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:06", + "date":"2021-02-26T18:06:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:58", + "date":"2021-02-27T18:58:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tegucigalpa February 2021", + "date":"2021-02-26T21:16:57.678Z", + "location":{ + "title":"Tegucigalpa, Francisco Morazan, Honduras", + "city":"Tegucigalpa", + "tzid":"America/Tegucigalpa", + "latitude":14.0818, + "longitude":-87.20681, + "cc":"HN", + "country":"Honduras", + "admin1":"Francisco Morazan", + "geo":"geoname", + "geonameid":3600949 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:37", + "date":"2021-02-26T17:37:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:28", + "date":"2021-02-27T18:28:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Zagreb February 2021", + "date":"2021-02-26T21:16:58.170Z", + "location":{ + "title":"Zagreb, City of Zagreb, Croatia", + "city":"Zagreb", + "tzid":"Europe/Zagreb", + "latitude":45.81444, + "longitude":15.97798, + "cc":"HR", + "country":"Croatia", + "admin1":"City of Zagreb", + "geo":"geoname", + "geonameid":3186886 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:16", + "date":"2021-02-26T17:16:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:20", + "date":"2021-02-27T18:20:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "error":"Sorry, can't find geonameid: au", + "originalError":{ + "message":"Sorry, can't find geonameid: au" + } + }, + { + "title":"Hebcal Budapest February 2021", + "date":"2021-02-26T18:34:47.212Z", + "location":{ + "title":"Budapest, Hungary", + "city":"Budapest", + "tzid":"Europe/Budapest", + "latitude":47.49835, + "longitude":19.04045, + "cc":"HU", + "country":"Hungary", + "admin1":"Budapest", + "geo":"geoname", + "geonameid":3054643 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:01", + "date":"2021-02-26T17:01:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:07", + "date":"2021-02-27T18:07:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bandung February 2021", + "date":"2021-02-26T21:16:59.603Z", + "location":{ + "title":"Bandung, West Java, Indonesia", + "city":"Bandung", + "tzid":"Asia/Jakarta", + "latitude":-6.92222, + "longitude":107.60694, + "cc":"ID", + "country":"Indonesia", + "admin1":"West Java", + "geo":"geoname", + "geonameid":1650357 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:53", + "date":"2021-02-26T17:53:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:42", + "date":"2021-02-27T18:42:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bekasi February 2021", + "date":"2021-02-26T21:17:00.076Z", + "location":{ + "title":"Bekasi, West Java, Indonesia", + "city":"Bekasi", + "tzid":"Asia/Jakarta", + "latitude":-6.2349, + "longitude":106.9896, + "cc":"ID", + "country":"Indonesia", + "admin1":"West Java", + "geo":"geoname", + "geonameid":1649378 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:55", + "date":"2021-02-26T17:55:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:44", + "date":"2021-02-27T18:44:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Depok February 2021", + "date":"2021-02-26T21:17:00.581Z", + "location":{ + "title":"Depok, Yogyakarta, Indonesia", + "city":"Depok", + "tzid":"Asia/Jakarta", + "latitude":-7.7625, + "longitude":110.43167, + "cc":"ID", + "country":"Indonesia", + "admin1":"Yogyakarta", + "geo":"geoname", + "geonameid":1645518 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:42", + "date":"2021-02-26T17:42:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:31", + "date":"2021-02-27T18:31:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Jakarta February 2021", + "date":"2021-02-26T21:17:01.071Z", + "location":{ + "title":"Jakarta, Indonesia", + "city":"Jakarta", + "tzid":"Asia/Jakarta", + "latitude":-6.21462, + "longitude":106.84513, + "cc":"ID", + "country":"Indonesia", + "admin1":"Jakarta", + "geo":"geoname", + "geonameid":1642911 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:55", + "date":"2021-02-26T17:55:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:45", + "date":"2021-02-27T18:45:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Makassar February 2021", + "date":"2021-02-26T21:17:01.538Z", + "location":{ + "title":"Makassar, South Sulawesi, Indonesia", + "city":"Makassar", + "tzid":"Asia/Makassar", + "latitude":-5.14861, + "longitude":119.43194, + "cc":"ID", + "country":"Indonesia", + "admin1":"South Sulawesi", + "geo":"geoname", + "geonameid":1622786 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:04", + "date":"2021-02-26T18:04:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:53", + "date":"2021-02-27T18:53:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Medan February 2021", + "date":"2021-02-26T21:17:02.018Z", + "location":{ + "title":"Medan, North Sumatra, Indonesia", + "city":"Medan", + "tzid":"Asia/Jakarta", + "latitude":3.58333, + "longitude":98.66667, + "cc":"ID", + "country":"Indonesia", + "admin1":"North Sumatra", + "geo":"geoname", + "geonameid":1214520 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:21", + "date":"2021-02-26T18:21:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:11", + "date":"2021-02-27T19:11:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Palembang February 2021", + "date":"2021-02-26T21:17:02.501Z", + "location":{ + "title":"Palembang, South Sumatra, Indonesia", + "city":"Palembang", + "tzid":"Asia/Jakarta", + "latitude":-2.91673, + "longitude":104.7458, + "cc":"ID", + "country":"Indonesia", + "admin1":"South Sumatra", + "geo":"geoname", + "geonameid":1633070 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:01", + "date":"2021-02-26T18:01:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:51", + "date":"2021-02-27T18:51:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Semarang February 2021", + "date":"2021-02-26T21:17:02.967Z", + "location":{ + "title":"Semarang, Central Java, Indonesia", + "city":"Semarang", + "tzid":"Asia/Jakarta", + "latitude":-6.99306, + "longitude":110.42083, + "cc":"ID", + "country":"Indonesia", + "admin1":"Central Java", + "geo":"geoname", + "geonameid":1627896 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:41", + "date":"2021-02-26T17:41:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:31", + "date":"2021-02-27T18:31:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal South Tangerang February 2021", + "date":"2021-02-26T21:17:03.418Z", + "location":{ + "title":"South Tangerang, Banten, Indonesia", + "city":"South Tangerang", + "tzid":"Asia/Jakarta", + "latitude":-6.28862, + "longitude":106.71789, + "cc":"ID", + "country":"Indonesia", + "admin1":"Banten", + "geo":"geoname", + "geonameid":8581443 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:56", + "date":"2021-02-26T17:56:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:45", + "date":"2021-02-27T18:45:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Surabaya February 2021", + "date":"2021-02-26T21:17:03.902Z", + "location":{ + "title":"Surabaya, East Java, Indonesia", + "city":"Surabaya", + "tzid":"Asia/Jakarta", + "latitude":-7.24917, + "longitude":112.75083, + "cc":"ID", + "country":"Indonesia", + "admin1":"East Java", + "geo":"geoname", + "geonameid":1625822 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:32", + "date":"2021-02-26T17:32:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:22", + "date":"2021-02-27T18:22:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tangerang February 2021", + "date":"2021-02-26T21:17:04.375Z", + "location":{ + "title":"Tangerang, Banten, Indonesia", + "city":"Tangerang", + "tzid":"Asia/Jakarta", + "latitude":-6.17806, + "longitude":106.63, + "cc":"ID", + "country":"Indonesia", + "admin1":"Banten", + "geo":"geoname", + "geonameid":1625084 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:56", + "date":"2021-02-26T17:56:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:45", + "date":"2021-02-27T18:45:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Dublin February 2021", + "date":"2021-02-26T21:17:04.831Z", + "location":{ + "title":"Dublin, Leinster, Ireland", + "city":"Dublin", + "tzid":"Europe/Dublin", + "latitude":53.33306, + "longitude":-6.24889, + "cc":"IE", + "country":"Ireland", + "admin1":"Leinster", + "geo":"geoname", + "geonameid":2964574 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:33", + "date":"2021-02-26T17:33:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:46", + "date":"2021-02-27T18:46:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ashdod February 2021", + "date":"2021-02-26T21:17:05.297Z", + "location":{ + "title":"Ashdod, Israel", + "city":"Ashdod", + "tzid":"Asia/Jerusalem", + "latitude":31.79213, + "longitude":34.64966, + "cc":"IL", + "country":"Israel", + "admin1":"Southern District", + "geo":"geoname", + "geonameid":295629 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:16", + "date":"2021-02-26T17:16:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:12", + "date":"2021-02-27T18:12:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ashkelon February 2021", + "date":"2021-02-26T21:17:05.763Z", + "location":{ + "title":"Ashkelon, Israel", + "city":"Ashkelon", + "tzid":"Asia/Jerusalem", + "latitude":31.66926, + "longitude":34.57149, + "cc":"IL", + "country":"Israel", + "admin1":"Southern District", + "geo":"geoname", + "geonameid":295620 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:17", + "date":"2021-02-26T17:17:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:12", + "date":"2021-02-27T18:12:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bat Yam February 2021", + "date":"2021-02-26T21:17:06.221Z", + "location":{ + "title":"Bat Yam, Israel", + "city":"Bat Yam", + "tzid":"Asia/Jerusalem", + "latitude":32.02379, + "longitude":34.75185, + "cc":"IL", + "country":"Israel", + "admin1":"Tel Aviv", + "geo":"geoname", + "geonameid":295548 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:16", + "date":"2021-02-26T17:16:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Beersheba February 2021", + "date":"2021-02-26T21:17:06.682Z", + "location":{ + "title":"Beersheba, Israel", + "city":"Beersheba", + "tzid":"Asia/Jerusalem", + "latitude":31.25181, + "longitude":34.7913, + "cc":"IL", + "country":"Israel", + "admin1":"Southern District", + "geo":"geoname", + "geonameid":295530 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:16", + "date":"2021-02-26T17:16:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:12", + "date":"2021-02-27T18:12:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bet Shemesh February 2021", + "date":"2021-02-26T21:17:07.154Z", + "location":{ + "title":"Bet Shemesh, Israel", + "city":"Bet Shemesh", + "tzid":"Asia/Jerusalem", + "latitude":31.73072, + "longitude":34.99293, + "cc":"IL", + "country":"Israel", + "admin1":"Jerusalem", + "geo":"geoname", + "geonameid":295432 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bnei Brak February 2021", + "date":"2021-02-26T21:17:07.627Z", + "location":{ + "title":"Bnei Brak, Israel", + "city":"Bnei Brak", + "tzid":"Asia/Jerusalem", + "latitude":32.08074, + "longitude":34.8338, + "cc":"IL", + "country":"Israel", + "admin1":"Tel Aviv", + "geo":"geoname", + "geonameid":295514 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Eilat February 2021", + "date":"2021-02-26T21:17:08.109Z", + "location":{ + "title":"Eilat, Israel", + "city":"Eilat", + "tzid":"Asia/Jerusalem", + "latitude":29.55805, + "longitude":34.94821, + "cc":"IL", + "country":"Israel", + "admin1":"Southern District", + "geo":"geoname", + "geonameid":295277 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:17", + "date":"2021-02-26T17:17:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:12", + "date":"2021-02-27T18:12:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Hadera February 2021", + "date":"2021-02-26T21:17:08.570Z", + "location":{ + "title":"Hadera, Israel", + "city":"Hadera", + "tzid":"Asia/Jerusalem", + "latitude":32.44192, + "longitude":34.9039, + "cc":"IL", + "country":"Israel", + "admin1":"Haifa", + "geo":"geoname", + "geonameid":294946 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Haifa February 2021", + "date":"2021-02-26T21:17:09.055Z", + "location":{ + "title":"Haifa, Israel", + "city":"Haifa", + "tzid":"Asia/Jerusalem", + "latitude":32.81841, + "longitude":34.9885, + "cc":"IL", + "country":"Israel", + "admin1":"Haifa", + "geo":"geoname", + "geonameid":294801 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:14", + "date":"2021-02-26T17:14:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:10", + "date":"2021-02-27T18:10:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Herzliya February 2021", + "date":"2021-02-26T21:17:09.544Z", + "location":{ + "title":"Herzliya, Israel", + "city":"Herzliya", + "tzid":"Asia/Jerusalem", + "latitude":32.16627, + "longitude":34.82536, + "cc":"IL", + "country":"Israel", + "admin1":"Tel Aviv", + "geo":"geoname", + "geonameid":294778 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal H̱olon February 2021", + "date":"2021-02-26T21:17:10.045Z", + "location":{ + "title":"H̱olon, Israel", + "city":"H̱olon", + "tzid":"Asia/Jerusalem", + "latitude":32.01034, + "longitude":34.77918, + "cc":"IL", + "country":"Israel", + "admin1":"Tel Aviv", + "asciiname":"Holon", + "geo":"geoname", + "geonameid":294751 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Jerusalem February 2021", + "date":"2021-02-24T17:08:46.696Z", + "location":{ + "title":"Jerusalem, Israel", + "city":"Jerusalem", + "tzid":"Asia/Jerusalem", + "latitude":31.76904, + "longitude":35.21633, + "cc":"IL", + "country":"Israel", + "admin1":"Jerusalem", + "geo":"geoname", + "geonameid":281184 + }, + "items":[ + { + "title":"Fast begins", + "date":"2021-02-25T05:02:00+02:00", + "category":"zmanim", + "subcat":"fast", + "hebrew":"תחילת הצום", + "memo":"Ta'anit Esther" + }, + { + "title":"Ta'anit Esther", + "date":"2021-02-25", + "category":"holiday", + "subcat":"fast", + "hebrew":"תענית אסתר", + "leyning":{ + "1":"Exodus 32:11 - 32:14", + "2":"Exodus 34:1 - 34:3", + "3":"Exodus 34:4 - 34:10", + "torah":"Exodus 32:11-34:10" + }, + "link":"https://www.hebcal.com/holidays/taanit-esther-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Fast of Esther" + }, + { + "title":"Fast ends", + "date":"2021-02-25T18:01:00+02:00", + "category":"zmanim", + "subcat":"fast", + "hebrew":"סיום הצום", + "memo":"Ta'anit Esther" + }, + { + "title":"Erev Purim", + "date":"2021-02-25", + "category":"holiday", + "subcat":"major", + "hebrew":"ערב פורים", + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 16:52", + "date":"2021-02-26T16:52:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:10", + "date":"2021-02-27T18:10:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kfar Saba February 2021", + "date":"2021-02-26T21:17:11.008Z", + "location":{ + "title":"Kfar Saba, Israel", + "city":"Kfar Saba", + "tzid":"Asia/Jerusalem", + "latitude":32.175, + "longitude":34.90694, + "cc":"IL", + "country":"Israel", + "admin1":"Central District", + "geo":"geoname", + "geonameid":294514 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Lod February 2021", + "date":"2021-02-26T21:17:11.470Z", + "location":{ + "title":"Lod, Israel", + "city":"Lod", + "tzid":"Asia/Jerusalem", + "latitude":31.9467, + "longitude":34.8903, + "cc":"IL", + "country":"Israel", + "admin1":"Central District", + "geo":"geoname", + "geonameid":294421 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Modi‘in Makkabbim Re‘ut February 2021", + "date":"2021-02-26T21:17:11.931Z", + "location":{ + "title":"Modi‘in Makkabbim Re‘ut, Israel", + "city":"Modi‘in Makkabbim Re‘ut", + "tzid":"Asia/Jerusalem", + "latitude":31.89385, + "longitude":35.01504, + "cc":"IL", + "country":"Israel", + "admin1":"Central District", + "asciiname":"Modi'in Makkabbim Re'ut", + "geo":"geoname", + "geonameid":282926 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:10", + "date":"2021-02-27T18:10:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nazareth February 2021", + "date":"2021-02-26T21:17:12.417Z", + "location":{ + "title":"Nazareth, Israel", + "city":"Nazareth", + "tzid":"Asia/Jerusalem", + "latitude":32.70056, + "longitude":35.29722, + "cc":"IL", + "country":"Israel", + "admin1":"Northern District", + "geo":"geoname", + "geonameid":294098 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:13", + "date":"2021-02-26T17:13:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:09", + "date":"2021-02-27T18:09:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Netanya February 2021", + "date":"2021-02-26T21:17:12.877Z", + "location":{ + "title":"Netanya, Israel", + "city":"Netanya", + "tzid":"Asia/Jerusalem", + "latitude":32.33291, + "longitude":34.85992, + "cc":"IL", + "country":"Israel", + "admin1":"Central District", + "geo":"geoname", + "geonameid":294071 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Petaẖ Tiqwa February 2021", + "date":"2021-02-26T21:17:13.344Z", + "location":{ + "title":"Petaẖ Tiqwa, Israel", + "city":"Petaẖ Tiqwa", + "tzid":"Asia/Jerusalem", + "latitude":32.08707, + "longitude":34.88747, + "cc":"IL", + "country":"Israel", + "admin1":"Central District", + "asciiname":"Petah Tiqwa", + "geo":"geoname", + "geonameid":293918 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ra'anana February 2021", + "date":"2021-02-26T21:17:13.805Z", + "location":{ + "title":"Ra'anana, Israel", + "city":"Ra'anana", + "tzid":"Asia/Jerusalem", + "latitude":32.1836, + "longitude":34.87386, + "cc":"IL", + "country":"Israel", + "admin1":"Central District", + "geo":"geoname", + "geonameid":293807 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ramat Gan February 2021", + "date":"2021-02-26T21:17:14.287Z", + "location":{ + "title":"Ramat Gan, Israel", + "city":"Ramat Gan", + "tzid":"Asia/Jerusalem", + "latitude":32.08227, + "longitude":34.81065, + "cc":"IL", + "country":"Israel", + "admin1":"Tel Aviv", + "geo":"geoname", + "geonameid":293788 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ramla February 2021", + "date":"2021-02-26T21:17:14.754Z", + "location":{ + "title":"Ramla, Israel", + "city":"Ramla", + "tzid":"Asia/Jerusalem", + "latitude":31.92923, + "longitude":34.86563, + "cc":"IL", + "country":"Israel", + "admin1":"Central District", + "geo":"geoname", + "geonameid":293768 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Rishon LeẔiyyon February 2021", + "date":"2021-02-26T21:17:15.212Z", + "location":{ + "title":"Rishon LeẔiyyon, Israel", + "city":"Rishon LeẔiyyon", + "tzid":"Asia/Jerusalem", + "latitude":31.97102, + "longitude":34.78939, + "cc":"IL", + "country":"Israel", + "admin1":"Central District", + "asciiname":"Rishon LeZiyyon", + "geo":"geoname", + "geonameid":293703 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tel Aviv February 2021", + "date":"2021-02-24T23:03:04.280Z", + "location":{ + "title":"Tel Aviv, Israel", + "city":"Tel Aviv", + "tzid":"Asia/Jerusalem", + "latitude":32.08088, + "longitude":34.78057, + "cc":"IL", + "country":"Israel", + "admin1":"Tel Aviv", + "geo":"geoname", + "geonameid":293397 + }, + "items":[ + { + "title":"Fast begins", + "date":"2021-02-25T05:03:00+02:00", + "category":"zmanim", + "subcat":"fast", + "hebrew":"תחילת הצום", + "memo":"Ta'anit Esther" + }, + { + "title":"Ta'anit Esther", + "date":"2021-02-25", + "category":"holiday", + "subcat":"fast", + "hebrew":"תענית אסתר", + "leyning":{ + "1":"Exodus 32:11 - 32:14", + "2":"Exodus 34:1 - 34:3", + "3":"Exodus 34:4 - 34:10", + "torah":"Exodus 32:11-34:10" + }, + "link":"https://www.hebcal.com/holidays/taanit-esther-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Fast of Esther" + }, + { + "title":"Fast ends", + "date":"2021-02-25T18:03:00+02:00", + "category":"zmanim", + "subcat":"fast", + "hebrew":"סיום הצום", + "memo":"Ta'anit Esther" + }, + { + "title":"Erev Purim", + "date":"2021-02-25", + "category":"holiday", + "subcat":"major", + "hebrew":"ערב פורים", + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:15", + "date":"2021-02-26T17:15:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:11", + "date":"2021-02-27T18:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tiberias February 2021", + "date":"2021-02-26T21:17:16.118Z", + "location":{ + "title":"Tiberias, Israel", + "city":"Tiberias", + "tzid":"Asia/Jerusalem", + "latitude":32.79221, + "longitude":35.53124, + "cc":"IL", + "country":"Israel", + "admin1":"Northern District", + "geo":"geoname", + "geonameid":293322 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:12", + "date":"2021-02-26T17:12:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10" + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:08", + "date":"2021-02-27T18:08:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Douglas February 2021", + "date":"2021-02-26T21:17:16.600Z", + "location":{ + "title":"Douglas, Isle of Man", + "city":"Douglas", + "tzid":"Europe/Isle_of_Man", + "latitude":54.15, + "longitude":-4.48333, + "cc":"IM", + "country":"Isle of Man", + "admin1":"Douglas", + "geo":"geoname", + "geonameid":3042237 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:25", + "date":"2021-02-26T17:25:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:38", + "date":"2021-02-27T18:38:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ahmedabad February 2021", + "date":"2021-02-26T21:17:17.065Z", + "location":{ + "title":"Ahmedabad, Gujarat, India", + "city":"Ahmedabad", + "tzid":"Asia/Kolkata", + "latitude":23.02579, + "longitude":72.58727, + "cc":"IN", + "country":"India", + "admin1":"Gujarat", + "geo":"geoname", + "geonameid":1279233 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:22pm", + "date":"2021-02-26T18:22:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:14pm", + "date":"2021-02-27T19:14:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bengaluru February 2021", + "date":"2021-02-26T21:17:17.523Z", + "location":{ + "title":"Bengaluru, Karnataka, India", + "city":"Bengaluru", + "tzid":"Asia/Kolkata", + "latitude":12.97194, + "longitude":77.59369, + "cc":"IN", + "country":"India", + "admin1":"Karnataka", + "geo":"geoname", + "geonameid":1277333 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:09pm", + "date":"2021-02-26T18:09:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:59pm", + "date":"2021-02-27T18:59:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Mumbai February 2021", + "date":"2021-02-26T21:17:17.996Z", + "location":{ + "title":"Mumbai, Maharashtra, India", + "city":"Mumbai", + "tzid":"Asia/Kolkata", + "latitude":19.07283, + "longitude":72.88261, + "cc":"IN", + "country":"India", + "admin1":"Maharashtra", + "geo":"geoname", + "geonameid":1275339 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:23pm", + "date":"2021-02-26T18:23:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:15pm", + "date":"2021-02-27T19:15:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kolkata February 2021", + "date":"2021-02-26T21:17:18.469Z", + "location":{ + "title":"Kolkata, West Bengal, India", + "city":"Kolkata", + "tzid":"Asia/Kolkata", + "latitude":22.56263, + "longitude":88.36304, + "cc":"IN", + "country":"India", + "admin1":"West Bengal", + "geo":"geoname", + "geonameid":1275004 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:19pm", + "date":"2021-02-26T17:19:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:11pm", + "date":"2021-02-27T18:11:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Chennai February 2021", + "date":"2021-02-26T21:17:18.941Z", + "location":{ + "title":"Chennai, Tamil Nadu, India", + "city":"Chennai", + "tzid":"Asia/Kolkata", + "latitude":13.08784, + "longitude":80.27847, + "cc":"IN", + "country":"India", + "admin1":"Tamil Nadu", + "geo":"geoname", + "geonameid":1264527 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:58pm", + "date":"2021-02-26T17:58:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:49pm", + "date":"2021-02-27T18:49:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Cochin February 2021", + "date":"2021-02-26T21:17:19.396Z", + "location":{ + "title":"Cochin, Kerala, India", + "city":"Cochin", + "tzid":"Asia/Kolkata", + "latitude":9.93988, + "longitude":76.26022, + "cc":"IN", + "country":"India", + "admin1":"Kerala", + "geo":"geoname", + "geonameid":1273874 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:16pm", + "date":"2021-02-26T18:16:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:06pm", + "date":"2021-02-27T19:06:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Hyderabad February 2021", + "date":"2021-02-26T21:17:19.866Z", + "location":{ + "title":"Hyderabad, Telangana, India", + "city":"Hyderabad", + "tzid":"Asia/Kolkata", + "latitude":17.38405, + "longitude":78.45636, + "cc":"IN", + "country":"India", + "admin1":"Telangana", + "geo":"geoname", + "geonameid":1269843 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:02pm", + "date":"2021-02-26T18:02:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:54pm", + "date":"2021-02-27T18:54:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Jaipur February 2021", + "date":"2021-02-26T21:17:20.326Z", + "location":{ + "title":"Jaipur, Rajasthan, India", + "city":"Jaipur", + "tzid":"Asia/Kolkata", + "latitude":26.91962, + "longitude":75.78781, + "cc":"IN", + "country":"India", + "admin1":"Rajasthan", + "geo":"geoname", + "geonameid":1269515 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:06pm", + "date":"2021-02-26T18:06:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:00pm", + "date":"2021-02-27T19:00:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kanpur February 2021", + "date":"2021-02-26T21:17:20.786Z", + "location":{ + "title":"Kanpur, Uttar Pradesh, India", + "city":"Kanpur", + "tzid":"Asia/Kolkata", + "latitude":26.46523, + "longitude":80.34975, + "cc":"IN", + "country":"India", + "admin1":"Uttar Pradesh", + "geo":"geoname", + "geonameid":1267995 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:48pm", + "date":"2021-02-26T17:48:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:42pm", + "date":"2021-02-27T18:42:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal New Delhi February 2021", + "date":"2021-02-26T21:17:21.252Z", + "location":{ + "title":"New Delhi, Delhi, India", + "city":"New Delhi", + "tzid":"Asia/Kolkata", + "latitude":28.63576, + "longitude":77.22445, + "cc":"IN", + "country":"India", + "admin1":"Delhi", + "geo":"geoname", + "geonameid":1261481 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:59pm", + "date":"2021-02-26T17:59:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:53pm", + "date":"2021-02-27T18:53:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Pune February 2021", + "date":"2021-02-26T21:25:41.788Z", + "location":{ + "title":"Pune, Maharashtra, India", + "city":"Pune", + "tzid":"Asia/Kolkata", + "latitude":18.51957, + "longitude":73.85535, + "cc":"IN", + "country":"India", + "admin1":"Maharashtra", + "geo":"geoname", + "geonameid":1259229 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:20pm", + "date":"2021-02-26T18:20:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:11pm", + "date":"2021-02-27T19:11:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Surat February 2021", + "date":"2021-02-26T21:25:42.257Z", + "location":{ + "title":"Surat, Gujarat, India", + "city":"Surat", + "tzid":"Asia/Kolkata", + "latitude":21.19594, + "longitude":72.83023, + "cc":"IN", + "country":"India", + "admin1":"Gujarat", + "geo":"geoname", + "geonameid":1255364 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:22pm", + "date":"2021-02-26T18:22:00+05:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:14pm", + "date":"2021-02-27T19:14:00+05:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Baghdad February 2021", + "date":"2021-02-26T21:25:42.714Z", + "location":{ + "title":"Baghdad, Iraq", + "city":"Baghdad", + "tzid":"Asia/Baghdad", + "latitude":33.34058, + "longitude":44.40088, + "cc":"IQ", + "country":"Iraq", + "admin1":"Baghdad", + "geo":"geoname", + "geonameid":98182 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:36", + "date":"2021-02-26T17:36:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:32", + "date":"2021-02-27T18:32:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tehran February 2021", + "date":"2021-02-26T21:25:43.164Z", + "location":{ + "title":"Tehran, Iran", + "city":"Tehran", + "tzid":"Asia/Tehran", + "latitude":35.69439, + "longitude":51.42151, + "cc":"IR", + "country":"Iran", + "admin1":"Tehran", + "geo":"geoname", + "geonameid":112931 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:35", + "date":"2021-02-26T17:35:00+03:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:33", + "date":"2021-02-27T18:33:00+03:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Reykjavík February 2021", + "date":"2021-02-26T21:25:43.625Z", + "location":{ + "title":"Reykjavík, Capital Region, Iceland", + "city":"Reykjavík", + "tzid":"Atlantic/Reykjavik", + "latitude":64.13548, + "longitude":-21.89541, + "cc":"IS", + "country":"Iceland", + "admin1":"Capital Region", + "asciiname":"Reykjavik", + "geo":"geoname", + "geonameid":3413829 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:09", + "date":"2021-02-26T18:09:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:43", + "date":"2021-02-27T19:43:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Milan February 2021", + "date":"2021-02-26T21:25:44.084Z", + "location":{ + "title":"Milan, Lombardy, Italy", + "city":"Milan", + "tzid":"Europe/Rome", + "latitude":45.46427, + "longitude":9.18951, + "cc":"IT", + "country":"Italy", + "admin1":"Lombardy", + "geo":"geoname", + "geonameid":3173435 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:43", + "date":"2021-02-26T17:43:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:48", + "date":"2021-02-27T18:48:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Rome February 2021", + "date":"2021-02-26T21:25:44.547Z", + "location":{ + "title":"Rome, Latium, Italy", + "city":"Rome", + "tzid":"Europe/Rome", + "latitude":41.89193, + "longitude":12.51133, + "cc":"IT", + "country":"Italy", + "admin1":"Latium", + "geo":"geoname", + "geonameid":3169070 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:35", + "date":"2021-02-26T17:35:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:36", + "date":"2021-02-27T18:36:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kingston February 2021", + "date":"2021-02-26T21:25:45.001Z", + "location":{ + "title":"Kingston, Jamaica", + "city":"Kingston", + "tzid":"America/Jamaica", + "latitude":17.99702, + "longitude":-76.79358, + "cc":"JM", + "country":"Jamaica", + "admin1":"Kingston", + "geo":"geoname", + "geonameid":3489854 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:53", + "date":"2021-02-26T17:53:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:44", + "date":"2021-02-27T18:44:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Amman February 2021", + "date":"2021-02-26T21:25:45.446Z", + "location":{ + "title":"Amman, Jordan", + "city":"Amman", + "tzid":"Asia/Amman", + "latitude":31.95522, + "longitude":35.94503, + "cc":"JO", + "country":"Jordan", + "admin1":"Amman", + "geo":"geoname", + "geonameid":250441 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:11", + "date":"2021-02-26T17:11:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:07", + "date":"2021-02-27T18:07:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "error":"Sorry, can't find geonameid: shi", + "originalError":{ + "message":"Sorry, can't find geonameid: shi" + } + }, + { + "title":"Hebcal Kyoto February 2021", + "date":"2021-02-26T21:25:46.392Z", + "location":{ + "title":"Kyoto, Japan", + "city":"Kyoto", + "tzid":"Asia/Tokyo", + "latitude":35.02107, + "longitude":135.75385, + "cc":"JP", + "country":"Japan", + "admin1":"Kyoto", + "geo":"geoname", + "geonameid":1857910 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:28", + "date":"2021-02-26T17:28:00+09:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:26", + "date":"2021-02-27T18:26:00+09:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "error":"Sorry, can't find geonameid: shi", + "originalError":{ + "message":"Sorry, can't find geonameid: shi" + } + }, + { + "error":"Sorry, can't find geonameid: shi", + "originalError":{ + "message":"Sorry, can't find geonameid: shi" + } + }, + { + "title":"Hebcal Sapporo February 2021", + "date":"2021-02-26T21:25:47.758Z", + "location":{ + "title":"Sapporo, Hokkaido, Japan", + "city":"Sapporo", + "tzid":"Asia/Tokyo", + "latitude":43.06667, + "longitude":141.35, + "cc":"JP", + "country":"Japan", + "admin1":"Hokkaido", + "geo":"geoname", + "geonameid":2128295 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 16:57", + "date":"2021-02-26T16:57:00+09:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:00", + "date":"2021-02-27T18:00:00+09:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tokyo February 2021", + "date":"2021-02-26T21:25:48.232Z", + "location":{ + "title":"Tokyo, Japan", + "city":"Tokyo", + "tzid":"Asia/Tokyo", + "latitude":35.6895, + "longitude":139.69171, + "cc":"JP", + "country":"Japan", + "admin1":"Tokyo", + "geo":"geoname", + "geonameid":1850147 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:12", + "date":"2021-02-26T17:12:00+09:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:10", + "date":"2021-02-27T18:10:00+09:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nairobi February 2021", + "date":"2021-02-26T21:25:48.693Z", + "location":{ + "title":"Nairobi, Kenya", + "city":"Nairobi", + "tzid":"Africa/Nairobi", + "latitude":-1.28333, + "longitude":36.81667, + "cc":"KE", + "country":"Kenya", + "admin1":"Nairobi Area", + "geo":"geoname", + "geonameid":184745 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:32", + "date":"2021-02-26T18:32:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:21", + "date":"2021-02-27T19:21:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bishkek February 2021", + "date":"2021-02-26T21:25:49.153Z", + "location":{ + "title":"Bishkek, Kyrgyzstan", + "city":"Bishkek", + "tzid":"Asia/Bishkek", + "latitude":42.87, + "longitude":74.59, + "cc":"KG", + "country":"Kyrgyzstan", + "admin1":"Bishkek", + "geo":"geoname", + "geonameid":1528675 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:25", + "date":"2021-02-26T18:25:00+06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:27", + "date":"2021-02-27T19:27:00+06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Phnom Penh February 2021", + "date":"2021-02-26T21:25:49.611Z", + "location":{ + "title":"Phnom Penh, Cambodia", + "city":"Phnom Penh", + "tzid":"Asia/Phnom_Penh", + "latitude":11.56245, + "longitude":104.91601, + "cc":"KH", + "country":"Cambodia", + "admin1":"Phnom Penh", + "geo":"geoname", + "geonameid":1821306 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:51", + "date":"2021-02-26T17:51:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:41", + "date":"2021-02-27T18:41:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Moroni February 2021", + "date":"2021-02-26T21:25:50.089Z", + "location":{ + "title":"Moroni, Grande Comore, Comoros", + "city":"Moroni", + "tzid":"Indian/Comoro", + "latitude":-11.70216, + "longitude":43.25506, + "cc":"KM", + "country":"Comoros", + "admin1":"Grande Comore", + "geo":"geoname", + "geonameid":921772 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:13", + "date":"2021-02-26T18:13:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:03", + "date":"2021-02-27T19:03:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Basseterre February 2021", + "date":"2021-02-26T21:25:50.573Z", + "location":{ + "title":"Basseterre, Saint George Basseterre, Saint Kitts and Nevis", + "city":"Basseterre", + "tzid":"America/St_Kitts", + "latitude":17.2955, + "longitude":-62.72499, + "cc":"KN", + "country":"Saint Kitts and Nevis", + "admin1":"Saint George Basseterre", + "geo":"geoname", + "geonameid":3575551 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:57", + "date":"2021-02-26T17:57:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:49", + "date":"2021-02-27T18:49:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Pyongyang February 2021", + "date":"2021-02-26T21:25:51.033Z", + "location":{ + "title":"Pyongyang, North Korea", + "city":"Pyongyang", + "tzid":"Asia/Pyongyang", + "latitude":39.03385, + "longitude":125.75432, + "cc":"KP", + "country":"North Korea", + "admin1":"Pyongyang", + "geo":"geoname", + "geonameid":1871859 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:04", + "date":"2021-02-26T18:04:00+09:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:04", + "date":"2021-02-27T19:04:00+09:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Busan February 2021", + "date":"2021-02-26T21:25:51.486Z", + "location":{ + "title":"Busan, South Korea", + "city":"Busan", + "tzid":"Asia/Seoul", + "latitude":35.10168, + "longitude":129.03004, + "cc":"KR", + "country":"South Korea", + "admin1":"Busan", + "geo":"geoname", + "geonameid":1838524 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:55pm", + "date":"2021-02-26T17:55:00+09:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:53pm", + "date":"2021-02-27T18:53:00+09:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Seoul February 2021", + "date":"2021-02-26T21:25:51.941Z", + "location":{ + "title":"Seoul, South Korea", + "city":"Seoul", + "tzid":"Asia/Seoul", + "latitude":37.566, + "longitude":126.9784, + "cc":"KR", + "country":"South Korea", + "admin1":"Seoul", + "geo":"geoname", + "geonameid":1835848 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:01pm", + "date":"2021-02-26T18:01:00+09:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:00pm", + "date":"2021-02-27T19:00:00+09:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kuwait City February 2021", + "date":"2021-02-26T21:25:52.395Z", + "location":{ + "title":"Kuwait City, Al Asimah, Kuwait", + "city":"Kuwait City", + "tzid":"Asia/Kuwait", + "latitude":29.36972, + "longitude":47.97833, + "cc":"KW", + "country":"Kuwait", + "admin1":"Al Asimah", + "geo":"geoname", + "geonameid":285787 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:25", + "date":"2021-02-26T17:25:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:20", + "date":"2021-02-27T18:20:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal George Town February 2021", + "date":"2021-02-26T21:25:52.869Z", + "location":{ + "title":"George Town, Cayman Islands", + "city":"George Town", + "tzid":"America/Cayman", + "latitude":19.2866, + "longitude":-81.37436, + "cc":"KY", + "country":"Cayman Islands", + "admin1":"George Town", + "geo":"geoname", + "geonameid":3580661 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:10", + "date":"2021-02-26T18:10:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:02", + "date":"2021-02-27T19:02:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Almaty February 2021", + "date":"2021-02-26T21:25:53.334Z", + "location":{ + "title":"Almaty, Kazakhstan", + "city":"Almaty", + "tzid":"Asia/Almaty", + "latitude":43.25667, + "longitude":76.92861, + "cc":"KZ", + "country":"Kazakhstan", + "admin1":"Almaty", + "geo":"geoname", + "geonameid":1526384 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:15", + "date":"2021-02-26T18:15:00+06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:17", + "date":"2021-02-27T19:17:00+06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nur-Sultan February 2021", + "date":"2021-02-26T21:25:53.796Z", + "location":{ + "title":"Nur-Sultan, Kazakhstan", + "city":"Nur-Sultan", + "tzid":"Asia/Almaty", + "latitude":51.1801, + "longitude":71.44598, + "cc":"KZ", + "country":"Kazakhstan", + "admin1":"Nur-Sultan", + "geo":"geoname", + "geonameid":1526273 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:26", + "date":"2021-02-26T18:26:00+06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:36", + "date":"2021-02-27T19:36:00+06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Vientiane February 2021", + "date":"2021-02-26T21:25:54.283Z", + "location":{ + "title":"Vientiane, Laos", + "city":"Vientiane", + "tzid":"Asia/Vientiane", + "latitude":17.96667, + "longitude":102.6, + "cc":"LA", + "country":"Laos", + "admin1":"Vientiane Prefecture", + "geo":"geoname", + "geonameid":1651944 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:55", + "date":"2021-02-26T17:55:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:47", + "date":"2021-02-27T18:47:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Beirut February 2021", + "date":"2021-02-26T21:25:54.769Z", + "location":{ + "title":"Beirut, Beyrouth, Lebanon", + "city":"Beirut", + "tzid":"Asia/Beirut", + "latitude":33.89332, + "longitude":35.50157, + "cc":"LB", + "country":"Lebanon", + "admin1":"Beyrouth", + "geo":"geoname", + "geonameid":276781 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:11", + "date":"2021-02-26T17:11:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:08", + "date":"2021-02-27T18:08:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Castries February 2021", + "date":"2021-02-26T21:25:55.221Z", + "location":{ + "title":"Castries, Saint Lucia", + "city":"Castries", + "tzid":"America/St_Lucia", + "latitude":13.9957, + "longitude":-61.00614, + "cc":"LC", + "country":"Saint Lucia", + "admin1":"Castries", + "geo":"geoname", + "geonameid":3576812 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:53", + "date":"2021-02-26T17:53:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:43", + "date":"2021-02-27T18:43:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Vaduz February 2021", + "date":"2021-02-26T21:25:55.679Z", + "location":{ + "title":"Vaduz, Liechtenstein", + "city":"Vaduz", + "tzid":"Europe/Vaduz", + "latitude":47.14151, + "longitude":9.52154, + "cc":"LI", + "country":"Liechtenstein", + "admin1":"Vaduz", + "geo":"geoname", + "geonameid":3042030 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:40", + "date":"2021-02-26T17:40:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:46", + "date":"2021-02-27T18:46:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Monrovia February 2021", + "date":"2021-02-26T21:25:56.138Z", + "location":{ + "title":"Monrovia, Montserrado, Liberia", + "city":"Monrovia", + "tzid":"Africa/Monrovia", + "latitude":6.30054, + "longitude":-10.7969, + "cc":"LR", + "country":"Liberia", + "admin1":"Montserrado", + "geo":"geoname", + "geonameid":2274895 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:37", + "date":"2021-02-26T18:37:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:27", + "date":"2021-02-27T19:27:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Maseru February 2021", + "date":"2021-02-26T21:25:56.599Z", + "location":{ + "title":"Maseru, Lesotho", + "city":"Maseru", + "tzid":"Africa/Maseru", + "latitude":-29.31667, + "longitude":27.48333, + "cc":"LS", + "country":"Lesotho", + "admin1":"Maseru", + "geo":"geoname", + "geonameid":932505 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:30", + "date":"2021-02-26T18:30:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:24", + "date":"2021-02-27T19:24:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Vilnius February 2021", + "date":"2021-02-26T21:25:57.050Z", + "location":{ + "title":"Vilnius, Lithuania", + "city":"Vilnius", + "tzid":"Europe/Vilnius", + "latitude":54.68916, + "longitude":25.2798, + "cc":"LT", + "country":"Lithuania", + "admin1":"Vilnius", + "geo":"geoname", + "geonameid":593116 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:24", + "date":"2021-02-26T17:24:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:39", + "date":"2021-02-27T18:39:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Luxembourg February 2021", + "date":"2021-02-26T21:25:57.501Z", + "location":{ + "title":"Luxembourg, Luxembourg", + "city":"Luxembourg", + "tzid":"Europe/Luxembourg", + "latitude":49.61167, + "longitude":6.13, + "cc":"LU", + "country":"Luxembourg", + "admin1":"Luxembourg", + "geo":"geoname", + "geonameid":2960316 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:50", + "date":"2021-02-26T17:50:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:58", + "date":"2021-02-27T18:58:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Riga February 2021", + "date":"2021-02-26T21:25:57.967Z", + "location":{ + "title":"Riga, Latvia", + "city":"Riga", + "tzid":"Europe/Riga", + "latitude":56.946, + "longitude":24.10589, + "cc":"LV", + "country":"Latvia", + "admin1":"Riga", + "geo":"geoname", + "geonameid":456172 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:25", + "date":"2021-02-26T17:25:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:43", + "date":"2021-02-27T18:43:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tripoli February 2021", + "date":"2021-02-26T21:25:58.414Z", + "location":{ + "title":"Tripoli, Libya", + "city":"Tripoli", + "tzid":"Africa/Tripoli", + "latitude":32.88743, + "longitude":13.18733, + "cc":"LY", + "country":"Libya", + "admin1":"Tripoli", + "geo":"geoname", + "geonameid":2210247 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:41", + "date":"2021-02-26T18:41:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:37", + "date":"2021-02-27T19:37:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Casablanca February 2021", + "date":"2021-02-26T21:25:58.908Z", + "location":{ + "title":"Casablanca, Morocco", + "city":"Casablanca", + "tzid":"Africa/Casablanca", + "latitude":33.58831, + "longitude":-7.61138, + "cc":"MA", + "country":"Morocco", + "admin1":"Casablanca-Settat", + "geo":"geoname", + "geonameid":2553604 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:04", + "date":"2021-02-26T19:04:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 20:00", + "date":"2021-02-27T20:00:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Rabat February 2021", + "date":"2021-02-26T21:25:59.371Z", + "location":{ + "title":"Rabat, Morocco", + "city":"Rabat", + "tzid":"Africa/Casablanca", + "latitude":34.01325, + "longitude":-6.83255, + "cc":"MA", + "country":"Morocco", + "admin1":"Rabat-Sale-Kenitra", + "geo":"geoname", + "geonameid":2538475 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:00", + "date":"2021-02-26T19:00:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:57", + "date":"2021-02-27T19:57:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Chisinau February 2021", + "date":"2021-02-26T21:25:59.826Z", + "location":{ + "title":"Chisinau, Moldova", + "city":"Chisinau", + "tzid":"Europe/Chisinau", + "latitude":47.00556, + "longitude":28.8575, + "cc":"MD", + "country":"Moldova", + "admin1":"Chisinau Municipality", + "geo":"geoname", + "geonameid":618426 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:23", + "date":"2021-02-26T17:23:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:28", + "date":"2021-02-27T18:28:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Podgorica February 2021", + "date":"2021-02-26T21:26:00.283Z", + "location":{ + "title":"Podgorica, Montenegro", + "city":"Podgorica", + "tzid":"Europe/Podgorica", + "latitude":42.44111, + "longitude":19.26361, + "cc":"ME", + "country":"Montenegro", + "admin1":"Podgorica", + "geo":"geoname", + "geonameid":3193044 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:07", + "date":"2021-02-26T17:07:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:09", + "date":"2021-02-27T18:09:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Antananarivo February 2021", + "date":"2021-02-26T21:26:00.751Z", + "location":{ + "title":"Antananarivo, Analamanga, Madagascar", + "city":"Antananarivo", + "tzid":"Indian/Antananarivo", + "latitude":-18.91368, + "longitude":47.53613, + "cc":"MG", + "country":"Madagascar", + "admin1":"Analamanga", + "geo":"geoname", + "geonameid":1070940 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:02", + "date":"2021-02-26T18:02:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:52", + "date":"2021-02-27T18:52:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Skopje February 2021", + "date":"2021-02-26T21:26:01.209Z", + "location":{ + "title":"Skopje, Grad Skopje, North Macedonia", + "city":"Skopje", + "tzid":"Europe/Skopje", + "latitude":41.99646, + "longitude":21.43141, + "cc":"MK", + "country":"Macedonia", + "admin1":"Grad Skopje", + "geo":"geoname", + "geonameid":785842 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 16:59", + "date":"2021-02-26T16:59:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:00", + "date":"2021-02-27T18:00:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bamako February 2021", + "date":"2021-02-26T21:26:01.673Z", + "location":{ + "title":"Bamako, Mali", + "city":"Bamako", + "tzid":"Africa/Bamako", + "latitude":12.65, + "longitude":-8, + "cc":"ML", + "country":"Mali", + "admin1":"Bamako", + "geo":"geoname", + "geonameid":2460596 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:22", + "date":"2021-02-26T18:22:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:12", + "date":"2021-02-27T19:12:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Mandalay February 2021", + "date":"2021-02-26T21:26:02.141Z", + "location":{ + "title":"Mandalay, Myanmar", + "city":"Mandalay", + "tzid":"Asia/Yangon", + "latitude":21.97473, + "longitude":96.08359, + "cc":"MM", + "country":"Myanmar", + "admin1":"Mandalay", + "geo":"geoname", + "geonameid":1311874 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:48", + "date":"2021-02-26T17:48:00+06:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:41", + "date":"2021-02-27T18:41:00+06:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Yangon February 2021", + "date":"2021-02-26T21:26:02.606Z", + "location":{ + "title":"Yangon, Rangoon, Myanmar", + "city":"Yangon", + "tzid":"Asia/Yangon", + "latitude":16.80528, + "longitude":96.15611, + "cc":"MM", + "country":"Myanmar", + "admin1":"Rangoon", + "geo":"geoname", + "geonameid":1298824 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:52", + "date":"2021-02-26T17:52:00+06:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:43", + "date":"2021-02-27T18:43:00+06:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ulan Bator February 2021", + "date":"2021-02-26T21:26:03.062Z", + "location":{ + "title":"Ulan Bator, Ulaanbaatar, Mongolia", + "city":"Ulan Bator", + "tzid":"Asia/Ulaanbaatar", + "latitude":47.90771, + "longitude":106.88324, + "cc":"MN", + "country":"Mongolia", + "admin1":"Ulaanbaatar", + "geo":"geoname", + "geonameid":2028462 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:09", + "date":"2021-02-26T18:09:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:15", + "date":"2021-02-27T19:15:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Saipan February 2021", + "date":"2021-02-26T21:26:03.531Z", + "location":{ + "title":"Saipan, Northern Mariana Islands", + "city":"Saipan", + "tzid":"Pacific/Saipan", + "latitude":15.21233, + "longitude":145.7545, + "cc":"MP", + "country":"Northern Mariana Islands", + "admin1":"Saipan", + "geo":"geoname", + "geonameid":7828758 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:05", + "date":"2021-02-26T18:05:00+10:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:56", + "date":"2021-02-27T18:56:00+10:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nouakchott February 2021", + "date":"2021-02-26T21:26:04.068Z", + "location":{ + "title":"Nouakchott, Mauritania", + "city":"Nouakchott", + "tzid":"Africa/Nouakchott", + "latitude":18.08581, + "longitude":-15.9785, + "cc":"MR", + "country":"Mauritania", + "geo":"geoname", + "geonameid":2377450 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:50", + "date":"2021-02-26T18:50:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:41", + "date":"2021-02-27T19:41:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Plymouth February 2021", + "date":"2021-02-26T21:26:04.572Z", + "location":{ + "title":"Plymouth, Saint Anthony, Montserrat", + "city":"Plymouth", + "tzid":"America/Montserrat", + "latitude":16.70555, + "longitude":-62.21292, + "cc":"MS", + "country":"Montserrat", + "admin1":"Saint Anthony", + "geo":"geoname", + "geonameid":3578069 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:56", + "date":"2021-02-26T17:56:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:47", + "date":"2021-02-27T18:47:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Valletta February 2021", + "date":"2021-02-26T21:26:05.068Z", + "location":{ + "title":"Valletta, Malta", + "city":"Valletta", + "tzid":"Europe/Malta", + "latitude":35.89968, + "longitude":14.5148, + "cc":"MT", + "country":"Malta", + "admin1":"Valletta", + "geo":"geoname", + "geonameid":2562305 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:33", + "date":"2021-02-26T17:33:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:31", + "date":"2021-02-27T18:31:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Port Louis February 2021", + "date":"2021-02-26T21:26:05.568Z", + "location":{ + "title":"Port Louis, Mauritius", + "city":"Port Louis", + "tzid":"Indian/Mauritius", + "latitude":-20.16194, + "longitude":57.49889, + "cc":"MU", + "country":"Mauritius", + "admin1":"Port Louis", + "geo":"geoname", + "geonameid":934154 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:23", + "date":"2021-02-26T18:23:00+04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:14", + "date":"2021-02-27T19:14:00+04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Lilongwe February 2021", + "date":"2021-02-26T21:26:06.050Z", + "location":{ + "title":"Lilongwe, Central Region, Malawi", + "city":"Lilongwe", + "tzid":"Africa/Blantyre", + "latitude":-13.96692, + "longitude":33.78725, + "cc":"MW", + "country":"Malawi", + "admin1":"Central Region", + "geo":"geoname", + "geonameid":927967 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:53", + "date":"2021-02-26T17:53:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:43", + "date":"2021-02-27T18:43:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Cancún February 2021", + "date":"2021-02-26T21:26:06.531Z", + "location":{ + "title":"Cancún, Quintana Roo, Mexico", + "city":"Cancún", + "tzid":"America/Cancun", + "latitude":21.17429, + "longitude":-86.84656, + "cc":"MX", + "country":"Mexico", + "admin1":"Quintana Roo", + "asciiname":"Cancun", + "geo":"geoname", + "geonameid":3531673 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:31", + "date":"2021-02-26T18:31:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:23", + "date":"2021-02-27T19:23:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Guadalajara February 2021", + "date":"2021-02-26T21:26:07.005Z", + "location":{ + "title":"Guadalajara, Jalisco, Mexico", + "city":"Guadalajara", + "tzid":"America/Mexico_City", + "latitude":20.66682, + "longitude":-103.39182, + "cc":"MX", + "country":"Mexico", + "admin1":"Jalisco", + "geo":"geoname", + "geonameid":4005539 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:38", + "date":"2021-02-26T18:38:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:30", + "date":"2021-02-27T19:30:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Iztapalapa February 2021", + "date":"2021-02-26T21:26:07.480Z", + "location":{ + "title":"Iztapalapa, Mexico City, Mexico", + "city":"Iztapalapa", + "tzid":"America/Mexico_City", + "latitude":19.35529, + "longitude":-99.06224, + "cc":"MX", + "country":"Mexico", + "admin1":"Mexico City", + "geo":"geoname", + "geonameid":3526683 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:21", + "date":"2021-02-26T18:21:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:13", + "date":"2021-02-27T19:13:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Mazatlán February 2021", + "date":"2021-02-26T21:26:07.957Z", + "location":{ + "title":"Mazatlán, Sinaloa, Mexico", + "city":"Mazatlán", + "tzid":"America/Mazatlan", + "latitude":23.2329, + "longitude":-106.4062, + "cc":"MX", + "country":"Mexico", + "admin1":"Sinaloa", + "asciiname":"Mazatlan", + "geo":"geoname", + "geonameid":3996322 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:48", + "date":"2021-02-26T17:48:00-07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:40", + "date":"2021-02-27T18:40:00-07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Mexico City February 2021", + "date":"2021-02-26T21:26:08.448Z", + "location":{ + "title":"Mexico City, Mexico", + "city":"Mexico City", + "tzid":"America/Mexico_City", + "latitude":19.42847, + "longitude":-99.12766, + "cc":"MX", + "country":"Mexico", + "admin1":"Mexico City", + "geo":"geoname", + "geonameid":3530597 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:21", + "date":"2021-02-26T18:21:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:13", + "date":"2021-02-27T19:13:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Monterrey February 2021", + "date":"2021-02-26T21:26:08.915Z", + "location":{ + "title":"Monterrey, Nuevo Leon, Mexico", + "city":"Monterrey", + "tzid":"America/Monterrey", + "latitude":25.67507, + "longitude":-100.31847, + "cc":"MX", + "country":"Mexico", + "admin1":"Nuevo Leon", + "geo":"geoname", + "geonameid":3995465 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:21", + "date":"2021-02-26T18:21:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:15", + "date":"2021-02-27T19:15:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Puerto Vallarta February 2021", + "date":"2021-02-26T21:26:09.467Z", + "location":{ + "title":"Puerto Vallarta, Jalisco, Mexico", + "city":"Puerto Vallarta", + "tzid":"America/Mexico_City", + "latitude":20.617, + "longitude":-105.23018, + "cc":"MX", + "country":"Mexico", + "admin1":"Jalisco", + "geo":"geoname", + "geonameid":3991328 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:45", + "date":"2021-02-26T18:45:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:37", + "date":"2021-02-27T19:37:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tijuana February 2021", + "date":"2021-02-26T21:26:09.961Z", + "location":{ + "title":"Tijuana, Baja California, Mexico", + "city":"Tijuana", + "tzid":"America/Tijuana", + "latitude":32.5027, + "longitude":-117.00371, + "cc":"MX", + "country":"Mexico", + "admin1":"Baja California", + "geo":"geoname", + "geonameid":3981609 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:22", + "date":"2021-02-26T17:22:00-08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:19", + "date":"2021-02-27T18:19:00-08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kota Bharu February 2021", + "date":"2021-02-26T21:26:10.452Z", + "location":{ + "title":"Kota Bharu, Kelantan, Malaysia", + "city":"Kota Bharu", + "tzid":"Asia/Kuala_Lumpur", + "latitude":6.12361, + "longitude":102.24333, + "cc":"MY", + "country":"Malaysia", + "admin1":"Kelantan", + "geo":"geoname", + "geonameid":1736376 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:05", + "date":"2021-02-26T19:05:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:55", + "date":"2021-02-27T19:55:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kuala Lumpur February 2021", + "date":"2021-02-26T21:26:10.946Z", + "location":{ + "title":"Kuala Lumpur, Malaysia", + "city":"Kuala Lumpur", + "tzid":"Asia/Kuala_Lumpur", + "latitude":3.1412, + "longitude":101.68653, + "cc":"MY", + "country":"Malaysia", + "admin1":"Kuala Lumpur", + "geo":"geoname", + "geonameid":1735161 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:09", + "date":"2021-02-26T19:09:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:59", + "date":"2021-02-27T19:59:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Maputo February 2021", + "date":"2021-02-26T21:26:11.433Z", + "location":{ + "title":"Maputo, Mozambique", + "city":"Maputo", + "tzid":"Africa/Maputo", + "latitude":-25.96553, + "longitude":32.58322, + "cc":"MZ", + "country":"Mozambique", + "admin1":"Maputo City", + "geo":"geoname", + "geonameid":1040652 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:07", + "date":"2021-02-26T18:07:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:00", + "date":"2021-02-27T19:00:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Windhoek February 2021", + "date":"2021-02-26T21:26:11.894Z", + "location":{ + "title":"Windhoek, Khomas, Namibia", + "city":"Windhoek", + "tzid":"Africa/Windhoek", + "latitude":-22.55941, + "longitude":17.08323, + "cc":"NA", + "country":"Namibia", + "admin1":"Khomas", + "geo":"geoname", + "geonameid":3352136 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:06", + "date":"2021-02-26T19:06:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:58", + "date":"2021-02-27T19:58:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Nouméa February 2021", + "date":"2021-02-26T21:26:12.361Z", + "location":{ + "title":"Nouméa, South Province, New Caledonia", + "city":"Nouméa", + "tzid":"Pacific/Noumea", + "latitude":-22.27407, + "longitude":166.44884, + "cc":"NC", + "country":"New Caledonia", + "admin1":"South Province", + "asciiname":"Noumea", + "geo":"geoname", + "geonameid":2139521 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:09", + "date":"2021-02-26T18:09:00+11:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:00", + "date":"2021-02-27T19:00:00+11:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Niamey February 2021", + "date":"2021-02-26T21:26:12.835Z", + "location":{ + "title":"Niamey, Niger", + "city":"Niamey", + "tzid":"Africa/Niamey", + "latitude":13.51366, + "longitude":2.1098, + "cc":"NE", + "country":"Niger", + "admin1":"Niamey", + "geo":"geoname", + "geonameid":2440485 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:41", + "date":"2021-02-26T18:41:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:31", + "date":"2021-02-27T19:31:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Abuja February 2021", + "date":"2021-02-26T21:26:13.314Z", + "location":{ + "title":"Abuja, FCT, Nigeria", + "city":"Abuja", + "tzid":"Africa/Lagos", + "latitude":9.05785, + "longitude":7.49508, + "cc":"NG", + "country":"Nigeria", + "admin1":"FCT", + "geo":"geoname", + "geonameid":2352778 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:22", + "date":"2021-02-26T18:22:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:12", + "date":"2021-02-27T19:12:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Lagos February 2021", + "date":"2021-02-26T21:26:13.834Z", + "location":{ + "title":"Lagos, Nigeria", + "city":"Lagos", + "tzid":"Africa/Lagos", + "latitude":6.45407, + "longitude":3.39467, + "cc":"NG", + "country":"Nigeria", + "admin1":"Lagos", + "geo":"geoname", + "geonameid":2332459 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:40", + "date":"2021-02-26T18:40:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:30", + "date":"2021-02-27T19:30:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Managua February 2021", + "date":"2021-02-26T21:26:14.331Z", + "location":{ + "title":"Managua, Nicaragua", + "city":"Managua", + "tzid":"America/Managua", + "latitude":12.13282, + "longitude":-86.2504, + "cc":"NI", + "country":"Nicaragua", + "admin1":"Managua", + "geo":"geoname", + "geonameid":3617763 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:35", + "date":"2021-02-26T17:35:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:25", + "date":"2021-02-27T18:25:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Amsterdam February 2021", + "date":"2021-02-26T21:26:15.180Z", + "location":{ + "title":"Amsterdam, North Holland, Netherlands", + "city":"Amsterdam", + "tzid":"Europe/Amsterdam", + "latitude":52.37403, + "longitude":4.88969, + "cc":"NL", + "country":"Netherlands", + "admin1":"North Holland", + "geo":"geoname", + "geonameid":2759794 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:50", + "date":"2021-02-26T17:50:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:02", + "date":"2021-02-27T19:02:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Oslo February 2021", + "date":"2021-02-26T21:26:15.650Z", + "location":{ + "title":"Oslo, Norway", + "city":"Oslo", + "tzid":"Europe/Oslo", + "latitude":59.91273, + "longitude":10.74609, + "cc":"NO", + "country":"Norway", + "admin1":"Oslo", + "geo":"geoname", + "geonameid":3143244 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:11", + "date":"2021-02-26T17:11:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:35", + "date":"2021-02-27T18:35:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kathmandu February 2021", + "date":"2021-02-26T21:26:16.113Z", + "location":{ + "title":"Kathmandu, Province 3, Nepal", + "city":"Kathmandu", + "tzid":"Asia/Kathmandu", + "latitude":27.70169, + "longitude":85.3206, + "cc":"NP", + "country":"Nepal", + "admin1":"Province 3", + "geo":"geoname", + "geonameid":1283240 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 5:42pm", + "date":"2021-02-26T17:42:00+05:45", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:36pm", + "date":"2021-02-27T18:36:00+05:45", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Alofi February 2021", + "date":"2021-02-26T21:26:16.565Z", + "location":{ + "title":"Alofi, Niue", + "city":"Alofi", + "tzid":"Pacific/Niue", + "latitude":-19.05451, + "longitude":-169.91768, + "cc":"NU", + "country":"Niue", + "geo":"geoname", + "geonameid":4036284 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:31", + "date":"2021-02-26T18:31:00-11:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:22", + "date":"2021-02-27T19:22:00-11:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Auckland February 2021", + "date":"2021-02-26T21:26:17.064Z", + "location":{ + "title":"Auckland, New Zealand", + "city":"Auckland", + "tzid":"Pacific/Auckland", + "latitude":-36.84853, + "longitude":174.76349, + "cc":"NZ", + "country":"New Zealand", + "admin1":"Auckland", + "geo":"geoname", + "geonameid":2193733 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 7:50pm", + "date":"2021-02-26T19:50:00+13:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 8:46pm", + "date":"2021-02-27T20:46:00+13:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Christchurch February 2021", + "date":"2021-02-26T21:26:17.526Z", + "location":{ + "title":"Christchurch, Canterbury, New Zealand", + "city":"Christchurch", + "tzid":"Pacific/Auckland", + "latitude":-43.53333, + "longitude":172.63333, + "cc":"NZ", + "country":"New Zealand", + "admin1":"Canterbury", + "geo":"geoname", + "geonameid":2192362 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 8:06pm", + "date":"2021-02-26T20:06:00+13:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 9:08pm", + "date":"2021-02-27T21:08:00+13:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Wellington February 2021", + "date":"2021-02-26T21:26:18.029Z", + "location":{ + "title":"Wellington, New Zealand", + "city":"Wellington", + "tzid":"Pacific/Auckland", + "latitude":-41.28664, + "longitude":174.77557, + "cc":"NZ", + "country":"New Zealand", + "admin1":"Wellington", + "geo":"geoname", + "geonameid":2179537 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 7:55pm", + "date":"2021-02-26T19:55:00+13:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 8:55pm", + "date":"2021-02-27T20:55:00+13:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Muscat February 2021", + "date":"2021-02-26T21:26:18.495Z", + "location":{ + "title":"Muscat, Oman", + "city":"Muscat", + "tzid":"Asia/Muscat", + "latitude":23.58413, + "longitude":58.40778, + "cc":"OM", + "country":"Oman", + "admin1":"Muscat", + "geo":"geoname", + "geonameid":287286 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:48", + "date":"2021-02-26T17:48:00+04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:41", + "date":"2021-02-27T18:41:00+04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Panamá February 2021", + "date":"2021-02-26T21:26:18.963Z", + "location":{ + "title":"Panamá, Panama, Panama", + "city":"Panamá", + "tzid":"America/Panama", + "latitude":8.9936, + "longitude":-79.51973, + "cc":"PA", + "country":"Panama", + "admin1":"Panama", + "asciiname":"Panama", + "geo":"geoname", + "geonameid":3703443 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:10", + "date":"2021-02-26T18:10:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:00", + "date":"2021-02-27T19:00:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Lima February 2021", + "date":"2021-02-26T21:26:19.433Z", + "location":{ + "title":"Lima, Peru", + "city":"Lima", + "tzid":"America/Lima", + "latitude":-12.04318, + "longitude":-77.02824, + "cc":"PE", + "country":"Peru", + "admin1":"Lima", + "geo":"geoname", + "geonameid":3936456 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:14", + "date":"2021-02-26T18:14:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:04", + "date":"2021-02-27T19:04:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Papeete February 2021", + "date":"2021-02-26T21:26:19.900Z", + "location":{ + "title":"Papeete, Iles du Vent, French Polynesia", + "city":"Papeete", + "tzid":"Pacific/Tahiti", + "latitude":-17.53733, + "longitude":-149.5665, + "cc":"PF", + "country":"French Polynesia", + "admin1":"Iles du Vent", + "geo":"geoname", + "geonameid":4033936 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:09", + "date":"2021-02-26T18:09:00-10:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:59", + "date":"2021-02-27T18:59:00-10:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Port Moresby February 2021", + "date":"2021-02-26T21:26:20.574Z", + "location":{ + "title":"Port Moresby, National Capital, Papua New Guinea", + "city":"Port Moresby", + "tzid":"Pacific/Port_Moresby", + "latitude":-9.47723, + "longitude":147.15089, + "cc":"PG", + "country":"Papua New Guinea", + "admin1":"National Capital", + "geo":"geoname", + "geonameid":2088122 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:16", + "date":"2021-02-26T18:16:00+10:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:06", + "date":"2021-02-27T19:06:00+10:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Manila February 2021", + "date":"2021-02-26T21:26:21.026Z", + "location":{ + "title":"Manila, Metro Manila, Philippines", + "city":"Manila", + "tzid":"Asia/Manila", + "latitude":14.6042, + "longitude":120.9822, + "cc":"PH", + "country":"Philippines", + "admin1":"Metro Manila", + "geo":"geoname", + "geonameid":1701668 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:44", + "date":"2021-02-26T17:44:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:35", + "date":"2021-02-27T18:35:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Islamabad February 2021", + "date":"2021-02-26T21:26:21.501Z", + "location":{ + "title":"Islamabad, Pakistan", + "city":"Islamabad", + "tzid":"Asia/Karachi", + "latitude":33.72148, + "longitude":73.04329, + "cc":"PK", + "country":"Pakistan", + "admin1":"Islamabad", + "geo":"geoname", + "geonameid":1176615 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:41", + "date":"2021-02-26T17:41:00+05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:37", + "date":"2021-02-27T18:37:00+05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Karachi February 2021", + "date":"2021-02-26T21:26:21.963Z", + "location":{ + "title":"Karachi, Sindh, Pakistan", + "city":"Karachi", + "tzid":"Asia/Karachi", + "latitude":24.8608, + "longitude":67.0104, + "cc":"PK", + "country":"Pakistan", + "admin1":"Sindh", + "geo":"geoname", + "geonameid":1174872 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:12", + "date":"2021-02-26T18:12:00+05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:06", + "date":"2021-02-27T19:06:00+05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Warsaw February 2021", + "date":"2021-02-26T21:26:22.418Z", + "location":{ + "title":"Warsaw, Mazovia, Poland", + "city":"Warsaw", + "tzid":"Europe/Warsaw", + "latitude":52.22977, + "longitude":21.01178, + "cc":"PL", + "country":"Poland", + "admin1":"Mazovia", + "geo":"geoname", + "geonameid":756135 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 16:46", + "date":"2021-02-26T16:46:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 17:57", + "date":"2021-02-27T17:57:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal San Juan February 2021", + "date":"2021-02-26T21:26:22.870Z", + "location":{ + "title":"San Juan, Puerto Rico", + "city":"San Juan", + "tzid":"America/Puerto_Rico", + "latitude":18.46633, + "longitude":-66.10572, + "cc":"PR", + "country":"Puerto Rico", + "admin1":"San Juan", + "geo":"geoname", + "geonameid":4568127 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:10pm", + "date":"2021-02-26T18:10:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:01pm", + "date":"2021-02-27T19:01:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Lisbon February 2021", + "date":"2021-02-26T21:26:23.333Z", + "location":{ + "title":"Lisbon, Portugal", + "city":"Lisbon", + "tzid":"Europe/Lisbon", + "latitude":38.71667, + "longitude":-9.13333, + "cc":"PT", + "country":"Portugal", + "admin1":"Lisbon", + "geo":"geoname", + "geonameid":2267057 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:05", + "date":"2021-02-26T18:05:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:04", + "date":"2021-02-27T19:04:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Asunción February 2021", + "date":"2021-02-26T21:26:23.812Z", + "location":{ + "title":"Asunción, Asuncion, Paraguay", + "city":"Asunción", + "tzid":"America/Asuncion", + "latitude":-25.28646, + "longitude":-57.647, + "cc":"PY", + "country":"Paraguay", + "admin1":"Asuncion", + "asciiname":"Asuncion", + "geo":"geoname", + "geonameid":3439389 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:07", + "date":"2021-02-26T19:07:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 20:00", + "date":"2021-02-27T20:00:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Doha February 2021", + "date":"2021-02-26T21:26:24.266Z", + "location":{ + "title":"Doha, Baladiyat ad Dawhah, Qatar", + "city":"Doha", + "tzid":"Asia/Qatar", + "latitude":25.28545, + "longitude":51.53096, + "cc":"QA", + "country":"Qatar", + "admin1":"Baladiyat ad Dawhah", + "geo":"geoname", + "geonameid":290030 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:14", + "date":"2021-02-26T17:14:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:07", + "date":"2021-02-27T18:07:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bucharest February 2021", + "date":"2021-02-26T21:26:24.722Z", + "location":{ + "title":"Bucharest, Bucuresti, Romania", + "city":"Bucharest", + "tzid":"Europe/Bucharest", + "latitude":44.43225, + "longitude":26.10626, + "cc":"RO", + "country":"Romania", + "admin1":"Bucuresti", + "geo":"geoname", + "geonameid":683506 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:37", + "date":"2021-02-26T17:37:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:40", + "date":"2021-02-27T18:40:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Belgrade February 2021", + "date":"2021-02-26T21:26:25.180Z", + "location":{ + "title":"Belgrade, Central Serbia, Serbia", + "city":"Belgrade", + "tzid":"Europe/Belgrade", + "latitude":44.80401, + "longitude":20.46513, + "cc":"RS", + "country":"Serbia", + "admin1":"Central Serbia", + "geo":"geoname", + "geonameid":792680 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 16:59", + "date":"2021-02-26T16:59:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:03", + "date":"2021-02-27T18:03:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Moscow February 2021", + "date":"2021-02-26T21:26:25.653Z", + "location":{ + "title":"Moscow, Russia", + "city":"Moscow", + "tzid":"Europe/Moscow", + "latitude":55.75222, + "longitude":37.61556, + "cc":"RU", + "country":"Russia", + "admin1":"Moscow", + "geo":"geoname", + "geonameid":524901 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:33", + "date":"2021-02-26T17:33:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:49", + "date":"2021-02-27T18:49:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Novosibirsk February 2021", + "date":"2021-02-26T21:26:26.117Z", + "location":{ + "title":"Novosibirsk, Russia", + "city":"Novosibirsk", + "tzid":"Asia/Novosibirsk", + "latitude":55.0415, + "longitude":82.9346, + "cc":"RU", + "country":"Russia", + "admin1":"Novosibirsk Oblast", + "geo":"geoname", + "geonameid":1496747 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:33", + "date":"2021-02-26T18:33:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:48", + "date":"2021-02-27T19:48:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Saint Petersburg February 2021", + "date":"2021-02-26T21:26:26.561Z", + "location":{ + "title":"Saint Petersburg, St.-Petersburg, Russia", + "city":"Saint Petersburg", + "tzid":"Europe/Moscow", + "latitude":59.93863, + "longitude":30.31413, + "cc":"RU", + "country":"Russia", + "admin1":"St.-Petersburg", + "geo":"geoname", + "geonameid":498817 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:53", + "date":"2021-02-26T17:53:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:16", + "date":"2021-02-27T19:16:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Yekaterinburg February 2021", + "date":"2021-02-26T21:26:27.025Z", + "location":{ + "title":"Yekaterinburg, Sverdlovsk, Russia", + "city":"Yekaterinburg", + "tzid":"Asia/Yekaterinburg", + "latitude":56.8519, + "longitude":60.6122, + "cc":"RU", + "country":"Russia", + "admin1":"Sverdlovsk", + "geo":"geoname", + "geonameid":1486209 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:59", + "date":"2021-02-26T17:59:00+05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:16", + "date":"2021-02-27T19:16:00+05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kigali February 2021", + "date":"2021-02-26T21:26:27.493Z", + "location":{ + "title":"Kigali, Rwanda", + "city":"Kigali", + "tzid":"Africa/Kigali", + "latitude":-1.94995, + "longitude":30.05885, + "cc":"RW", + "country":"Rwanda", + "admin1":"Kigali", + "geo":"geoname", + "geonameid":202061 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:59", + "date":"2021-02-26T17:59:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:49", + "date":"2021-02-27T18:49:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Jeddah February 2021", + "date":"2021-02-26T21:26:27.948Z", + "location":{ + "title":"Jeddah, Mecca Region, Saudi Arabia", + "city":"Jeddah", + "tzid":"Asia/Riyadh", + "latitude":21.49012, + "longitude":39.18624, + "cc":"SA", + "country":"Saudi Arabia", + "admin1":"Mecca Region", + "geo":"geoname", + "geonameid":105343 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:06", + "date":"2021-02-26T18:06:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:59", + "date":"2021-02-27T18:59:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Mecca February 2021", + "date":"2021-02-26T21:26:28.415Z", + "location":{ + "title":"Mecca, Saudi Arabia", + "city":"Mecca", + "tzid":"Asia/Riyadh", + "latitude":21.42664, + "longitude":39.82563, + "cc":"SA", + "country":"Saudi Arabia", + "admin1":"Mecca Region", + "geo":"geoname", + "geonameid":104515 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:04", + "date":"2021-02-26T18:04:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:56", + "date":"2021-02-27T18:56:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Medina February 2021", + "date":"2021-02-26T21:26:28.870Z", + "location":{ + "title":"Medina, Saudi Arabia", + "city":"Medina", + "tzid":"Asia/Riyadh", + "latitude":24.46861, + "longitude":39.61417, + "cc":"SA", + "country":"Saudi Arabia", + "admin1":"Medina Region", + "geo":"geoname", + "geonameid":109223 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:02", + "date":"2021-02-26T18:02:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:55", + "date":"2021-02-27T18:55:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Riyadh February 2021", + "date":"2021-02-26T21:26:29.335Z", + "location":{ + "title":"Riyadh, Saudi Arabia", + "city":"Riyadh", + "tzid":"Asia/Riyadh", + "latitude":24.68773, + "longitude":46.72185, + "cc":"SA", + "country":"Saudi Arabia", + "admin1":"Riyadh Region", + "geo":"geoname", + "geonameid":108410 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:34", + "date":"2021-02-26T17:34:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:27", + "date":"2021-02-27T18:27:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Honiara February 2021", + "date":"2021-02-26T21:26:29.787Z", + "location":{ + "title":"Honiara, Solomon Islands", + "city":"Honiara", + "tzid":"Pacific/Guadalcanal", + "latitude":-9.43333, + "longitude":159.95, + "cc":"SB", + "country":"Solomon Islands", + "admin1":"Honiara", + "geo":"geoname", + "geonameid":2108502 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:25", + "date":"2021-02-26T18:25:00+11:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:15", + "date":"2021-02-27T19:15:00+11:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Victoria February 2021", + "date":"2021-02-26T21:26:30.244Z", + "location":{ + "title":"Victoria, English River, Seychelles", + "city":"Victoria", + "tzid":"Indian/Mahe", + "latitude":-4.62001, + "longitude":55.45501, + "cc":"SC", + "country":"Seychelles", + "admin1":"English River", + "geo":"geoname", + "geonameid":241131 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:20", + "date":"2021-02-26T18:20:00+04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:09", + "date":"2021-02-27T19:09:00+04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Khartoum February 2021", + "date":"2021-02-26T21:26:30.747Z", + "location":{ + "title":"Khartoum, Sudan", + "city":"Khartoum", + "tzid":"Africa/Khartoum", + "latitude":15.55177, + "longitude":32.53241, + "cc":"SD", + "country":"Sudan", + "admin1":"Khartoum", + "geo":"geoname", + "geonameid":379252 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:37", + "date":"2021-02-26T17:37:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:28", + "date":"2021-02-27T18:28:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Omdurman February 2021", + "date":"2021-02-26T21:26:31.213Z", + "location":{ + "title":"Omdurman, Khartoum, Sudan", + "city":"Omdurman", + "tzid":"Africa/Khartoum", + "latitude":15.64453, + "longitude":32.47773, + "cc":"SD", + "country":"Sudan", + "admin1":"Khartoum", + "geo":"geoname", + "geonameid":365137 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:38", + "date":"2021-02-26T17:38:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:29", + "date":"2021-02-27T18:29:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Stockholm February 2021", + "date":"2021-02-26T21:26:31.671Z", + "location":{ + "title":"Stockholm, Sweden", + "city":"Stockholm", + "tzid":"Europe/Stockholm", + "latitude":59.32938, + "longitude":18.06871, + "cc":"SE", + "country":"Sweden", + "admin1":"Stockholm", + "geo":"geoname", + "geonameid":2673730 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 16:43", + "date":"2021-02-26T16:43:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:06", + "date":"2021-02-27T18:06:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Singapore February 2021", + "date":"2021-02-26T21:26:32.208Z", + "location":{ + "title":"Singapore, Singapore", + "city":"Singapore", + "tzid":"Asia/Singapore", + "latitude":1.28967, + "longitude":103.85007, + "cc":"SG", + "country":"Singapore", + "geo":"geoname", + "geonameid":1880252 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:02", + "date":"2021-02-26T19:02:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:51", + "date":"2021-02-27T19:51:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Jamestown February 2021", + "date":"2021-02-26T21:26:32.677Z", + "location":{ + "title":"Jamestown, Saint Helena, Saint Helena", + "city":"Jamestown", + "tzid":"Atlantic/St_Helena", + "latitude":-15.93872, + "longitude":-5.71675, + "cc":"SH", + "country":"Saint Helena", + "admin1":"Saint Helena", + "geo":"geoname", + "geonameid":3370903 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:32", + "date":"2021-02-26T18:32:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:23", + "date":"2021-02-27T19:23:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ljubljana February 2021", + "date":"2021-02-26T21:26:33.151Z", + "location":{ + "title":"Ljubljana, Slovenia", + "city":"Ljubljana", + "tzid":"Europe/Ljubljana", + "latitude":46.05108, + "longitude":14.50513, + "cc":"SI", + "country":"Slovenia", + "admin1":"Ljubljana", + "geo":"geoname", + "geonameid":3196359 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:21", + "date":"2021-02-26T17:21:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:26", + "date":"2021-02-27T18:26:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bratislava February 2021", + "date":"2021-02-26T21:26:33.623Z", + "location":{ + "title":"Bratislava, Slovakia", + "city":"Bratislava", + "tzid":"Europe/Bratislava", + "latitude":48.14816, + "longitude":17.10674, + "cc":"SK", + "country":"Slovakia", + "admin1":"Bratislava", + "geo":"geoname", + "geonameid":3060972 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:08", + "date":"2021-02-26T17:08:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:15", + "date":"2021-02-27T18:15:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Freetown February 2021", + "date":"2021-02-26T21:26:34.091Z", + "location":{ + "title":"Freetown, Western Area, Sierra Leone", + "city":"Freetown", + "tzid":"Africa/Freetown", + "latitude":8.43194, + "longitude":-13.28972, + "cc":"SL", + "country":"Sierra Leone", + "admin1":"Western Area", + "geo":"geoname", + "geonameid":2408770 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:46", + "date":"2021-02-26T18:46:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:36", + "date":"2021-02-27T19:36:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Dakar February 2021", + "date":"2021-02-26T21:26:34.554Z", + "location":{ + "title":"Dakar, Senegal", + "city":"Dakar", + "tzid":"Africa/Dakar", + "latitude":14.6937, + "longitude":-17.44406, + "cc":"SN", + "country":"Senegal", + "admin1":"Dakar", + "geo":"geoname", + "geonameid":2253354 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:58", + "date":"2021-02-26T18:58:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:49", + "date":"2021-02-27T19:49:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Mogadishu February 2021", + "date":"2021-02-26T21:26:35.014Z", + "location":{ + "title":"Mogadishu, Banaadir, Somalia", + "city":"Mogadishu", + "tzid":"Africa/Mogadishu", + "latitude":2.03711, + "longitude":45.34375, + "cc":"SO", + "country":"Somalia", + "admin1":"Banaadir", + "geo":"geoname", + "geonameid":53654 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:55", + "date":"2021-02-26T17:55:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:45", + "date":"2021-02-27T18:45:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Paramaribo February 2021", + "date":"2021-02-26T21:26:35.469Z", + "location":{ + "title":"Paramaribo, Suriname", + "city":"Paramaribo", + "tzid":"America/Paramaribo", + "latitude":5.86638, + "longitude":-55.16682, + "cc":"SR", + "country":"Suriname", + "admin1":"Paramaribo", + "geo":"geoname", + "geonameid":3383330 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:35", + "date":"2021-02-26T18:35:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:25", + "date":"2021-02-27T19:25:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal São Tomé February 2021", + "date":"2021-02-26T21:26:35.919Z", + "location":{ + "title":"São Tomé, Sao Tome Island, Sao Tome and Principe", + "city":"São Tomé", + "tzid":"Africa/Sao_Tome", + "latitude":0.33654, + "longitude":6.72732, + "cc":"ST", + "country":"Sao Tome and Principe", + "admin1":"Sao Tome Island", + "asciiname":"Sao Tome", + "geo":"geoname", + "geonameid":2410763 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:31", + "date":"2021-02-26T17:31:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:20", + "date":"2021-02-27T18:20:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal San Salvador February 2021", + "date":"2021-02-26T21:26:36.374Z", + "location":{ + "title":"San Salvador, El Salvador", + "city":"San Salvador", + "tzid":"America/El_Salvador", + "latitude":13.68935, + "longitude":-89.18718, + "cc":"SV", + "country":"El Salvador", + "admin1":"San Salvador", + "geo":"geoname", + "geonameid":3583361 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:46", + "date":"2021-02-26T17:46:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:36", + "date":"2021-02-27T18:36:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Aleppo February 2021", + "date":"2021-02-26T21:26:36.845Z", + "location":{ + "title":"Aleppo, Syria", + "city":"Aleppo", + "tzid":"Asia/Damascus", + "latitude":36.20124, + "longitude":37.16117, + "cc":"SY", + "country":"Syria", + "admin1":"Aleppo", + "geo":"geoname", + "geonameid":170063 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:02", + "date":"2021-02-26T17:02:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:00", + "date":"2021-02-27T18:00:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Damascus February 2021", + "date":"2021-02-26T21:26:37.316Z", + "location":{ + "title":"Damascus, Dimashq, Syria", + "city":"Damascus", + "tzid":"Asia/Damascus", + "latitude":33.5102, + "longitude":36.29128, + "cc":"SY", + "country":"Syria", + "admin1":"Dimashq", + "geo":"geoname", + "geonameid":170654 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:08", + "date":"2021-02-26T17:08:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:05", + "date":"2021-02-27T18:05:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Mbabane February 2021", + "date":"2021-02-26T21:26:37.810Z", + "location":{ + "title":"Mbabane, Hhohho, Eswatini", + "city":"Mbabane", + "tzid":"Africa/Mbabane", + "latitude":-26.31667, + "longitude":31.13333, + "cc":"SZ", + "country":"Swaziland", + "admin1":"Hhohho", + "geo":"geoname", + "geonameid":934985 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:13", + "date":"2021-02-26T18:13:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:06", + "date":"2021-02-27T19:06:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Cockburn Town February 2021", + "date":"2021-02-26T21:26:38.274Z", + "location":{ + "title":"Cockburn Town, Turks and Caicos Islands", + "city":"Cockburn Town", + "tzid":"America/Grand_Turk", + "latitude":21.46122, + "longitude":-71.14188, + "cc":"TC", + "country":"Turks and Caicos Islands", + "geo":"geoname", + "geonameid":3576994 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:28", + "date":"2021-02-26T17:28:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:20", + "date":"2021-02-27T18:20:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal N'Djamena February 2021", + "date":"2021-02-26T21:26:38.741Z", + "location":{ + "title":"N'Djamena, Chad", + "city":"N'Djamena", + "tzid":"Africa/Ndjamena", + "latitude":12.10672, + "longitude":15.0444, + "cc":"TD", + "country":"Chad", + "admin1":"N'Djamena", + "geo":"geoname", + "geonameid":2427123 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:50", + "date":"2021-02-26T17:50:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:40", + "date":"2021-02-27T18:40:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Lomé February 2021", + "date":"2021-02-26T21:26:39.202Z", + "location":{ + "title":"Lomé, Maritime, Togo", + "city":"Lomé", + "tzid":"Africa/Lome", + "latitude":6.12874, + "longitude":1.22154, + "cc":"TG", + "country":"Togo", + "admin1":"Maritime", + "asciiname":"Lome", + "geo":"geoname", + "geonameid":2365267 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:49", + "date":"2021-02-26T17:49:00-00:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:39", + "date":"2021-02-27T18:39:00-00:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bangkok February 2021", + "date":"2021-02-26T21:26:39.662Z", + "location":{ + "title":"Bangkok, Thailand", + "city":"Bangkok", + "tzid":"Asia/Bangkok", + "latitude":13.75398, + "longitude":100.50144, + "cc":"TH", + "country":"Thailand", + "admin1":"Bangkok", + "geo":"geoname", + "geonameid":1609350 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:07", + "date":"2021-02-26T18:07:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:57", + "date":"2021-02-27T18:57:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Dushanbe February 2021", + "date":"2021-02-26T21:26:40.129Z", + "location":{ + "title":"Dushanbe, Tajikistan", + "city":"Dushanbe", + "tzid":"Asia/Dushanbe", + "latitude":38.53575, + "longitude":68.77905, + "cc":"TJ", + "country":"Tajikistan", + "admin1":"Dushanbe", + "geo":"geoname", + "geonameid":1221874 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:53", + "date":"2021-02-26T17:53:00+05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:52", + "date":"2021-02-27T18:52:00+05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ashgabat February 2021", + "date":"2021-02-26T21:26:40.591Z", + "location":{ + "title":"Ashgabat, Turkmenistan", + "city":"Ashgabat", + "tzid":"Asia/Ashgabat", + "latitude":37.95, + "longitude":58.38333, + "cc":"TM", + "country":"Turkmenistan", + "admin1":"Ashgabat", + "geo":"geoname", + "geonameid":162183 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:35", + "date":"2021-02-26T18:35:00+05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:34", + "date":"2021-02-27T19:34:00+05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tunis February 2021", + "date":"2021-02-26T21:26:41.099Z", + "location":{ + "title":"Tunis, Tunisia", + "city":"Tunis", + "tzid":"Africa/Tunis", + "latitude":36.81897, + "longitude":10.16579, + "cc":"TN", + "country":"Tunisia", + "admin1":"Tunis", + "geo":"geoname", + "geonameid":2464470 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:49", + "date":"2021-02-26T17:49:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:48", + "date":"2021-02-27T18:48:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Adana February 2021", + "date":"2021-02-26T21:26:41.583Z", + "location":{ + "title":"Adana, Turkey", + "city":"Adana", + "tzid":"Europe/Istanbul", + "latitude":36.98615, + "longitude":35.32531, + "cc":"TR", + "country":"Turkey", + "admin1":"Adana", + "geo":"geoname", + "geonameid":325363 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:09", + "date":"2021-02-26T18:09:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:07", + "date":"2021-02-27T19:07:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ankara February 2021", + "date":"2021-02-26T21:26:42.112Z", + "location":{ + "title":"Ankara, Turkey", + "city":"Ankara", + "tzid":"Europe/Istanbul", + "latitude":39.91987, + "longitude":32.85427, + "cc":"TR", + "country":"Turkey", + "admin1":"Ankara", + "geo":"geoname", + "geonameid":323786 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:15", + "date":"2021-02-26T18:15:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:15", + "date":"2021-02-27T19:15:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Bursa February 2021", + "date":"2021-02-26T21:26:42.603Z", + "location":{ + "title":"Bursa, Turkey", + "city":"Bursa", + "tzid":"Europe/Istanbul", + "latitude":40.19559, + "longitude":29.06013, + "cc":"TR", + "country":"Turkey", + "admin1":"Bursa", + "geo":"geoname", + "geonameid":750269 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:30", + "date":"2021-02-26T18:30:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:30", + "date":"2021-02-27T19:30:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Istanbul February 2021", + "date":"2021-02-26T21:26:43.085Z", + "location":{ + "title":"Istanbul, Turkey", + "city":"Istanbul", + "tzid":"Europe/Istanbul", + "latitude":41.01384, + "longitude":28.94966, + "cc":"TR", + "country":"Turkey", + "admin1":"Istanbul", + "geo":"geoname", + "geonameid":745044 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:30", + "date":"2021-02-26T18:30:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:31", + "date":"2021-02-27T19:31:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal İzmir February 2021", + "date":"2021-02-26T21:26:43.551Z", + "location":{ + "title":"İzmir, Izmir, Turkey", + "city":"İzmir", + "tzid":"Europe/Istanbul", + "latitude":38.41273, + "longitude":27.13838, + "cc":"TR", + "country":"Turkey", + "admin1":"Izmir", + "asciiname":"Izmir", + "geo":"geoname", + "geonameid":311046 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:40", + "date":"2021-02-26T18:40:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:39", + "date":"2021-02-27T19:39:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Funafuti February 2021", + "date":"2021-02-26T21:26:44.017Z", + "location":{ + "title":"Funafuti, Tuvalu", + "city":"Funafuti", + "tzid":"Pacific/Funafuti", + "latitude":-8.52425, + "longitude":179.19417, + "cc":"TV", + "country":"Tuvalu", + "admin1":"Funafuti", + "geo":"geoname", + "geonameid":2110394 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:07", + "date":"2021-02-26T18:07:00+12:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:57", + "date":"2021-02-27T18:57:00+12:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kaohsiung February 2021", + "date":"2021-02-26T21:26:44.469Z", + "location":{ + "title":"Kaohsiung, Takao, Taiwan", + "city":"Kaohsiung", + "tzid":"Asia/Taipei", + "latitude":22.61626, + "longitude":120.31333, + "cc":"TW", + "country":"Taiwan", + "admin1":"Takao", + "geo":"geoname", + "geonameid":1673820 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:41", + "date":"2021-02-26T17:41:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:34", + "date":"2021-02-27T18:34:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Taipei February 2021", + "date":"2021-02-26T21:26:44.967Z", + "location":{ + "title":"Taipei, Taiwan, Taiwan", + "city":"Taipei", + "tzid":"Asia/Taipei", + "latitude":25.04776, + "longitude":121.53185, + "cc":"TW", + "country":"Taiwan", + "admin1":"Taiwan", + "geo":"geoname", + "geonameid":1668341 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:34", + "date":"2021-02-26T17:34:00+08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:27", + "date":"2021-02-27T18:27:00+08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Dar es Salaam February 2021", + "date":"2021-02-26T21:26:45.456Z", + "location":{ + "title":"Dar es Salaam, Tanzania", + "city":"Dar es Salaam", + "tzid":"Africa/Dar_es_Salaam", + "latitude":-6.82349, + "longitude":39.26951, + "cc":"TZ", + "country":"Tanzania", + "admin1":"Dar es Salaam", + "geo":"geoname", + "geonameid":160263 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:26", + "date":"2021-02-26T18:26:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:15", + "date":"2021-02-27T19:15:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Dodoma February 2021", + "date":"2021-02-26T21:26:45.917Z", + "location":{ + "title":"Dodoma, Tanzania", + "city":"Dodoma", + "tzid":"Africa/Dar_es_Salaam", + "latitude":-6.17221, + "longitude":35.73947, + "cc":"TZ", + "country":"Tanzania", + "admin1":"Dodoma", + "geo":"geoname", + "geonameid":160196 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:39", + "date":"2021-02-26T18:39:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:29", + "date":"2021-02-27T19:29:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kharkiv February 2021", + "date":"2021-02-26T21:26:46.371Z", + "location":{ + "title":"Kharkiv, Ukraine", + "city":"Kharkiv", + "tzid":"Europe/Kiev", + "latitude":49.98081, + "longitude":36.25272, + "cc":"UA", + "country":"Ukraine", + "admin1":"Kharkiv", + "geo":"geoname", + "geonameid":706483 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 16:49", + "date":"2021-02-26T16:49:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 17:57", + "date":"2021-02-27T17:57:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kyiv February 2021", + "date":"2021-02-26T21:26:46.936Z", + "location":{ + "title":"Kyiv, Ukraine", + "city":"Kyiv", + "tzid":"Europe/Kiev", + "latitude":50.45466, + "longitude":30.5238, + "cc":"UA", + "country":"Ukraine", + "admin1":"Kyiv City", + "geo":"geoname", + "geonameid":703448 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:11", + "date":"2021-02-26T17:11:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:20", + "date":"2021-02-27T18:20:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kampala February 2021", + "date":"2021-02-26T21:26:47.405Z", + "location":{ + "title":"Kampala, Central Region, Uganda", + "city":"Kampala", + "tzid":"Africa/Kampala", + "latitude":0.31628, + "longitude":32.58219, + "cc":"UG", + "country":"Uganda", + "admin1":"Central Region", + "geo":"geoname", + "geonameid":232422 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:48", + "date":"2021-02-26T18:48:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:37", + "date":"2021-02-27T19:37:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "error":"Sorry, can't find geonameid: GA", + "originalError":{ + "message":"Sorry, can't find geonameid: GA" + } + }, + { + "error":"Sorry, can't find geonameid: TX", + "originalError":{ + "message":"Sorry, can't find geonameid: TX" + } + }, + { + "error":"Sorry, can't find geonameid: MD", + "originalError":{ + "message":"Sorry, can't find geonameid: MD" + } + }, + { + "error":"Sorry, can't find geonameid: MA", + "originalError":{ + "message":"Sorry, can't find geonameid: MA" + } + }, + { + "error":"Sorry, can't find geonameid: NY", + "originalError":{ + "message":"Sorry, can't find geonameid: NY" + } + }, + { + "error":"Sorry, can't find geonameid: IL", + "originalError":{ + "message":"Sorry, can't find geonameid: IL" + } + }, + { + "error":"Sorry, can't find geonameid: OH", + "originalError":{ + "message":"Sorry, can't find geonameid: OH" + } + }, + { + "error":"Sorry, can't find geonameid: OH", + "originalError":{ + "message":"Sorry, can't find geonameid: OH" + } + }, + { + "error":"Sorry, can't find geonameid: OH", + "originalError":{ + "message":"Sorry, can't find geonameid: OH" + } + }, + { + "error":"Sorry, can't find geonameid: TX", + "originalError":{ + "message":"Sorry, can't find geonameid: TX" + } + }, + { + "error":"Sorry, can't find geonameid: CO", + "originalError":{ + "message":"Sorry, can't find geonameid: CO" + } + }, + { + "error":"Sorry, can't find geonameid: MI", + "originalError":{ + "message":"Sorry, can't find geonameid: MI" + } + }, + { + "error":"Sorry, can't find geonameid: CT", + "originalError":{ + "message":"Sorry, can't find geonameid: CT" + } + }, + { + "error":"Sorry, can't find geonameid: HI", + "originalError":{ + "message":"Sorry, can't find geonameid: HI" + } + }, + { + "error":"Sorry, can't find geonameid: TX", + "originalError":{ + "message":"Sorry, can't find geonameid: TX" + } + }, + { + "error":"Sorry, can't find geonameid: NJ", + "originalError":{ + "message":"Sorry, can't find geonameid: NJ" + } + }, + { + "error":"Sorry, can't find geonameid: NV", + "originalError":{ + "message":"Sorry, can't find geonameid: NV" + } + }, + { + "error":"Sorry, can't find geonameid: NY", + "originalError":{ + "message":"Sorry, can't find geonameid: NY" + } + }, + { + "error":"Sorry, can't find geonameid: CA", + "originalError":{ + "message":"Sorry, can't find geonameid: CA" + } + }, + { + "error":"Sorry, can't find geonameid: TN", + "originalError":{ + "message":"Sorry, can't find geonameid: TN" + } + }, + { + "error":"Sorry, can't find geonameid: FL", + "originalError":{ + "message":"Sorry, can't find geonameid: FL" + } + }, + { + "error":"Sorry, can't find geonameid: WI", + "originalError":{ + "message":"Sorry, can't find geonameid: WI" + } + }, + { + "error":"Sorry, can't find geonameid: NY", + "originalError":{ + "message":"Sorry, can't find geonameid: NY" + } + }, + { + "error":"Sorry, can't find geonameid: CT", + "originalError":{ + "message":"Sorry, can't find geonameid: CT" + } + }, + { + "error":"Sorry, can't find geonameid: NY", + "originalError":{ + "message":"Sorry, can't find geonameid: NY" + } + }, + { + "error":"Sorry, can't find geonameid: NE", + "originalError":{ + "message":"Sorry, can't find geonameid: NE" + } + }, + { + "error":"Sorry, can't find geonameid: FL", + "originalError":{ + "message":"Sorry, can't find geonameid: FL" + } + }, + { + "error":"Sorry, can't find geonameid: NJ", + "originalError":{ + "message":"Sorry, can't find geonameid: NJ" + } + }, + { + "error":"Sorry, can't find geonameid: PA", + "originalError":{ + "message":"Sorry, can't find geonameid: PA" + } + }, + { + "error":"Sorry, can't find geonameid: AZ", + "originalError":{ + "message":"Sorry, can't find geonameid: AZ" + } + }, + { + "error":"Sorry, can't find geonameid: PA", + "originalError":{ + "message":"Sorry, can't find geonameid: PA" + } + }, + { + "error":"Sorry, can't find geonameid: OR", + "originalError":{ + "message":"Sorry, can't find geonameid: OR" + } + }, + { + "error":"Sorry, can't find geonameid: RI", + "originalError":{ + "message":"Sorry, can't find geonameid: RI" + } + }, + { + "error":"Sorry, can't find geonameid: VA", + "originalError":{ + "message":"Sorry, can't find geonameid: VA" + } + }, + { + "error":"Sorry, can't find geonameid: NY", + "originalError":{ + "message":"Sorry, can't find geonameid: NY" + } + }, + { + "error":"Sorry, can't find geonameid: MO", + "originalError":{ + "message":"Sorry, can't find geonameid: MO" + } + }, + { + "error":"Sorry, can't find geonameid: MN", + "originalError":{ + "message":"Sorry, can't find geonameid: MN" + } + }, + { + "error":"Sorry, can't find geonameid: CA", + "originalError":{ + "message":"Sorry, can't find geonameid: CA" + } + }, + { + "error":"Sorry, can't find geonameid: CA", + "originalError":{ + "message":"Sorry, can't find geonameid: CA" + } + }, + { + "error":"Sorry, can't find geonameid: WA", + "originalError":{ + "message":"Sorry, can't find geonameid: WA" + } + }, + { + "error":"Sorry, can't find geonameid: MD", + "originalError":{ + "message":"Sorry, can't find geonameid: MD" + } + }, + { + "error":"Sorry, can't find geonameid: NJ", + "originalError":{ + "message":"Sorry, can't find geonameid: NJ" + } + }, + { + "error":"Sorry, can't find geonameid: DC", + "originalError":{ + "message":"Sorry, can't find geonameid: DC" + } + }, + { + "error":"Sorry, can't find geonameid: NY", + "originalError":{ + "message":"Sorry, can't find geonameid: NY" + } + }, + { + "title":"Hebcal Montevideo February 2021", + "date":"2021-02-26T21:27:08.331Z", + "location":{ + "title":"Montevideo, Uruguay", + "city":"Montevideo", + "tzid":"America/Montevideo", + "latitude":-34.90328, + "longitude":-56.18816, + "cc":"UY", + "country":"Uruguay", + "admin1":"Montevideo", + "geo":"geoname", + "geonameid":3441575 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:10", + "date":"2021-02-26T19:10:00-03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 20:06", + "date":"2021-02-27T20:06:00-03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Tashkent February 2021", + "date":"2021-02-26T21:27:08.811Z", + "location":{ + "title":"Tashkent, Toshkent Shahri, Uzbekistan", + "city":"Tashkent", + "tzid":"Asia/Tashkent", + "latitude":41.26465, + "longitude":69.21627, + "cc":"UZ", + "country":"Uzbekistan", + "admin1":"Toshkent Shahri", + "geo":"geoname", + "geonameid":1512569 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:48", + "date":"2021-02-26T17:48:00+05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:49", + "date":"2021-02-27T18:49:00+05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Kingstown February 2021", + "date":"2021-02-26T21:27:09.326Z", + "location":{ + "title":"Kingstown, Saint George, Saint Vincent and the Grenadines", + "city":"Kingstown", + "tzid":"America/St_Vincent", + "latitude":13.15527, + "longitude":-61.22742, + "cc":"VC", + "country":"Saint Vincent and the Grenadines", + "admin1":"Saint George", + "geo":"geoname", + "geonameid":3577887 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:54", + "date":"2021-02-26T17:54:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:45", + "date":"2021-02-27T18:45:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Caracas February 2021", + "date":"2021-02-26T21:27:09.796Z", + "location":{ + "title":"Caracas, Distrito Federal, Venezuela", + "city":"Caracas", + "tzid":"America/Caracas", + "latitude":10.48801, + "longitude":-66.87919, + "cc":"VE", + "country":"Venezuela", + "admin1":"Distrito Federal", + "geo":"geoname", + "geonameid":3646738 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:19", + "date":"2021-02-26T18:19:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:09", + "date":"2021-02-27T19:09:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Maracaibo February 2021", + "date":"2021-02-26T21:27:10.294Z", + "location":{ + "title":"Maracaibo, Zulia, Venezuela", + "city":"Maracaibo", + "tzid":"America/Caracas", + "latitude":10.66663, + "longitude":-71.61245, + "cc":"VE", + "country":"Venezuela", + "admin1":"Zulia", + "geo":"geoname", + "geonameid":3633009 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:37", + "date":"2021-02-26T18:37:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:28", + "date":"2021-02-27T19:28:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Maracay February 2021", + "date":"2021-02-26T21:27:10.796Z", + "location":{ + "title":"Maracay, Aragua, Venezuela", + "city":"Maracay", + "tzid":"America/Caracas", + "latitude":10.23535, + "longitude":-67.59113, + "cc":"VE", + "country":"Venezuela", + "admin1":"Aragua", + "geo":"geoname", + "geonameid":3632998 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:22", + "date":"2021-02-26T18:22:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:12", + "date":"2021-02-27T19:12:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Valencia February 2021", + "date":"2021-02-26T21:27:11.257Z", + "location":{ + "title":"Valencia, Carabobo, Venezuela", + "city":"Valencia", + "tzid":"America/Caracas", + "latitude":10.16202, + "longitude":-68.00765, + "cc":"VE", + "country":"Venezuela", + "admin1":"Carabobo", + "geo":"geoname", + "geonameid":3625549 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:23", + "date":"2021-02-26T18:23:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:13", + "date":"2021-02-27T19:13:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Road Town February 2021", + "date":"2021-02-26T21:27:11.747Z", + "location":{ + "title":"Road Town, British Virgin Islands", + "city":"Road Town", + "tzid":"America/Tortola", + "latitude":18.42693, + "longitude":-64.62079, + "cc":"VG", + "country":"British Virgin Islands", + "geo":"geoname", + "geonameid":3577430 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:04", + "date":"2021-02-26T18:04:00-04:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:56", + "date":"2021-02-27T18:56:00-04:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Hanoi February 2021", + "date":"2021-02-26T21:27:12.214Z", + "location":{ + "title":"Hanoi, Vietnam", + "city":"Hanoi", + "tzid":"Asia/Bangkok", + "latitude":21.0245, + "longitude":105.84117, + "cc":"VN", + "country":"Vietnam", + "admin1":"Hanoi", + "geo":"geoname", + "geonameid":1581130 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:40", + "date":"2021-02-26T17:40:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:32", + "date":"2021-02-27T18:32:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Ho Chi Minh City February 2021", + "date":"2021-02-26T21:27:12.673Z", + "location":{ + "title":"Ho Chi Minh City, Ho Chi Minh, Vietnam", + "city":"Ho Chi Minh City", + "tzid":"Asia/Ho_Chi_Minh", + "latitude":10.82302, + "longitude":106.62965, + "cc":"VN", + "country":"Vietnam", + "admin1":"Ho Chi Minh", + "geo":"geoname", + "geonameid":1566083 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:44", + "date":"2021-02-26T17:44:00+07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:35", + "date":"2021-02-27T18:35:00+07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Apia February 2021", + "date":"2021-02-26T21:27:13.146Z", + "location":{ + "title":"Apia, Tuamasaga, Samoa", + "city":"Apia", + "tzid":"Pacific/Apia", + "latitude":-13.83333, + "longitude":-171.76666, + "cc":"WS", + "country":"Samoa", + "admin1":"Tuamasaga", + "geo":"geoname", + "geonameid":4035413 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 19:35", + "date":"2021-02-27T19:35:00+14:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 20:25", + "date":"2021-02-28T20:25:00+14:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Sanaa February 2021", + "date":"2021-02-26T21:27:13.602Z", + "location":{ + "title":"Sanaa, Yemen", + "city":"Sanaa", + "tzid":"Asia/Aden", + "latitude":15.35472, + "longitude":44.20667, + "cc":"YE", + "country":"Yemen", + "admin1":"Sanaa", + "geo":"geoname", + "geonameid":71137 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 17:51", + "date":"2021-02-26T17:51:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:42", + "date":"2021-02-27T18:42:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Mamoudzou February 2021", + "date":"2021-02-26T21:27:14.113Z", + "location":{ + "title":"Mamoudzou, Mayotte", + "city":"Mamoudzou", + "tzid":"Indian/Mayotte", + "latitude":-12.78234, + "longitude":45.22878, + "cc":"YT", + "country":"Mayotte", + "admin1":"Mamoudzou", + "geo":"geoname", + "geonameid":921815 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:06", + "date":"2021-02-26T18:06:00+03:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:56", + "date":"2021-02-27T18:56:00+03:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Cape Town February 2021", + "date":"2021-02-26T21:27:14.589Z", + "location":{ + "title":"Cape Town, Western Cape, South Africa", + "city":"Cape Town", + "tzid":"Africa/Johannesburg", + "latitude":-33.92584, + "longitude":18.42322, + "cc":"ZA", + "country":"South Africa", + "admin1":"Western Cape", + "geo":"geoname", + "geonameid":3369157 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 7:11pm", + "date":"2021-02-26T19:11:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 8:07pm", + "date":"2021-02-27T20:07:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Durban February 2021", + "date":"2021-02-26T21:27:15.052Z", + "location":{ + "title":"Durban, KwaZulu-Natal, South Africa", + "city":"Durban", + "tzid":"Africa/Johannesburg", + "latitude":-29.8579, + "longitude":31.0292, + "cc":"ZA", + "country":"South Africa", + "admin1":"KwaZulu-Natal", + "geo":"geoname", + "geonameid":1007311 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:17pm", + "date":"2021-02-26T18:17:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:11pm", + "date":"2021-02-27T19:11:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Johannesburg February 2021", + "date":"2021-02-26T21:27:15.510Z", + "location":{ + "title":"Johannesburg, Gauteng, South Africa", + "city":"Johannesburg", + "tzid":"Africa/Johannesburg", + "latitude":-26.20227, + "longitude":28.04363, + "cc":"ZA", + "country":"South Africa", + "admin1":"Gauteng", + "geo":"geoname", + "geonameid":993800 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:25pm", + "date":"2021-02-26T18:25:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:18pm", + "date":"2021-02-27T19:18:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Pretoria February 2021", + "date":"2021-02-26T21:27:15.983Z", + "location":{ + "title":"Pretoria, Gauteng, South Africa", + "city":"Pretoria", + "tzid":"Africa/Johannesburg", + "latitude":-25.74486, + "longitude":28.18783, + "cc":"ZA", + "country":"South Africa", + "admin1":"Gauteng", + "geo":"geoname", + "geonameid":964137 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 6:24pm", + "date":"2021-02-26T18:24:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:17pm", + "date":"2021-02-27T19:17:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Lusaka February 2021", + "date":"2021-02-26T21:27:16.466Z", + "location":{ + "title":"Lusaka, Zambia", + "city":"Lusaka", + "tzid":"Africa/Lusaka", + "latitude":-15.40669, + "longitude":28.28713, + "cc":"ZM", + "country":"Zambia", + "admin1":"Lusaka", + "geo":"geoname", + "geonameid":909137 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:16", + "date":"2021-02-26T18:16:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:06", + "date":"2021-02-27T19:06:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + }, + { + "title":"Hebcal Harare February 2021", + "date":"2021-02-26T21:27:16.929Z", + "location":{ + "title":"Harare, Zimbabwe", + "city":"Harare", + "tzid":"Africa/Harare", + "latitude":-17.82772, + "longitude":31.05337, + "cc":"ZW", + "country":"Zimbabwe", + "admin1":"Harare", + "geo":"geoname", + "geonameid":890299 + }, + "items":[ + { + "title":"Purim", + "date":"2021-02-26", + "category":"holiday", + "subcat":"major", + "hebrew":"פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", + "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" + }, + { + "title":"Candle lighting: 18:07", + "date":"2021-02-26T18:07:00+02:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Parashat Tetzaveh", + "date":"2021-02-27", + "category":"parashat", + "hebrew":"פרשת תצוה", + "leyning":{ + "1":"Exodus 27:20 - 28:12", + "2":"Exodus 28:13 - 28:30", + "3":"Exodus 28:31 - 28:43", + "4":"Exodus 29:1 - 29:18", + "5":"Exodus 29:19 - 29:37", + "6":"Exodus 29:38 - 29:46", + "7":"Exodus 30:1 - 30:10", + "torah":"Exodus 27:20-30:10", + "haftarah":"Ezekiel 43:10 - 43:27", + "maftir":"Exodus 30:8 - 30:10", + "triennial":{ + "1":"Exodus 28:31 - 28:35", + "2":"Exodus 28:36 - 28:38", + "3":"Exodus 28:39 - 28:43", + "4":"Exodus 29:1 - 29:4", + "5":"Exodus 29:5 - 29:9", + "6":"Exodus 29:10 - 29:14", + "7":"Exodus 29:15 - 29:18", + "maftir":"Exodus 29:15 - 29:18" + } + }, + "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:57", + "date":"2021-02-27T18:57:00+02:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + }, + { + "title":"Shushan Purim", + "date":"2021-02-28", + "category":"holiday", + "subcat":"minor", + "hebrew":"שושן פורים", + "leyning":{ + "1":"Exodus 17:8 - 17:10", + "2":"Exodus 17:11 - 17:13", + "3":"Exodus 17:14 - 17:16", + "torah":"Exodus 17:8-17:16" + }, + "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", + "memo":"Purim celebrated in Jerusalem and walled cities" + } + ] + } +] \ No newline at end of file diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 86265866..438cfc31 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -6,7 +6,7 @@ from app.database.models import Event, Task, User from app.dependencies import get_db, templates -from app.internal import international_days, locations, shabbat, zodiac +from app.internal import international_days, shabbat, zodiac from app.internal.security.dependencies import current_user from app.routers.user import get_all_user_events @@ -211,21 +211,11 @@ async def dayview( current_time_with_attrs = CurrentTimeAttributes(date=day) inter_day = international_days.get_international_day_per_day(session, day) tasks = ( - session.query(Task) - .filter(Task.owner_id == user.user_id) - .filter(Task.date == day.date()) - .order_by(Task.time) + session.query(Task).filter(Task.owner_id == user.user_id).filter( + Task.date == day.date()).order_by(Task.time) ) - location_and_shabbat = locations.get_user_location(session) - if location_and_shabbat: - location = location_and_shabbat["location"]["title"] - shabbat_obj = shabbat.get_shabbat_if_date_friday( - location_and_shabbat, - day.date(), - ) - else: - location = None - shabbat_obj = None + shabbat_obj, location_by_ip = shabbat.get_shabbat_if_date_friday( + day.date()) month = day.strftime("%B").upper() return templates.TemplateResponse( "calendar_day_view.html", @@ -241,7 +231,7 @@ async def dayview( "view": view, "current_time": current_time_with_attrs, "tasks": tasks, - "user_location": location, + "user_location": location_by_ip, "shabbat": shabbat_obj, }, ) diff --git a/requirements.txt b/requirements.txt index 9612912e..ffc6d292 100644 --- a/requirements.txt +++ b/requirements.txt @@ -160,3 +160,5 @@ wsproto==1.0.0 yapf==0.30.0 yarl==1.6.3 zipp==3.4.0 + +django-os-geocoder~=0.1.6 \ No newline at end of file From 2e8be844d9ff4c97024d722700c264c0ca575fa2 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Sat, 27 Feb 2021 00:17:54 +0200 Subject: [PATCH 18/38] fix: improvments --- app/database/models.py | 32 +++++++++----------------------- 1 file changed, 9 insertions(+), 23 deletions(-) diff --git a/app/database/models.py b/app/database/models.py index 4466dc76..e79e423b 100644 --- a/app/database/models.py +++ b/app/database/models.py @@ -4,27 +4,13 @@ from datetime import datetime from typing import Any, Dict -from sqlalchemy import ( - DDL, - JSON, - Boolean, - Column, - Date, - DateTime, - Enum, - Float, - ForeignKey, - Index, - Integer, - String, - Time, - UniqueConstraint, - event, -) +from sqlalchemy import (Boolean, Column, Date, DateTime, DDL, Enum, event, + Float, ForeignKey, Index, Integer, JSON, String, Time, + UniqueConstraint) from sqlalchemy.dialects.postgresql import TSVECTOR from sqlalchemy.exc import IntegrityError, SQLAlchemyError -from sqlalchemy.ext.declarative.api import DeclarativeMeta, declarative_base -from sqlalchemy.orm import Session, relationship +from sqlalchemy.ext.declarative.api import declarative_base, DeclarativeMeta +from sqlalchemy.orm import relationship, Session from sqlalchemy.sql.schema import CheckConstraint import app.routers.salary.config as SalaryConfig @@ -191,10 +177,10 @@ class Category(Base): @staticmethod def create( - db_session: Session, - name: str, - color: str, - user_id: int, + db_session: Session, + name: str, + color: str, + user_id: int, ) -> Category: try: category = Category(name=name, color=color, user_id=user_id) From 7a4c32c05a38eb5651cafa24797d7c8a17a0b979 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Sat, 27 Feb 2021 00:18:02 +0200 Subject: [PATCH 19/38] fix: improvments --- app/internal/locations.py | 59 - app/resources/locations.json | 2047 ---------------------------------- tests/test_locations.py | 14 - 3 files changed, 2120 deletions(-) delete mode 100644 app/internal/locations.py delete mode 100644 app/resources/locations.json delete mode 100644 tests/test_locations.py diff --git a/app/internal/locations.py b/app/internal/locations.py deleted file mode 100644 index 3aefacc2..00000000 --- a/app/internal/locations.py +++ /dev/null @@ -1,59 +0,0 @@ -from typing import Any, Dict, Optional - -import requests -from sqlalchemy.orm import Session - -from app.database.models import Location - - -def create_location_object(location_: Dict[str, str]) -> Location: - """Returns a Location object from the dictionary data. - - Args: - location_: A dictionary location related information. - - Returns: - A new Location object. - """ - return Location( - country=location_["country"], - city=location_["city"], - zip_number=location_["zip_number"], - ) - - -def return_zip_to_location(session: Session) -> Optional[str]: - """Returns the zip number of the user IP location that match location - object. - - Args: - session: The database connection. - - Returns: - A zip number for the user location. - """ - response = requests.get("http://ipinfo.io/json") - if not response.ok: - return None - location_by_ip = response.json() - for location in session.query(Location).all(): - if (location.city == location_by_ip["city"] - and location.country == location_by_ip["country"]): - return location.zip_number - - -def get_user_location(session: Session) -> Optional[Dict[str, Any]]: - """Returns the user location. - - Args: - session: The database connection. - - Returns: - A user location. - """ - my_location = return_zip_to_location(session) - response = requests.get( - f"https://www.hebcal.com/shabbat?cfg=json&geonameid={my_location}" - ) - if response.ok: - return response.json() diff --git a/app/resources/locations.json b/app/resources/locations.json deleted file mode 100644 index ee415682..00000000 --- a/app/resources/locations.json +++ /dev/null @@ -1,2047 +0,0 @@ -[ - { - "country":"AD", - "city":"Andorra La Vella", - "zip_number":"3041563" - }, - { - "country":"AE", - "city":"Abu Dhabi", - "zip_number":"292968" - }, - { - "country":"AE", - "city":"Dubai", - "zip_number":"292223" - }, - { - "country":"AF", - "city":"Kabul", - "zip_number":"1138958" - }, - { - "country":"AI", - "city":"The Valley", - "zip_number":"3573374" - }, - { - "country":"AL", - "city":"Tirana", - "zip_number":"3183875" - }, - { - "country":"AM", - "city":"Yerevan", - "zip_number":"616052" - }, - { - "country":"AO", - "city":"Luanda", - "zip_number":"2240449" - }, - { - "country":"AR", - "city":"Buenos Aires", - "zip_number":"3435910" - }, - { - "country":"AR", - "city":"Cordoba", - "zip_number":"3860259" - }, - { - "country":"AR", - "city":"Rosario", - "zip_number":"3838583" - }, - { - "country":"AS", - "city":"Pago Pago", - "zip_number":"5881576" - }, - { - "country":"AT", - "city":"Vienna", - "zip_number":"2761369" - }, - { - "country":"AU", - "city":"Adelaide", - "zip_number":"2078025" - }, - { - "country":"AU", - "city":"Brisbane", - "zip_number":"2174003" - }, - { - "country":"AU", - "city":"Canberra", - "zip_number":"2172517" - }, - { - "country":"AU", - "city":"Gold Coast", - "zip_number":"2165087" - }, - { - "country":"AU", - "city":"Hobart", - "zip_number":"2163355" - }, - { - "country":"AU", - "city":"Melbourne", - "zip_number":"2158177" - }, - { - "country":"AU", - "city":"Perth", - "zip_number":"2063523" - }, - { - "country":"AU", - "city":"Sydney", - "zip_number":"2147714" - }, - { - "country":"AW", - "city":"Oranjestad", - "zip_number":"3577154" - }, - { - "country":"AZ", - "city":"Baku", - "zip_number":"587084" - }, - { - "country":"BA", - "city":"Sarajevo", - "zip_number":"3191281" - }, - { - "country":"BB", - "city":"Bridgetown", - "zip_number":"3374036" - }, - { - "country":"BD", - "city":"Chittagong", - "zip_number":"1205733" - }, - { - "country":"BD", - "city":"Dhaka", - "zip_number":"1185241" - }, - { - "country":"BD", - "city":"Khulna", - "zip_number":"1336135" - }, - { - "country":"BE", - "city":"Brussels", - "zip_number":"2800866" - }, - { - "country":"BF", - "city":"Ouagadougou", - "zip_number":"2357048" - }, - { - "country":"BG", - "city":"Sofia", - "zip_number":"727011" - }, - { - "country":"BH", - "city":"Manama", - "zip_number":"290340" - }, - { - "country":"BI", - "city":"Bujumbura", - "zip_number":"425378" - }, - { - "country":"BJ", - "city":"Porto", - "zip_number":"novo" - }, - { - "country":"BM", - "city":"Hamilton", - "zip_number":"3573197" - }, - { - "country":"BN", - "city":"Bandar Seri Begawan", - "zip_number":"1820906" - }, - { - "country":"BO", - "city":"La Paz", - "zip_number":"3911925" - }, - { - "country":"BO", - "city":"Santa Cruz de la Sierra", - "zip_number":"3904906" - }, - { - "country":"BR", - "city":"Belo Horizonte", - "zip_number":"3470127" - }, - { - "country":"BR", - "city":"Brasilia", - "zip_number":"3469058" - }, - { - "country":"BR", - "city":"Fortaleza", - "zip_number":"3399415" - }, - { - "country":"BR", - "city":"Rio de Janeiro", - "zip_number":"3451190" - }, - { - "country":"BR", - "city":"Salvador", - "zip_number":"3450554" - }, - { - "country":"BR", - "city":"Sao Paulo", - "zip_number":"3448439" - }, - { - "country":"BS", - "city":"Nassau", - "zip_number":"3571824" - }, - { - "country":"BT", - "city":"Thimphu", - "zip_number":"1252416" - }, - { - "country":"BW", - "city":"Gaborone", - "zip_number":"933773" - }, - { - "country":"BY", - "city":"Minsk", - "zip_number":"625144" - }, - { - "country":"BZ", - "city":"Belmopan", - "zip_number":"3582672" - }, - { - "country":"CA", - "city":"Calgary", - "zip_number":"5913490" - }, - { - "country":"CA", - "city":"Edmonton", - "zip_number":"5946768" - }, - { - "country":"CA", - "city":"Halifax", - "zip_number":"6324729" - }, - { - "country":"CA", - "city":"Mississauga", - "zip_number":"6075357" - }, - { - "country":"CA", - "city":"Montreal", - "zip_number":"6077243" - }, - { - "country":"CA", - "city":"Ottawa", - "zip_number":"6094817" - }, - { - "country":"CA", - "city":"Quebec City", - "zip_number":"6325494" - }, - { - "country":"CA", - "city":"Regina", - "zip_number":"6119109" - }, - { - "country":"CA", - "city":"Saskatoon", - "zip_number":"6141256" - }, - { - "country":"CA", - "city":"St. John's", - "zip_number":"05" - }, - { - "country":"CA", - "city":"Toronto", - "zip_number":"6167865" - }, - { - "country":"CA", - "city":"Vancouver", - "zip_number":"6173331" - }, - { - "country":"CA", - "city":"Victoria", - "zip_number":"6174041" - }, - { - "country":"CA", - "city":"Winnipeg", - "zip_number":"6183235" - }, - { - "country":"CD", - "city":"Kinshasa", - "zip_number":"2314302" - }, - { - "country":"CD", - "city":"Lubumbashi", - "zip_number":"922704" - }, - { - "country":"CF", - "city":"Bangui", - "zip_number":"2389853" - }, - { - "country":"CG", - "city":"Brazzaville", - "zip_number":"2260535" - }, - { - "country":"CH", - "city":"Bern", - "zip_number":"2661552" - }, - { - "country":"CH", - "city":"Geneva", - "zip_number":"2660646" - }, - { - "country":"CH", - "city":"Zurich", - "zip_number":"2657896" - }, - { - "country":"CI", - "city":"Abidjan", - "zip_number":"2293538" - }, - { - "country":"CI", - "city":"Yamoussoukro", - "zip_number":"2279755" - }, - { - "country":"CK", - "city":"Avarua", - "zip_number":"4035715" - }, - { - "country":"CL", - "city":"Santiago", - "zip_number":"3871336" - }, - { - "country":"CM", - "city":"Douala", - "zip_number":"2232593" - }, - { - "country":"CM", - "city":"Yaounde", - "zip_number":"2220957" - }, - { - "country":"CN", - "city":"Beijing", - "zip_number":"1816670" - }, - { - "country":"CN", - "city":"Chengdu", - "zip_number":"1815286" - }, - { - "country":"CN", - "city":"Chongqing", - "zip_number":"1814906" - }, - { - "country":"CN", - "city":"Guangzhou", - "zip_number":"1809858" - }, - { - "country":"CN", - "city":"Harbin", - "zip_number":"2037013" - }, - { - "country":"CN", - "city":"Kaifeng", - "zip_number":"1804879" - }, - { - "country":"CN", - "city":"Lanzhou", - "zip_number":"1804430" - }, - { - "country":"CN", - "city":"Nanchong", - "zip_number":"1800146" - }, - { - "country":"CN", - "city":"Nanjing", - "zip_number":"1799962" - }, - { - "country":"CN", - "city":"Puyang", - "zip_number":"1798422" - }, - { - "country":"CN", - "city":"Shanghai", - "zip_number":"1796236" - }, - { - "country":"CN", - "city":"Shenyang", - "zip_number":"2034937" - }, - { - "country":"CN", - "city":"Shenzhen", - "zip_number":"1795565" - }, - { - "country":"CN", - "city":"Shiyan", - "zip_number":"1794903" - }, - { - "country":"CN", - "city":"Tai'an", - "zip_number":"1793724" - }, - { - "country":"CN", - "city":"Tianjin", - "zip_number":"1792947" - }, - { - "country":"CN", - "city":"Wuhan", - "zip_number":"1791247" - }, - { - "country":"CN", - "city":"Xi'an", - "zip_number":"1790630" - }, - { - "country":"CN", - "city":"Yueyang", - "zip_number":"1927639" - }, - { - "country":"CN", - "city":"Zhumadian", - "zip_number":"1783873" - }, - { - "country":"CO", - "city":"Barranquilla", - "zip_number":"3689147" - }, - { - "country":"CO", - "city":"Bogota", - "zip_number":"3688689" - }, - { - "country":"CO", - "city":"Cali", - "zip_number":"3687925" - }, - { - "country":"CO", - "city":"Medellin", - "zip_number":"3674962" - }, - { - "country":"CR", - "city":"San José", - "zip_number":"3621849" - }, - { - "country":"CU", - "city":"Havana", - "zip_number":"3553478" - }, - { - "country":"CV", - "city":"Praia", - "zip_number":"3374333" - }, - { - "country":"CW", - "city":"Willemstad", - "zip_number":"3513090" - }, - { - "country":"CY", - "city":"Nicosia", - "zip_number":"146268" - }, - { - "country":"CZ", - "city":"Prague", - "zip_number":"3067696" - }, - { - "country":"DE", - "city":"Berlin", - "zip_number":"2950159" - }, - { - "country":"DE", - "city":"Hamburg", - "zip_number":"2911298" - }, - { - "country":"DE", - "city":"Munich", - "zip_number":"2867714" - }, - { - "country":"DK", - "city":"Copenhagen", - "zip_number":"2618425" - }, - { - "country":"DM", - "city":"Roseau", - "zip_number":"3575635" - }, - { - "country":"DO", - "city":"Santiago de los Caballeros", - "zip_number":"3492914" - }, - { - "country":"DO", - "city":"Santo Domingo", - "zip_number":"3492908" - }, - { - "country":"DZ", - "city":"Algiers", - "zip_number":"2507480" - }, - { - "country":"EC", - "city":"Guayaquil", - "zip_number":"3657509" - }, - { - "country":"EC", - "city":"Quito", - "zip_number":"3652462" - }, - { - "country":"EE", - "city":"Tallinn", - "zip_number":"588409" - }, - { - "country":"EG", - "city":"Al Jizah", - "zip_number":"360995" - }, - { - "country":"EG", - "city":"Alexandria", - "zip_number":"361058" - }, - { - "country":"EG", - "city":"Cairo", - "zip_number":"360630" - }, - { - "country":"ER", - "city":"Asmara", - "zip_number":"343300" - }, - { - "country":"ES", - "city":"Barcelona", - "zip_number":"3128760" - }, - { - "country":"ES", - "city":"Madrid", - "zip_number":"3117735" - }, - { - "country":"ET", - "city":"Addis Ababa", - "zip_number":"344979" - }, - { - "country":"FI", - "city":"Helsinki", - "zip_number":"658225" - }, - { - "country":"FJ", - "city":"Suva", - "zip_number":"2198148" - }, - { - "country":"FK", - "city":"Stanley", - "zip_number":"3426691" - }, - { - "country":"FO", - "city":"Tórshavn", - "zip_number":"2611396" - }, - { - "country":"FR", - "city":"Marseilles", - "zip_number":"2995469" - }, - { - "country":"FR", - "city":"Paris", - "zip_number":"2988507" - }, - { - "country":"GA", - "city":"Libreville", - "zip_number":"2399697" - }, - { - "country":"GB", - "city":"Belfast", - "zip_number":"2655984" - }, - { - "country":"GB", - "city":"Birmingham", - "zip_number":"2655603" - }, - { - "country":"GB", - "city":"Bristol", - "zip_number":"2654675" - }, - { - "country":"GB", - "city":"Cardiff", - "zip_number":"2653822" - }, - { - "country":"GB", - "city":"Edinburgh", - "zip_number":"2650225" - }, - { - "country":"GB", - "city":"Glasgow", - "zip_number":"2648579" - }, - { - "country":"GB", - "city":"Leeds", - "zip_number":"2644688" - }, - { - "country":"GB", - "city":"Liverpool", - "zip_number":"2644210" - }, - { - "country":"GB", - "city":"London", - "zip_number":"2643743" - }, - { - "country":"GB", - "city":"Manchester", - "zip_number":"2643123" - }, - { - "country":"GB", - "city":"Sheffield", - "zip_number":"2638077" - }, - { - "country":"GE", - "city":"Tbilisi", - "zip_number":"611717" - }, - { - "country":"GH", - "city":"Accra", - "zip_number":"2306104" - }, - { - "country":"GH", - "city":"Kumasi", - "zip_number":"2298890" - }, - { - "country":"GI", - "city":"Gibraltar", - "zip_number":"2411585" - }, - { - "country":"GL", - "city":"Nuuk", - "zip_number":"3421319" - }, - { - "country":"GM", - "city":"Banjul", - "zip_number":"2413876" - }, - { - "country":"GN", - "city":"Camayenne", - "zip_number":"2422488" - }, - { - "country":"GN", - "city":"Conakry", - "zip_number":"2422465" - }, - { - "country":"GQ", - "city":"Malabo", - "zip_number":"2309527" - }, - { - "country":"GR", - "city":"Athens", - "zip_number":"264371" - }, - { - "country":"GT", - "city":"Guatemala City", - "zip_number":"3598132" - }, - { - "country":"GW", - "city":"Bissau", - "zip_number":"2374775" - }, - { - "country":"GY", - "city":"Georgetown", - "zip_number":"3378644" - }, - { - "country":"HK", - "city":"Hong Kong", - "zip_number":"1819729" - }, - { - "country":"HN", - "city":"Tegucigalpa", - "zip_number":"3600949" - }, - { - "country":"HR", - "city":"Zagreb", - "zip_number":"3186886" - }, - { - "country":"HT", - "city":"Port", - "zip_number":"au" - }, - { - "country":"HU", - "city":"Budapest", - "zip_number":"3054643" - }, - { - "country":"ID", - "city":"Bandung", - "zip_number":"1650357" - }, - { - "country":"ID", - "city":"Bekasi", - "zip_number":"1649378" - }, - { - "country":"ID", - "city":"Depok", - "zip_number":"1645518" - }, - { - "country":"ID", - "city":"Jakarta", - "zip_number":"1642911" - }, - { - "country":"ID", - "city":"Makassar", - "zip_number":"1622786" - }, - { - "country":"ID", - "city":"Medan", - "zip_number":"1214520" - }, - { - "country":"ID", - "city":"Palembang", - "zip_number":"1633070" - }, - { - "country":"ID", - "city":"Semarang", - "zip_number":"1627896" - }, - { - "country":"ID", - "city":"South Tangerang", - "zip_number":"8581443" - }, - { - "country":"ID", - "city":"Surabaya", - "zip_number":"1625822" - }, - { - "country":"ID", - "city":"Tangerang", - "zip_number":"1625084" - }, - { - "country":"IE", - "city":"Dublin", - "zip_number":"2964574" - }, - { - "country":"IL", - "city":"Ashdod", - "zip_number":"295629" - }, - { - "country":"IL", - "city":"Ashkelon", - "zip_number":"295620" - }, - { - "country":"IL", - "city":"Bat Yam", - "zip_number":"295548" - }, - { - "country":"IL", - "city":"Be'er Sheva", - "zip_number":"295530" - }, - { - "country":"IL", - "city":"Beit Shemesh", - "zip_number":"295432" - }, - { - "country":"IL", - "city":"Bnei Brak", - "zip_number":"295514" - }, - { - "country":"IL", - "city":"Eilat", - "zip_number":"295277" - }, - { - "country":"IL", - "city":"Hadera", - "zip_number":"294946" - }, - { - "country":"IL", - "city":"Haifa", - "zip_number":"294801" - }, - { - "country":"IL", - "city":"Herzliya", - "zip_number":"294778" - }, - { - "country":"IL", - "city":"Holon", - "zip_number":"294751" - }, - { - "country":"IL", - "city":"Jerusalem", - "zip_number":"281184" - }, - { - "country":"IL", - "city":"Kfar Saba", - "zip_number":"294514" - }, - { - "country":"IL", - "city":"Lod", - "zip_number":"294421" - }, - { - "country":"IL", - "city":"Modiin", - "zip_number":"282926" - }, - { - "country":"IL", - "city":"Nazareth", - "zip_number":"294098" - }, - { - "country":"IL", - "city":"Netanya", - "zip_number":"294071" - }, - { - "country":"IL", - "city":"Petach Tikvah", - "zip_number":"293918" - }, - { - "country":"IL", - "city":"Ra'anana", - "zip_number":"293807" - }, - { - "country":"IL", - "city":"Ramat Gan", - "zip_number":"293788" - }, - { - "country":"IL", - "city":"Ramla", - "zip_number":"293768" - }, - { - "country":"IL", - "city":"Rishon LeZion", - "zip_number":"293703" - }, - { - "country":"IL", - "city":"Tel Aviv", - "zip_number":"293397" - }, - { - "country":"IL", - "city":"Tiberias", - "zip_number":"293322" - }, - { - "country":"IM", - "city":"Douglas", - "zip_number":"3042237" - }, - { - "country":"IN", - "city":"Ahmadabad", - "zip_number":"1279233" - }, - { - "country":"IN", - "city":"Bangalore", - "zip_number":"1277333" - }, - { - "country":"IN", - "city":"Bombay", - "zip_number":"1275339" - }, - { - "country":"IN", - "city":"Calcutta", - "zip_number":"1275004" - }, - { - "country":"IN", - "city":"Chennai", - "zip_number":"1264527" - }, - { - "country":"IN", - "city":"Cochin", - "zip_number":"1273874" - }, - { - "country":"IN", - "city":"Hyderabad", - "zip_number":"1269843" - }, - { - "country":"IN", - "city":"Jaipur", - "zip_number":"1269515" - }, - { - "country":"IN", - "city":"Kanpur", - "zip_number":"1267995" - }, - { - "country":"IN", - "city":"New Delhi", - "zip_number":"1261481" - }, - { - "country":"IN", - "city":"Pune", - "zip_number":"1259229" - }, - { - "country":"IN", - "city":"Surat", - "zip_number":"1255364" - }, - { - "country":"IQ", - "city":"Baghdad", - "zip_number":"98182" - }, - { - "country":"IR", - "city":"Tehran", - "zip_number":"112931" - }, - { - "country":"IS", - "city":"Reykjavík", - "zip_number":"3413829" - }, - { - "country":"IT", - "city":"Milano", - "zip_number":"3173435" - }, - { - "country":"IT", - "city":"Rome", - "zip_number":"3169070" - }, - { - "country":"JM", - "city":"Kingston", - "zip_number":"3489854" - }, - { - "country":"JO", - "city":"Amman", - "zip_number":"250441" - }, - { - "country":"JP", - "city":"Kobe", - "zip_number":"shi" - }, - { - "country":"JP", - "city":"Kyoto", - "zip_number":"1857910" - }, - { - "country":"JP", - "city":"Nagoya", - "zip_number":"shi" - }, - { - "country":"JP", - "city":"Osaka", - "zip_number":"shi" - }, - { - "country":"JP", - "city":"Sapporo", - "zip_number":"2128295" - }, - { - "country":"JP", - "city":"Tokyo", - "zip_number":"1850147" - }, - { - "country":"KE", - "city":"Nairobi", - "zip_number":"184745" - }, - { - "country":"KG", - "city":"Bishkek", - "zip_number":"1528675" - }, - { - "country":"KH", - "city":"Phnom Penh", - "zip_number":"1821306" - }, - { - "country":"KM", - "city":"Moroni", - "zip_number":"921772" - }, - { - "country":"KN", - "city":"Basseterre", - "zip_number":"3575551" - }, - { - "country":"KP", - "city":"Pyongyang", - "zip_number":"1871859" - }, - { - "country":"KR", - "city":"Busan", - "zip_number":"1838524" - }, - { - "country":"KR", - "city":"Seoul", - "zip_number":"1835848" - }, - { - "country":"KW", - "city":"Kuwait", - "zip_number":"285787" - }, - { - "country":"KY", - "city":"George Town", - "zip_number":"3580661" - }, - { - "country":"KZ", - "city":"Almaty", - "zip_number":"1526384" - }, - { - "country":"KZ", - "city":"Astana", - "zip_number":"1526273" - }, - { - "country":"LA", - "city":"Vientiane", - "zip_number":"1651944" - }, - { - "country":"LB", - "city":"Beirut", - "zip_number":"276781" - }, - { - "country":"LC", - "city":"Castries", - "zip_number":"3576812" - }, - { - "country":"LI", - "city":"Vaduz", - "zip_number":"3042030" - }, - { - "country":"LR", - "city":"Monrovia", - "zip_number":"2274895" - }, - { - "country":"LS", - "city":"Maseru", - "zip_number":"932505" - }, - { - "country":"LT", - "city":"Vilnius", - "zip_number":"593116" - }, - { - "country":"LU", - "city":"Luxemburg", - "zip_number":"2960316" - }, - { - "country":"LV", - "city":"Riga", - "zip_number":"456172" - }, - { - "country":"LY", - "city":"Tripoli", - "zip_number":"2210247" - }, - { - "country":"MA", - "city":"Casablanca", - "zip_number":"2553604" - }, - { - "country":"MA", - "city":"Rabat", - "zip_number":"2538475" - }, - { - "country":"MD", - "city":"Chisinau", - "zip_number":"618426" - }, - { - "country":"ME", - "city":"Podgorica", - "zip_number":"3193044" - }, - { - "country":"MG", - "city":"Antananarivo", - "zip_number":"1070940" - }, - { - "country":"MK", - "city":"Skopje", - "zip_number":"785842" - }, - { - "country":"ML", - "city":"Bamako", - "zip_number":"2460596" - }, - { - "country":"MM", - "city":"Mandalay", - "zip_number":"1311874" - }, - { - "country":"MM", - "city":"Rangoon", - "zip_number":"1298824" - }, - { - "country":"MN", - "city":"Ulaanbaatar", - "zip_number":"2028462" - }, - { - "country":"MP", - "city":"Saipan", - "zip_number":"7828758" - }, - { - "country":"MR", - "city":"Nouakchott", - "zip_number":"2377450" - }, - { - "country":"MS", - "city":"Plymouth", - "zip_number":"3578069" - }, - { - "country":"MT", - "city":"Valletta", - "zip_number":"2562305" - }, - { - "country":"MU", - "city":"Port Louis", - "zip_number":"934154" - }, - { - "country":"MW", - "city":"Lilongwe", - "zip_number":"927967" - }, - { - "country":"MX", - "city":"Cancun", - "zip_number":"3531673" - }, - { - "country":"MX", - "city":"Guadalajara", - "zip_number":"4005539" - }, - { - "country":"MX", - "city":"Iztapalapa", - "zip_number":"3526683" - }, - { - "country":"MX", - "city":"Mazatlan", - "zip_number":"3996322" - }, - { - "country":"MX", - "city":"Mexico City", - "zip_number":"3530597" - }, - { - "country":"MX", - "city":"Monterrey", - "zip_number":"3995465" - }, - { - "country":"MX", - "city":"Puerto Vallarta", - "zip_number":"3991328" - }, - { - "country":"MX", - "city":"Tijuana", - "zip_number":"3981609" - }, - { - "country":"MY", - "city":"Kota Bharu", - "zip_number":"1736376" - }, - { - "country":"MY", - "city":"Kuala Lumpur", - "zip_number":"1735161" - }, - { - "country":"MZ", - "city":"Maputo", - "zip_number":"1040652" - }, - { - "country":"NA", - "city":"Windhoek", - "zip_number":"3352136" - }, - { - "country":"NC", - "city":"Nouméa", - "zip_number":"2139521" - }, - { - "country":"NE", - "city":"Niamey", - "zip_number":"2440485" - }, - { - "country":"NG", - "city":"Abuja", - "zip_number":"2352778" - }, - { - "country":"NG", - "city":"Lagos", - "zip_number":"2332459" - }, - { - "country":"NI", - "city":"Managua", - "zip_number":"3617763" - }, - { - "country":"NL", - "city":"Amsterdam", - "zip_number":"2759794" - }, - { - "country":"NO", - "city":"Oslo", - "zip_number":"3143244" - }, - { - "country":"NP", - "city":"Kathmandu", - "zip_number":"1283240" - }, - { - "country":"NU", - "city":"Alofi", - "zip_number":"4036284" - }, - { - "country":"NZ", - "city":"Auckland", - "zip_number":"2193733" - }, - { - "country":"NZ", - "city":"Christchurch", - "zip_number":"2192362" - }, - { - "country":"NZ", - "city":"Wellington", - "zip_number":"2179537" - }, - { - "country":"OM", - "city":"Muscat", - "zip_number":"287286" - }, - { - "country":"PA", - "city":"Panama City", - "zip_number":"3703443" - }, - { - "country":"PE", - "city":"Lima", - "zip_number":"3936456" - }, - { - "country":"PF", - "city":"Papeete", - "zip_number":"4033936" - }, - { - "country":"PG", - "city":"Port Moresby", - "zip_number":"2088122" - }, - { - "country":"PH", - "city":"Manila", - "zip_number":"1701668" - }, - { - "country":"PK", - "city":"Islamabad", - "zip_number":"1176615" - }, - { - "country":"PK", - "city":"Karachi", - "zip_number":"1174872" - }, - { - "country":"PL", - "city":"Warsaw", - "zip_number":"756135" - }, - { - "country":"PR", - "city":"San Juan", - "zip_number":"4568127" - }, - { - "country":"PT", - "city":"Lisbon", - "zip_number":"2267057" - }, - { - "country":"PY", - "city":"Asuncion", - "zip_number":"3439389" - }, - { - "country":"QA", - "city":"Doha", - "zip_number":"290030" - }, - { - "country":"RO", - "city":"Bucharest", - "zip_number":"683506" - }, - { - "country":"RS", - "city":"Belgrade", - "zip_number":"792680" - }, - { - "country":"RU", - "city":"Moscow", - "zip_number":"524901" - }, - { - "country":"RU", - "city":"Novosibirsk", - "zip_number":"1496747" - }, - { - "country":"RU", - "city":"Saint Petersburg", - "zip_number":"498817" - }, - { - "country":"RU", - "city":"Yekaterinburg", - "zip_number":"1486209" - }, - { - "country":"RW", - "city":"Kigali", - "zip_number":"202061" - }, - { - "country":"SA", - "city":"Jeddah", - "zip_number":"105343" - }, - { - "country":"SA", - "city":"Mecca", - "zip_number":"104515" - }, - { - "country":"SA", - "city":"Medina", - "zip_number":"109223" - }, - { - "country":"SA", - "city":"Riyadh", - "zip_number":"108410" - }, - { - "country":"SB", - "city":"Honiara", - "zip_number":"2108502" - }, - { - "country":"SC", - "city":"Victoria", - "zip_number":"241131" - }, - { - "country":"SD", - "city":"Khartoum", - "zip_number":"379252" - }, - { - "country":"SD", - "city":"Omdurman", - "zip_number":"365137" - }, - { - "country":"SE", - "city":"Stockholm", - "zip_number":"2673730" - }, - { - "country":"SG", - "city":"Singapore", - "zip_number":"1880252" - }, - { - "country":"SH", - "city":"Jamestown", - "zip_number":"3370903" - }, - { - "country":"SI", - "city":"Ljubljana", - "zip_number":"3196359" - }, - { - "country":"SK", - "city":"Bratislava", - "zip_number":"3060972" - }, - { - "country":"SL", - "city":"Freetown", - "zip_number":"2408770" - }, - { - "country":"SN", - "city":"Dakar", - "zip_number":"2253354" - }, - { - "country":"SO", - "city":"Mogadishu", - "zip_number":"53654" - }, - { - "country":"SR", - "city":"Paramaribo", - "zip_number":"3383330" - }, - { - "country":"ST", - "city":"São Tomé", - "zip_number":"2410763" - }, - { - "country":"SV", - "city":"San Salvador", - "zip_number":"3583361" - }, - { - "country":"SY", - "city":"Aleppo", - "zip_number":"170063" - }, - { - "country":"SY", - "city":"Damascus", - "zip_number":"170654" - }, - { - "country":"SZ", - "city":"Mbabane", - "zip_number":"934985" - }, - { - "country":"TC", - "city":"Cockburn Town", - "zip_number":"3576994" - }, - { - "country":"TD", - "city":"Ndjamena", - "zip_number":"2427123" - }, - { - "country":"TG", - "city":"Lomé", - "zip_number":"2365267" - }, - { - "country":"TH", - "city":"Bangkok", - "zip_number":"1609350" - }, - { - "country":"TJ", - "city":"Dushanbe", - "zip_number":"1221874" - }, - { - "country":"TM", - "city":"Ashgabat", - "zip_number":"162183" - }, - { - "country":"TN", - "city":"Tunis", - "zip_number":"2464470" - }, - { - "country":"TR", - "city":"Adana", - "zip_number":"325363" - }, - { - "country":"TR", - "city":"Ankara", - "zip_number":"323786" - }, - { - "country":"TR", - "city":"Bursa", - "zip_number":"750269" - }, - { - "country":"TR", - "city":"Istanbul", - "zip_number":"745044" - }, - { - "country":"TR", - "city":"Izmir", - "zip_number":"311046" - }, - { - "country":"TV", - "city":"Funafuti", - "zip_number":"2110394" - }, - { - "country":"TW", - "city":"Kaohsiung", - "zip_number":"1673820" - }, - { - "country":"TW", - "city":"Taipei", - "zip_number":"1668341" - }, - { - "country":"TZ", - "city":"Dar es Salaam", - "zip_number":"160263" - }, - { - "country":"TZ", - "city":"Dodoma", - "zip_number":"160196" - }, - { - "country":"UA", - "city":"Kharkiv", - "zip_number":"706483" - }, - { - "country":"UA", - "city":"Kiev", - "zip_number":"703448" - }, - { - "country":"UG", - "city":"Kampala", - "zip_number":"232422" - }, - { - "country":"US", - "city":"Atlanta", - "zip_number":"GA" - }, - { - "country":"US", - "city":"Austin", - "zip_number":"TX" - }, - { - "country":"US", - "city":"Baltimore", - "zip_number":"MD" - }, - { - "country":"US", - "city":"Boston", - "zip_number":"MA" - }, - { - "country":"US", - "city":"Buffalo", - "zip_number":"NY" - }, - { - "country":"US", - "city":"Chicago", - "zip_number":"IL" - }, - { - "country":"US", - "city":"Cincinnati", - "zip_number":"OH" - }, - { - "country":"US", - "city":"Cleveland", - "zip_number":"OH" - }, - { - "country":"US", - "city":"Columbus", - "zip_number":"OH" - }, - { - "country":"US", - "city":"Dallas", - "zip_number":"TX" - }, - { - "country":"US", - "city":"Denver", - "zip_number":"CO" - }, - { - "country":"US", - "city":"Detroit", - "zip_number":"MI" - }, - { - "country":"US", - "city":"Hartford", - "zip_number":"CT" - }, - { - "country":"US", - "city":"Honolulu", - "zip_number":"HI" - }, - { - "country":"US", - "city":"Houston", - "zip_number":"TX" - }, - { - "country":"US", - "city":"Lakewood", - "zip_number":"NJ" - }, - { - "country":"US", - "city":"Las Vegas", - "zip_number":"NV" - }, - { - "country":"US", - "city":"Livingston", - "zip_number":"NY" - }, - { - "country":"US", - "city":"Los Angeles", - "zip_number":"CA" - }, - { - "country":"US", - "city":"Memphis", - "zip_number":"TN" - }, - { - "country":"US", - "city":"Miami", - "zip_number":"FL" - }, - { - "country":"US", - "city":"Milwaukee", - "zip_number":"WI" - }, - { - "country":"US", - "city":"Monsey", - "zip_number":"NY" - }, - { - "country":"US", - "city":"New Haven", - "zip_number":"CT" - }, - { - "country":"US", - "city":"New York", - "zip_number":"NY" - }, - { - "country":"US", - "city":"Omaha", - "zip_number":"NE" - }, - { - "country":"US", - "city":"Orlando", - "zip_number":"FL" - }, - { - "country":"US", - "city":"Passaic", - "zip_number":"NJ" - }, - { - "country":"US", - "city":"Philadelphia", - "zip_number":"PA" - }, - { - "country":"US", - "city":"Phoenix", - "zip_number":"AZ" - }, - { - "country":"US", - "city":"Pittsburgh", - "zip_number":"PA" - }, - { - "country":"US", - "city":"Portland", - "zip_number":"OR" - }, - { - "country":"US", - "city":"Providence", - "zip_number":"RI" - }, - { - "country":"US", - "city":"Richmond", - "zip_number":"VA" - }, - { - "country":"US", - "city":"Rochester", - "zip_number":"NY" - }, - { - "country":"US", - "city":"Saint Louis", - "zip_number":"MO" - }, - { - "country":"US", - "city":"Saint Paul", - "zip_number":"MN" - }, - { - "country":"US", - "city":"San Diego", - "zip_number":"CA" - }, - { - "country":"US", - "city":"San Francisco", - "zip_number":"CA" - }, - { - "country":"US", - "city":"Seattle", - "zip_number":"WA" - }, - { - "country":"US", - "city":"Silver Spring", - "zip_number":"MD" - }, - { - "country":"US", - "city":"Teaneck", - "zip_number":"NJ" - }, - { - "country":"US", - "city":"Washington", - "zip_number":"DC" - }, - { - "country":"US", - "city":"White Plains", - "zip_number":"NY" - }, - { - "country":"UY", - "city":"Montevideo", - "zip_number":"3441575" - }, - { - "country":"UZ", - "city":"Tashkent", - "zip_number":"1512569" - }, - { - "country":"VC", - "city":"Kingstown", - "zip_number":"3577887" - }, - { - "country":"VE", - "city":"Caracas", - "zip_number":"3646738" - }, - { - "country":"VE", - "city":"Maracaibo", - "zip_number":"3633009" - }, - { - "country":"VE", - "city":"Maracay", - "zip_number":"3632998" - }, - { - "country":"VE", - "city":"Valencia", - "zip_number":"3625549" - }, - { - "country":"VG", - "city":"Road Town", - "zip_number":"3577430" - }, - { - "country":"VN", - "city":"Hanoi", - "zip_number":"1581130" - }, - { - "country":"VN", - "city":"Ho Chi Minh City", - "zip_number":"1566083" - }, - { - "country":"WS", - "city":"Apia", - "zip_number":"4035413" - }, - { - "country":"YE", - "city":"Sanaa", - "zip_number":"71137" - }, - { - "country":"YT", - "city":"Mamoudzou", - "zip_number":"921815" - }, - { - "country":"ZA", - "city":"Cape Town", - "zip_number":"3369157" - }, - { - "country":"ZA", - "city":"Durban", - "zip_number":"1007311" - }, - { - "country":"ZA", - "city":"Johannesburg", - "zip_number":"993800" - }, - { - "country":"ZA", - "city":"Pretoria", - "zip_number":"964137" - }, - { - "country":"ZM", - "city":"Lusaka", - "zip_number":"909137" - }, - { - "country":"ZW", - "city":"Harare", - "zip_number":"890299" - } -] \ No newline at end of file diff --git a/tests/test_locations.py b/tests/test_locations.py deleted file mode 100644 index e14edbfe..00000000 --- a/tests/test_locations.py +++ /dev/null @@ -1,14 +0,0 @@ -from app.internal import locations - - -def test_create_location_object(): - location_fields = { - 'country': "AD", - 'city': "Andorra La Vella", - 'zip_number': "3041563", - 'end_month': 4, - 'end_day_in_month': 19, - } - result = locations.create_location_object(location_fields) - assert result.city == 'Andorra La Vella' - assert result.zip_number == "3041563" From e5191384524b02afa74baee7b14351ca7f24be7e Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Sat, 27 Feb 2021 00:21:49 +0200 Subject: [PATCH 20/38] fix: BUGFIX --- app/internal/json_data_loader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/internal/json_data_loader.py b/app/internal/json_data_loader.py index 05badcb9..93b5c9d1 100644 --- a/app/internal/json_data_loader.py +++ b/app/internal/json_data_loader.py @@ -7,10 +7,10 @@ from app.config import RESOURCES_DIR from app.database.models import ( - Base, InternationalDays, Joke, Quote, Location, Zodiac + Base, InternationalDays, Joke, Quote, Zodiac ) from app.internal import ( - daily_quotes, international_days, jokes, locations, zodiac + daily_quotes, international_days, jokes, zodiac ) From 6c580dd9dc227bae069c7632a4887c9897ad1711 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Sat, 27 Feb 2021 00:25:14 +0200 Subject: [PATCH 21/38] fix: BUGFIX --- app/internal/shabbat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 96ec9ee6..cda52add 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -50,7 +50,7 @@ def shabbat_time_by_user_location() -> Dict[str, Union[str, date]]: def get_shabbat_if_date_friday(calendar_date: date) \ - -> Optional[Dict[str, Union[str, date]], Any]: + -> Optional[Any]: """Returns shabbat start end ending time if specific date is Saturday, else None. From ea4e41be21a5bff7f74d6a842696490d708c9481 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Sat, 27 Feb 2021 00:46:28 +0200 Subject: [PATCH 22/38] fix: STYLE --- app/internal/shabbat.py | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index cda52add..eb6e317b 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -1,16 +1,20 @@ import json from datetime import date, datetime -from typing import Any, Dict, Optional, Union +from typing import Any, Optional, Union import geocoder -def return_zip_to_ip_location() -> Optional[str]: - """Returns the zip number of the user IP location that match location - object. +def return_shabbat_details_and_user_location() -> tuple[Any, Any]: + """Returns times details which match to ip location, + and the location itself. + Used the shabbat_time_by_location JSON file, that his content is copied + from the free API: + 'https://www.hebcal.com/shabbat?cfg=json&geonameid=295277'. + This Json need to be update once in year. Returns: - A zip number for the user location. + A zip number for the user location and user location by name. """ location_by_ip = geocoder.ip('me') @@ -23,13 +27,13 @@ def return_zip_to_ip_location() -> Optional[str]: return location["items"], location_by_ip -def shabbat_time_by_user_location() -> Dict[str, Union[str, date]]: +def shabbat_time_by_user_location() -> tuple[dict[str, Union[date, Any]], Any]: """Returns the shabbat time of the user location. Returns: - Shabbat start end ending time. + Shabbat start end ending time and user location by ip. """ - shabat_items, location_by_ip = return_zip_to_ip_location() + shabat_items, location_by_ip = return_shabbat_details_and_user_location() for item in shabat_items: if "Candle lighting" in item["title"]: shabbat_entry = item @@ -55,12 +59,11 @@ def get_shabbat_if_date_friday(calendar_date: date) \ is Saturday, else None. Args: - shabbat_time: Shabbat details. calendar_date: date. Returns: Shabbat start end ending time if specific date - is Saturday, else None + is Saturday and user location by ip, else None """ shabbat_obj, location_by_ip = shabbat_time_by_user_location() if calendar_date == shabbat_obj["start_date"]: From b0bb74557bb9c86c3f230622c883e97e67e9cf8b Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Sat, 27 Feb 2021 13:00:21 +0200 Subject: [PATCH 23/38] fix: bugfix --- app/internal/shabbat.py | 6 ++++-- tests/test_shabbat.py | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index eb6e317b..8e0e7cc5 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -4,6 +4,8 @@ import geocoder +from app.config import RESOURCES_DIR + def return_shabbat_details_and_user_location() -> tuple[Any, Any]: """Returns times details which match to ip location, @@ -18,8 +20,8 @@ def return_shabbat_details_and_user_location() -> tuple[Any, Any]: """ location_by_ip = geocoder.ip('me') - path = r'../app/resources/shabbat_time_by_location.json' - with open(path, 'r') as json_file: + path = RESOURCES_DIR / "shabbat_time_by_location.json" + with open(path, 'r', encoding="utf8") as json_file: shabat_details = json.load(json_file) for location in shabat_details: if (location["location"]["city"] == location_by_ip.city diff --git a/tests/test_shabbat.py b/tests/test_shabbat.py index 356278d3..368e3c40 100644 --- a/tests/test_shabbat.py +++ b/tests/test_shabbat.py @@ -32,10 +32,10 @@ def test_return_none_if_date_no_friday(): - result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, BAD_DAY) + result = shabbat.get_shabbat_if_date_friday(BAD_DAY) assert result is None def test_return_if_date_is_friday(): - result = shabbat.get_shabbat_if_date_friday(SHABBAT_TIME, FRIDAY) + result = shabbat.get_shabbat_if_date_friday(FRIDAY) assert result From 8fea1f5b8ca6605970abb9efd50ffff9f924072f Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Sat, 27 Feb 2021 13:00:43 +0200 Subject: [PATCH 24/38] fix: bugfix --- app/routers/dayview.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 438cfc31..0e8309f6 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -216,6 +216,7 @@ async def dayview( ) shabbat_obj, location_by_ip = shabbat.get_shabbat_if_date_friday( day.date()) + print(shabbat_obj) month = day.strftime("%B").upper() return templates.TemplateResponse( "calendar_day_view.html", From 50c42d27ac74665e77d9479395f15bd93d372bcf Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Mon, 1 Mar 2021 14:34:33 +0200 Subject: [PATCH 25/38] fix: improvment --- app/routers/dayview.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 0e8309f6..438cfc31 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -216,7 +216,6 @@ async def dayview( ) shabbat_obj, location_by_ip = shabbat.get_shabbat_if_date_friday( day.date()) - print(shabbat_obj) month = day.strftime("%B").upper() return templates.TemplateResponse( "calendar_day_view.html", From 1c743c3d3adfd4a8328127df813a82157f8d8153 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Tue, 2 Mar 2021 13:20:44 +0200 Subject: [PATCH 26/38] fix: bugfix --- app/internal/shabbat.py | 40 ++-- app/resources/shabbat_time_by_location.json | 231 +++++++++++++++++++- app/routers/dayview.py | 8 +- requirements.txt | 6 +- tests/test_shabbat.py | 8 +- 5 files changed, 257 insertions(+), 36 deletions(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 8e0e7cc5..243d17e0 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -1,41 +1,45 @@ import json from datetime import date, datetime -from typing import Any, Optional, Union - -import geocoder +from typing import Any, Dict, Optional, Union from app.config import RESOURCES_DIR -def return_shabbat_details_and_user_location() -> tuple[Any, Any]: - """Returns times details which match to ip location, - and the location itself. +def return_shabbat_details_by_user_location(location_by_ip) -> Any: + """Returns times details which match to ip location. Used the shabbat_time_by_location JSON file, that his content is copied from the free API: 'https://www.hebcal.com/shabbat?cfg=json&geonameid=295277'. This Json need to be update once in year. - Returns: - A zip number for the user location and user location by name. + Args: + location_by_ip: location by ip that create with "geocoder" module. + + Returns: + A zip number for the user location. """ - location_by_ip = geocoder.ip('me') path = RESOURCES_DIR / "shabbat_time_by_location.json" with open(path, 'r', encoding="utf8") as json_file: shabat_details = json.load(json_file) for location in shabat_details: + print(location.get('location')) if (location["location"]["city"] == location_by_ip.city and location["location"]["cc"] == location_by_ip.country): - return location["items"], location_by_ip + return location["items"] -def shabbat_time_by_user_location() -> tuple[dict[str, Union[date, Any]], Any]: +def shabbat_time_by_user_location(location_by_ip) \ + -> Dict[str, Union[date, Any]]: """Returns the shabbat time of the user location. + Args: + location_by_ip: location by ip that create with "geocoder" module. + Returns: Shabbat start end ending time and user location by ip. """ - shabat_items, location_by_ip = return_shabbat_details_and_user_location() + shabat_items = return_shabbat_details_by_user_location(location_by_ip) for item in shabat_items: if "Candle lighting" in item["title"]: shabbat_entry = item @@ -52,21 +56,23 @@ def shabbat_time_by_user_location() -> tuple[dict[str, Union[date, Any]], Any]: "end_hour": shabbat_exit_hour[:5], "end_date": datetime.strptime(shabbat_exit_date, "%Y-%m-%d").date(), } - return shabbat_limit, location_by_ip + return shabbat_limit -def get_shabbat_if_date_friday(calendar_date: date) \ - -> Optional[Any]: +def get_shabbat_if_date_friday(calendar_date: date, + location_by_ip, + ) -> Optional[Dict[str, date]]: """Returns shabbat start end ending time if specific date is Saturday, else None. Args: calendar_date: date. + location_by_ip: location by ip that create with "geocoder" module. Returns: Shabbat start end ending time if specific date is Saturday and user location by ip, else None """ - shabbat_obj, location_by_ip = shabbat_time_by_user_location() + shabbat_obj = shabbat_time_by_user_location(location_by_ip) if calendar_date == shabbat_obj["start_date"]: - return shabbat_obj, location_by_ip + return shabbat_obj diff --git a/app/resources/shabbat_time_by_location.json b/app/resources/shabbat_time_by_location.json index 3ac97bd8..effe2af1 100644 --- a/app/resources/shabbat_time_by_location.json +++ b/app/resources/shabbat_time_by_location.json @@ -3003,10 +3003,79 @@ ] }, { - "error":"Sorry, can't find geonameid: novo", - "originalError":{ - "message":"Sorry, can't find geonameid: novo" - } + "title":"Hebcal Porto-Novo March 2021", + "date":"2021-03-02T10:57:45.340Z", + "location":{ + "title":"Porto-Novo, Oueme, Benin", + "city":"Porto-Novo", + "tzid":"Africa/Porto-Novo", + "latitude":6.49646, + "longitude":2.60359, + "cc":"BJ", + "country":"Benin", + "admin1":"Oueme", + "geo":"geoname", + "geonameid":2392087 + }, + "items":[ + { + "title":"Candle lighting: 18:43", + "date":"2021-03-05T18:43:00+01:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 19:33", + "date":"2021-03-06T19:33:00+01:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { "title":"Hebcal Hamilton February 2021", @@ -5237,10 +5306,79 @@ ] }, { - "error":"Sorry, can't find geonameid: 05", - "originalError":{ - "message":"Sorry, can't find geonameid: 05" - } + "title":"Hebcal St. John's March 2021", + "date":"2021-03-02T11:08:56.775Z", + "location":{ + "title":"St. John's, Newfoundland and Labrador, Canada", + "city":"St. John's", + "tzid":"America/St_Johns", + "latitude":47.56494, + "longitude":-52.70931, + "cc":"CA", + "country":"Canada", + "admin1":"Newfoundland and Labrador", + "geo":"geoname", + "geonameid":6324733 + }, + "items":[ + { + "title":"Candle lighting: 5:34pm", + "date":"2021-03-05T17:34:00-03:30", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:39pm", + "date":"2021-03-06T18:39:00-03:30", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { "title":"Hebcal Toronto February 2021", @@ -14258,10 +14396,79 @@ ] }, { - "error":"Sorry, can't find geonameid: au", - "originalError":{ - "message":"Sorry, can't find geonameid: au" - } + "title":"Hebcal Port-au-Prince March 2021", + "date":"2021-03-02T11:11:07.519Z", + "location":{ + "title":"Port-au-Prince, Ouest, Haiti", + "city":"Port-au-Prince", + "tzid":"America/Port-au-Prince", + "latitude":18.54349, + "longitude":-72.33881, + "cc":"HT", + "country":"Haiti", + "admin1":"Ouest", + "geo":"geoname", + "geonameid":3718426 + }, + "items":[ + { + "title":"Candle lighting: 17:38", + "date":"2021-03-05T17:38:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:29", + "date":"2021-03-06T18:29:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { "title":"Hebcal Budapest February 2021", diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 438cfc31..1bd57fc8 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -2,6 +2,7 @@ from datetime import datetime, timedelta from typing import Dict, Iterator, Optional, Tuple, Union +import geocoder from fastapi import APIRouter, Depends, HTTPException, Request from app.database.models import Event, Task, User @@ -214,8 +215,11 @@ async def dayview( session.query(Task).filter(Task.owner_id == user.user_id).filter( Task.date == day.date()).order_by(Task.time) ) - shabbat_obj, location_by_ip = shabbat.get_shabbat_if_date_friday( - day.date()) + location_by_ip = geocoder.ip('me') + shabbat_obj = shabbat.get_shabbat_if_date_friday( + day.date(), + location_by_ip, + ) month = day.strftime("%B").upper() return templates.TemplateResponse( "calendar_day_view.html", diff --git a/requirements.txt b/requirements.txt index ffc6d292..3b9129d5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -33,6 +33,7 @@ coverage==5.3.1 curio==1.4 databases==0.4.1 dateparser==1.0.0 +django-os-geocoder==0.1.6 distlib==0.3.1 dnspython==2.1.0 email-validator==1.1.2 @@ -46,6 +47,7 @@ fastapi-mail==0.3.3.1 filelock==3.0.12 flake8==3.8.4 frozendict==1.2 +geocoder==1.38.1 geographiclib==1.50 geopy==2.1.0 google-api-core==1.25.0 @@ -159,6 +161,4 @@ word-forms==2.1.0 wsproto==1.0.0 yapf==0.30.0 yarl==1.6.3 -zipp==3.4.0 - -django-os-geocoder~=0.1.6 \ No newline at end of file +zipp==3.4.0 \ No newline at end of file diff --git a/tests/test_shabbat.py b/tests/test_shabbat.py index 368e3c40..79c7ef4f 100644 --- a/tests/test_shabbat.py +++ b/tests/test_shabbat.py @@ -1,5 +1,7 @@ from datetime import date +import geocoder + from app.internal import shabbat SHABBAT_TIME = { @@ -32,10 +34,12 @@ def test_return_none_if_date_no_friday(): - result = shabbat.get_shabbat_if_date_friday(BAD_DAY) + location_by_ip = geocoder.ip('me') + result = shabbat.get_shabbat_if_date_friday(BAD_DAY, location_by_ip) assert result is None def test_return_if_date_is_friday(): - result = shabbat.get_shabbat_if_date_friday(FRIDAY) + location_by_ip = geocoder.ip('me') + result = shabbat.get_shabbat_if_date_friday(FRIDAY, location_by_ip) assert result From 935a9dea9e1186e444ab881c746f4b569cf12cd1 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Tue, 2 Mar 2021 14:46:34 +0200 Subject: [PATCH 27/38] fix: bugfix --- app/resources/shabbat_time_by_location.json | 1154 ++++++++++++++++++- 1 file changed, 1094 insertions(+), 60 deletions(-) diff --git a/app/resources/shabbat_time_by_location.json b/app/resources/shabbat_time_by_location.json index effe2af1..94a2032b 100644 --- a/app/resources/shabbat_time_by_location.json +++ b/app/resources/shabbat_time_by_location.json @@ -19503,10 +19503,79 @@ ] }, { - "error":"Sorry, can't find geonameid: shi", - "originalError":{ - "message":"Sorry, can't find geonameid: shi" - } + "title":"Hebcal Kobe March 2021", + "date":"2021-03-02T11:12:36.888Z", + "location":{ + "title":"Kobe, Hyogo, Japan", + "city":"Kobe", + "tzid":"Asia/Tokyo", + "latitude":34.6913, + "longitude":135.183, + "cc":"JP", + "country":"Japan", + "admin1":"Hyogo", + "geo":"geoname", + "geonameid":1859171 + }, + "items":[ + { + "title":"Candle lighting: 17:40", + "date":"2021-03-05T17:40:00+09:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:37", + "date":"2021-03-06T18:37:00+09:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { "title":"Hebcal Kyoto February 2021", @@ -19600,16 +19669,154 @@ ] }, { - "error":"Sorry, can't find geonameid: shi", - "originalError":{ - "message":"Sorry, can't find geonameid: shi" - } + "title":"Hebcal Nagoya March 2021", + "date":"2021-03-02T12:11:47.045Z", + "location":{ + "title":"Nagoya, Aichi, Japan", + "city":"Nagoya", + "tzid":"Asia/Tokyo", + "latitude":35.18147, + "longitude":136.90641, + "cc":"JP", + "country":"Japan", + "admin1":"Aichi", + "geo":"geoname", + "geonameid":1856057 + }, + "items":[ + { + "title":"Candle lighting: 17:33", + "date":"2021-03-05T17:33:00+09:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:30", + "date":"2021-03-06T18:30:00+09:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: shi", - "originalError":{ - "message":"Sorry, can't find geonameid: shi" - } + "title":"Hebcal Osaka March 2021", + "date":"2021-03-02T12:12:43.474Z", + "location":{ + "title":"Osaka, Japan", + "city":"Osaka", + "tzid":"Asia/Tokyo", + "latitude":34.69374, + "longitude":135.50218, + "cc":"JP", + "country":"Japan", + "admin1":"Osaka", + "geo":"geoname", + "geonameid":1853909 + }, + "items":[ + { + "title":"Candle lighting: 17:39", + "date":"2021-03-05T17:39:00+09:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 18:35", + "date":"2021-03-06T18:35:00+09:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { "title":"Hebcal Sapporo February 2021", @@ -31082,76 +31289,903 @@ ] }, { - "error":"Sorry, can't find geonameid: GA", - "originalError":{ - "message":"Sorry, can't find geonameid: GA" - } + "title":"Hebcal Atlanta March 2021", + "date":"2021-03-02T12:15:27.641Z", + "location":{ + "title":"Atlanta, Georgia, USA", + "city":"Atlanta", + "tzid":"America/New_York", + "latitude":33.749, + "longitude":-84.38798, + "cc":"US", + "country":"United States", + "admin1":"Georgia", + "geo":"geoname", + "geonameid":4180439 + }, + "items":[ + { + "title":"Candle lighting: 6:19pm", + "date":"2021-03-05T18:19:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:15pm", + "date":"2021-03-06T19:15:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: TX", - "originalError":{ - "message":"Sorry, can't find geonameid: TX" - } + "title":"Hebcal Austin March 2021", + "date":"2021-03-02T12:16:16.996Z", + "location":{ + "title":"Austin, Texas, USA", + "city":"Austin", + "tzid":"America/Chicago", + "latitude":30.26715, + "longitude":-97.74306, + "cc":"US", + "country":"United States", + "admin1":"Texas", + "geo":"geoname", + "geonameid":4671654 + }, + "items":[ + { + "title":"Candle lighting: 6:14pm", + "date":"2021-03-05T18:14:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:09pm", + "date":"2021-03-06T19:09:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: MD", - "originalError":{ - "message":"Sorry, can't find geonameid: MD" - } + "title":"Hebcal Baltimore March 2021", + "date":"2021-03-02T12:17:51.175Z", + "location":{ + "title":"Baltimore, Maryland, USA", + "city":"Baltimore", + "tzid":"America/New_York", + "latitude":39.29038, + "longitude":-76.61219, + "cc":"US", + "country":"United States", + "admin1":"Maryland", + "geo":"geoname", + "geonameid":4347778 + }, + "items":[ + { + "title":"Candle lighting: 5:45pm", + "date":"2021-03-05T17:45:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:44pm", + "date":"2021-03-06T18:44:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: MA", - "originalError":{ - "message":"Sorry, can't find geonameid: MA" - } + "title":"Hebcal Boston March 2021", + "date":"2021-03-02T12:18:42.472Z", + "location":{ + "title":"Boston, Massachusetts, USA", + "city":"Boston", + "tzid":"America/New_York", + "latitude":42.35843, + "longitude":-71.05977, + "cc":"US", + "country":"United States", + "admin1":"Massachusetts", + "geo":"geoname", + "geonameid":4930956 + }, + "items":[ + { + "title":"Candle lighting: 5:21pm", + "date":"2021-03-05T17:21:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:22pm", + "date":"2021-03-06T18:22:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NY", - "originalError":{ - "message":"Sorry, can't find geonameid: NY" - } + "title":"Hebcal Buffalo March 2021", + "date":"2021-03-02T12:19:58.512Z", + "location":{ + "title":"Buffalo, New York, USA", + "city":"Buffalo", + "tzid":"America/New_York", + "latitude":42.88645, + "longitude":-78.87837, + "cc":"US", + "country":"United States", + "admin1":"New York", + "geo":"geoname", + "geonameid":5110629 + }, + "items":[ + { + "title":"Candle lighting: 5:52pm", + "date":"2021-03-05T17:52:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:53pm", + "date":"2021-03-06T18:53:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: IL", - "originalError":{ - "message":"Sorry, can't find geonameid: IL" - } + "title":"Hebcal Chicago March 2021", + "date":"2021-03-02T12:21:08.857Z", + "location":{ + "title":"Chicago, Illinois, USA", + "city":"Chicago", + "tzid":"America/Chicago", + "latitude":41.85003, + "longitude":-87.65005, + "cc":"US", + "country":"United States", + "admin1":"Illinois", + "geo":"geoname", + "geonameid":4887398 + }, + "items":[ + { + "title":"Candle lighting: 5:28pm", + "date":"2021-03-05T17:28:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:28pm", + "date":"2021-03-06T18:28:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: OH", - "originalError":{ - "message":"Sorry, can't find geonameid: OH" - } + "title":"Hebcal Cincinnati March 2021", + "date":"2021-03-02T12:22:01.125Z", + "location":{ + "title":"Cincinnati, Ohio, USA", + "city":"Cincinnati", + "tzid":"America/New_York", + "latitude":39.12711, + "longitude":-84.51439, + "cc":"US", + "country":"United States", + "admin1":"Ohio", + "geo":"geoname", + "geonameid":4508722 + }, + "items":[ + { + "title":"Candle lighting: 6:17pm", + "date":"2021-03-05T18:17:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:16pm", + "date":"2021-03-06T19:16:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: OH", - "originalError":{ - "message":"Sorry, can't find geonameid: OH" - } + "title":"Hebcal Cleveland March 2021", + "date":"2021-03-02T12:23:03.780Z", + "location":{ + "title":"Cleveland, Ohio, USA", + "city":"Cleveland", + "tzid":"America/New_York", + "latitude":41.4995, + "longitude":-81.69541, + "cc":"US", + "country":"United States", + "admin1":"Ohio", + "geo":"geoname", + "geonameid":5150529 + }, + "items":[ + { + "title":"Candle lighting: 6:04pm", + "date":"2021-03-05T18:04:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:05pm", + "date":"2021-03-06T19:05:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: OH", - "originalError":{ - "message":"Sorry, can't find geonameid: OH" - } + "title":"Hebcal Columbus March 2021", + "date":"2021-03-02T12:24:51.008Z", + "location":{ + "title":"Columbus, Ohio, USA", + "city":"Columbus", + "tzid":"America/New_York", + "latitude":39.96118, + "longitude":-82.99879, + "cc":"US", + "country":"United States", + "admin1":"Ohio", + "geo":"geoname", + "geonameid":4509177 + }, + "items":[ + { + "title":"Candle lighting: 6:10pm", + "date":"2021-03-05T18:10:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:10pm", + "date":"2021-03-06T19:10:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: TX", - "originalError":{ - "message":"Sorry, can't find geonameid: TX" - } + "title":"Hebcal Dallas March 2021", + "date":"2021-03-02T12:26:10.338Z", + "location":{ + "title":"Dallas, Texas, USA", + "city":"Dallas", + "tzid":"America/Chicago", + "latitude":32.78306, + "longitude":-96.80667, + "cc":"US", + "country":"United States", + "admin1":"Texas", + "geo":"geoname", + "geonameid":4684888 + }, + "items":[ + { + "title":"Candle lighting: 6:09pm", + "date":"2021-03-05T18:09:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:05pm", + "date":"2021-03-06T19:05:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: CO", - "originalError":{ - "message":"Sorry, can't find geonameid: CO" - } + "title":"Hebcal Denver March 2021", + "date":"2021-03-02T12:28:01.731Z", + "location":{ + "title":"Denver, Colorado, USA", + "city":"Denver", + "tzid":"America/Denver", + "latitude":39.73915, + "longitude":-104.9847, + "cc":"US", + "country":"United States", + "admin1":"Colorado", + "geo":"geoname", + "geonameid":5419384 + }, + "items":[ + { + "title":"Candle lighting: 5:38pm", + "date":"2021-03-05T17:38:00-07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:38pm", + "date":"2021-03-06T18:38:00-07:00", "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: MI", - "originalError":{ - "message":"Sorry, can't find geonameid: MI" - } + "title":"Hebcal Detroit March 2021", + "date":"2021-03-02T12:38:12.499Z", + "location":{ + "title":"Detroit, Michigan, USA", + "city":"Detroit", + "tzid":"America/Detroit", + "latitude":42.33143, + "longitude":-83.04575, + "cc":"US", + "country":"United States", + "admin1":"Michigan", + "geo":"geoname", + "geonameid":4990729 + }, + "items":[ + { + "title":"Candle lighting: 6:09pm", + "date":"2021-03-05T18:09:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:10pm", + "date":"2021-03-06T19:10:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { "error":"Sorry, can't find geonameid: CT", From 4c6a43408ffb8148555ce56f93c5ac8e2fdb6af5 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Tue, 2 Mar 2021 15:22:14 +0200 Subject: [PATCH 28/38] fix: bugfix --- app/resources/shabbat_time_by_location.json | 924 +++++++++++++++++++- 1 file changed, 876 insertions(+), 48 deletions(-) diff --git a/app/resources/shabbat_time_by_location.json b/app/resources/shabbat_time_by_location.json index 94a2032b..b5cf8e92 100644 --- a/app/resources/shabbat_time_by_location.json +++ b/app/resources/shabbat_time_by_location.json @@ -32188,76 +32188,904 @@ ] }, { - "error":"Sorry, can't find geonameid: CT", - "originalError":{ - "message":"Sorry, can't find geonameid: CT" - } + "title":"Hebcal Hartford March 2021", + "date":"2021-03-02T12:49:56.094Z", + "location":{ + "title":"Hartford, Connecticut, USA", + "city":"Hartford", + "tzid":"America/New_York", + "latitude":41.76371, + "longitude":-72.68509, + "cc":"US", + "country":"United States", + "admin1":"Connecticut", + "geo":"geoname", + "geonameid":4835797 + }, + "items":[ + { + "title":"Candle lighting: 5:28pm", + "date":"2021-03-05T17:28:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:29pm", + "date":"2021-03-06T18:29:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: HI", - "originalError":{ - "message":"Sorry, can't find geonameid: HI" - } + "title":"Hebcal Honolulu March 2021", + "date":"2021-03-02T12:51:51.837Z", + "location":{ + "title":"Honolulu, Hawaii, USA", + "city":"Honolulu", + "tzid":"Pacific/Honolulu", + "latitude":21.30694, + "longitude":-157.85833, + "cc":"US", + "country":"United States", + "admin1":"Hawaii", + "geo":"geoname", + "geonameid":5856195 + }, + "items":[ + { + "title":"Candle lighting: 6:19pm", + "date":"2021-03-05T18:19:00-10:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:11pm", + "date":"2021-03-06T19:11:00-10:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: TX", - "originalError":{ - "message":"Sorry, can't find geonameid: TX" - } + "title":"Hebcal Houston March 2021", + "date":"2021-03-02T12:53:13.771Z", + "location":{ + "title":"Houston, Texas, USA", + "city":"Houston", + "tzid":"America/Chicago", + "latitude":29.76328, + "longitude":-95.36327, + "cc":"US", + "country":"United States", + "admin1":"Texas", + "geo":"geoname", + "geonameid":4699066 + }, + "items":[ + { + "title":"Candle lighting: 6:05pm", + "date":"2021-03-05T18:05:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:00pm", + "date":"2021-03-06T19:00:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NJ", - "originalError":{ - "message":"Sorry, can't find geonameid: NJ" - } + "title":"Hebcal Lakewood March 2021", + "date":"2021-03-02T12:54:09.986Z", + "location":{ + "title":"Lakewood, New Jersey, USA", + "city":"Lakewood", + "tzid":"America/New_York", + "latitude":40.09789, + "longitude":-74.21764, + "cc":"US", + "country":"United States", + "admin1":"New Jersey", + "geo":"geoname", + "geonameid":5100280 + }, + "items":[ + { + "title":"Candle lighting: 5:35pm", + "date":"2021-03-05T17:35:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:35pm", + "date":"2021-03-06T18:35:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NV", - "originalError":{ - "message":"Sorry, can't find geonameid: NV" - } + "title":"Hebcal Las Vegas March 2021", + "date":"2021-03-02T12:56:50.492Z", + "location":{ + "title":"Las Vegas, Nevada, USA", + "city":"Las Vegas", + "tzid":"America/Los_Angeles", + "latitude":36.17497, + "longitude":-115.13722, + "cc":"US", + "country":"United States", + "admin1":"Nevada", + "geo":"geoname", + "geonameid":5506956 + }, + "items":[ + { + "title":"Candle lighting: 5:21pm", + "date":"2021-03-05T17:21:00-08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:18pm", + "date":"2021-03-06T18:18:00-08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NY", - "originalError":{ - "message":"Sorry, can't find geonameid: NY" - } + "title":"Hebcal Livingston March 2021", + "date":"2021-03-02T12:58:20.314Z", + "location":{ + "title":"Livingston, New Jersey, USA", + "city":"Livingston", + "tzid":"America/New_York", + "latitude":40.79593, + "longitude":-74.31487, + "cc":"US", + "country":"United States", + "admin1":"New Jersey", + "geo":"geoname", + "geonameid":5100572 + }, + "items":[ + { + "title":"Candle lighting: 5:35pm", + "date":"2021-03-05T17:35:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:35pm", + "date":"2021-03-06T18:35:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: CA", - "originalError":{ - "message":"Sorry, can't find geonameid: CA" - } + "title":"Hebcal Los Angeles March 2021", + "date":"2021-03-02T13:00:50.808Z", + "location":{ + "title":"Los Angeles, California, USA", + "city":"Los Angeles", + "tzid":"America/Los_Angeles", + "latitude":34.05223, + "longitude":-118.24368, + "cc":"US", + "country":"United States", + "admin1":"California", + "geo":"geoname", + "geonameid":5368361 + }, + "items":[ + { + "title":"Candle lighting: 5:35pm", + "date":"2021-03-05T17:35:00-08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:31pm", + "date":"2021-03-06T18:31:00-08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: TN", - "originalError":{ - "message":"Sorry, can't find geonameid: TN" - } + "title":"Hebcal Memphis March 2021", + "date":"2021-03-02T13:02:41.439Z", + "location":{ + "title":"Memphis, Tennessee, USA", + "city":"Memphis", + "tzid":"America/Chicago", + "latitude":35.14953, + "longitude":-90.04898, + "cc":"US", + "country":"United States", + "admin1":"Tennessee", + "geo":"geoname", + "geonameid":4641239 + }, + "items":[ + { + "title":"Candle lighting: 5:41pm", + "date":"2021-03-05T17:41:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:38pm", + "date":"2021-03-06T18:38:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: FL", - "originalError":{ - "message":"Sorry, can't find geonameid: FL" - } + "title":"Hebcal Miami March 2021", + "date":"2021-03-02T13:04:28.051Z", + "location":{ + "title":"Miami, Florida, USA", + "city":"Miami", + "tzid":"America/New_York", + "latitude":25.77427, + "longitude":-80.19366, + "cc":"US", + "country":"United States", + "admin1":"Florida", + "geo":"geoname", + "geonameid":4164138 + }, + "items":[ + { + "title":"Candle lighting: 6:06pm", + "date":"2021-03-05T18:06:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:59pm", + "date":"2021-03-06T18:59:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: WI", - "originalError":{ - "message":"Sorry, can't find geonameid: WI" - } + "title":"Hebcal Milwaukee March 2021", + "date":"2021-03-02T13:07:44.483Z", + "location":{ + "title":"Milwaukee, Wisconsin, USA", + "city":"Milwaukee", + "tzid":"America/Chicago", + "latitude":43.0389, + "longitude":-87.90647, + "cc":"US", + "country":"United States", + "admin1":"Wisconsin", + "geo":"geoname", + "geonameid":5263045 + }, + "items":[ + { + "title":"Candle lighting: 5:28pm", + "date":"2021-03-05T17:28:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:30pm", + "date":"2021-03-06T18:30:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NY", - "originalError":{ - "message":"Sorry, can't find geonameid: NY" - } + "title":"Hebcal Monsey March 2021", + "date":"2021-03-02T13:11:40.215Z", + "location":{ + "title":"Monsey, New York, USA", + "city":"Monsey", + "tzid":"America/New_York", + "latitude":41.11121, + "longitude":-74.06848, + "cc":"US", + "country":"United States", + "admin1":"New York", + "geo":"geoname", + "geonameid":5127315 + }, + "items":[ + { + "title":"Candle lighting: 5:34pm", + "date":"2021-03-05T17:34:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:34pm", + "date":"2021-03-06T18:34:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: CT", - "originalError":{ - "message":"Sorry, can't find geonameid: CT" - } + "title":"Hebcal New Haven March 2021", + "date":"2021-03-02T13:16:11.557Z", + "location":{ + "title":"New Haven, Connecticut, USA", + "city":"New Haven", + "tzid":"America/New_York", + "latitude":41.30815, + "longitude":-72.92816, + "cc":"US", + "country":"United States", + "admin1":"Connecticut", + "geo":"geoname", + "geonameid":4839366 + }, + "items":[ + { + "title":"Candle lighting: 5:29pm", + "date":"2021-03-05T17:29:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:30pm", + "date":"2021-03-06T18:30:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { "error":"Sorry, can't find geonameid: NY", From c8cf12fd5bf62b03e882101123aa9f45f6347332 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 3 Mar 2021 12:47:47 +0200 Subject: [PATCH 29/38] fix: bugfix --- app/resources/shabbat_time_by_location.json | 462 +++++++++++++++++++- 1 file changed, 438 insertions(+), 24 deletions(-) diff --git a/app/resources/shabbat_time_by_location.json b/app/resources/shabbat_time_by_location.json index b5cf8e92..bf1edbd8 100644 --- a/app/resources/shabbat_time_by_location.json +++ b/app/resources/shabbat_time_by_location.json @@ -33088,40 +33088,454 @@ ] }, { - "error":"Sorry, can't find geonameid: NY", - "originalError":{ - "message":"Sorry, can't find geonameid: NY" - } + "title":"Hebcal New York City March 2021", + "date":"2021-03-02T13:20:26.505Z", + "location":{ + "title":"New York City, New York, USA", + "city":"New York City", + "tzid":"America/New_York", + "latitude":40.71427, + "longitude":-74.00597, + "cc":"US", + "country":"United States", + "admin1":"New York", + "geo":"geoname", + "geonameid":5128581 + }, + "items":[ + { + "title":"Candle lighting: 5:34pm", + "date":"2021-03-05T17:34:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:34pm", + "date":"2021-03-06T18:34:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NE", - "originalError":{ - "message":"Sorry, can't find geonameid: NE" - } + "title":"Hebcal Omaha March 2021", + "date":"2021-03-03T10:40:22.619Z", + "location":{ + "title":"Omaha, Nebraska, USA", + "city":"Omaha", + "tzid":"America/Chicago", + "latitude":41.25626, + "longitude":-95.94043, + "cc":"US", + "country":"United States", + "admin1":"Nebraska", + "geo":"geoname", + "geonameid":5074472 + }, + "items":[ + { + "title":"Candle lighting: 6:01pm", + "date":"2021-03-05T18:01:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:02pm", + "date":"2021-03-06T19:02:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: FL", - "originalError":{ - "message":"Sorry, can't find geonameid: FL" - } + "title":"Hebcal Orlando March 2021", + "date":"2021-03-03T10:41:17.406Z", + "location":{ + "title":"Orlando, Florida, USA", + "city":"Orlando", + "tzid":"America/New_York", + "latitude":28.53834, + "longitude":-81.37924, + "cc":"US", + "country":"United States", + "admin1":"Florida", + "geo":"geoname", + "geonameid":4167147 + }, + "items":[ + { + "title":"Candle lighting: 6:10pm", + "date":"2021-03-05T18:10:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:04pm", + "date":"2021-03-06T19:04:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NJ", - "originalError":{ - "message":"Sorry, can't find geonameid: NJ" - } + "title":"Hebcal Passaic March 2021", + "date":"2021-03-03T10:42:20.346Z", + "location":{ + "title":"Passaic, New Jersey, USA", + "city":"Passaic", + "tzid":"America/New_York", + "latitude":40.85677, + "longitude":-74.12848, + "cc":"US", + "country":"United States", + "admin1":"New Jersey", + "geo":"geoname", + "geonameid":5102443 + }, + "items":[ + { + "title":"Candle lighting: 5:34pm", + "date":"2021-03-05T17:34:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:34pm", + "date":"2021-03-06T18:34:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: PA", - "originalError":{ - "message":"Sorry, can't find geonameid: PA" - } + "title":"Hebcal Philadelphia March 2021", + "date":"2021-03-03T10:43:16.371Z", + "location":{ + "title":"Philadelphia, Pennsylvania, USA", + "city":"Philadelphia", + "tzid":"America/New_York", + "latitude":39.95233, + "longitude":-75.16379, + "cc":"US", + "country":"United States", + "admin1":"Pennsylvania", + "geo":"geoname", + "geonameid":4560349 + }, + "items":[ + { + "title":"Candle lighting: 5:39pm", + "date":"2021-03-05T17:39:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:38pm", + "date":"2021-03-06T18:38:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: AZ", - "originalError":{ - "message":"Sorry, can't find geonameid: AZ" - } + "title":"Hebcal Phoenix March 2021", + "date":"2021-03-03T10:44:20.832Z", + "location":{ + "title":"Phoenix, Arizona, USA", + "city":"Phoenix", + "tzid":"America/Phoenix", + "latitude":33.44838, + "longitude":-112.07404, + "cc":"US", + "country":"United States", + "admin1":"Arizona", + "geo":"geoname", + "geonameid":5308655 + }, + "items":[ + { + "title":"Candle lighting: 6:10pm", + "date":"2021-03-05T18:10:00-07:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 7:06pm", + "date":"2021-03-06T19:06:00-07:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { "error":"Sorry, can't find geonameid: PA", From bf56e9be7e8dcbfa57120bcbef1b6577bb8dc9e6 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 3 Mar 2021 12:58:04 +0200 Subject: [PATCH 30/38] fix : adding information --- app/resources/shabbat_time_by_location.json | 1078 ++++++++++++++++++- 1 file changed, 1022 insertions(+), 56 deletions(-) diff --git a/app/resources/shabbat_time_by_location.json b/app/resources/shabbat_time_by_location.json index bf1edbd8..ca6bbb21 100644 --- a/app/resources/shabbat_time_by_location.json +++ b/app/resources/shabbat_time_by_location.json @@ -33538,88 +33538,1054 @@ ] }, { - "error":"Sorry, can't find geonameid: PA", - "originalError":{ - "message":"Sorry, can't find geonameid: PA" - } + "title":"Hebcal Pittsburgh March 2021", + "date":"2021-03-03T10:45:55.119Z", + "location":{ + "title":"Pittsburgh, Pennsylvania, USA", + "city":"Pittsburgh", + "tzid":"America/New_York", + "latitude":40.44062, + "longitude":-79.99589, + "cc":"US", + "country":"United States", + "admin1":"Pennsylvania", + "geo":"geoname", + "geonameid":5206379 + }, + "items":[ + { + "title":"Candle lighting: 5:58pm", + "date":"2021-03-05T17:58:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:58pm", + "date":"2021-03-06T18:58:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: OR", - "originalError":{ - "message":"Sorry, can't find geonameid: OR" - } + "title":"Hebcal Portland March 2021", + "date":"2021-03-03T10:50:48.532Z", + "location":{ + "title":"Portland, Oregon, USA", + "city":"Portland", + "tzid":"America/Los_Angeles", + "latitude":45.52345, + "longitude":-122.67621, + "cc":"US", + "country":"United States", + "admin1":"Oregon", + "geo":"geoname", + "geonameid":5746545 + }, + "items":[ + { + "title":"Candle lighting: 5:45pm", + "date":"2021-03-05T17:45:00-08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:49pm", + "date":"2021-03-06T18:49:00-08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: RI", - "originalError":{ - "message":"Sorry, can't find geonameid: RI" - } + "title":"Hebcal Providence March 2021", + "date":"2021-03-03T10:51:25.314Z", + "location":{ + "title":"Providence, Rhode Island, USA", + "city":"Providence", + "tzid":"America/New_York", + "latitude":41.82399, + "longitude":-71.41283, + "cc":"US", + "country":"United States", + "admin1":"Rhode Island", + "geo":"geoname", + "geonameid":5224151 + }, + "items":[ + { + "title":"Candle lighting: 5:23pm", + "date":"2021-03-05T17:23:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:23pm", + "date":"2021-03-06T18:23:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: VA", - "originalError":{ - "message":"Sorry, can't find geonameid: VA" - } + "title":"Hebcal Richmond March 2021", + "date":"2021-03-03T10:51:54.719Z", + "location":{ + "title":"Richmond, Virginia, USA", + "city":"Richmond", + "tzid":"America/New_York", + "latitude":37.55376, + "longitude":-77.46026, + "cc":"US", + "country":"United States", + "admin1":"Virginia", + "geo":"geoname", + "geonameid":4781708 + }, + "items":[ + { + "title":"Candle lighting: 5:49pm", + "date":"2021-03-05T17:49:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:48pm", + "date":"2021-03-06T18:48:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NY", - "originalError":{ - "message":"Sorry, can't find geonameid: NY" - } + "title":"Hebcal Rochester March 2021", + "date":"2021-03-03T10:52:31.483Z", + "location":{ + "title":"Rochester, New York, USA", + "city":"Rochester", + "tzid":"America/New_York", + "latitude":43.15478, + "longitude":-77.61556, + "cc":"US", + "country":"United States", + "admin1":"New York", + "geo":"geoname", + "geonameid":5134086 + }, + "items":[ + { + "title":"Candle lighting: 5:46pm", + "date":"2021-03-05T17:46:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:48pm", + "date":"2021-03-06T18:48:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: MO", - "originalError":{ - "message":"Sorry, can't find geonameid: MO" - } + "title":"Hebcal St. Louis March 2021", + "date":"2021-03-03T10:53:01.132Z", + "location":{ + "title":"St. Louis, Missouri, USA", + "city":"St. Louis", + "tzid":"America/Chicago", + "latitude":38.62727, + "longitude":-90.19789, + "cc":"US", + "country":"United States", + "admin1":"Missouri", + "geo":"geoname", + "geonameid":4407066 + }, + "items":[ + { + "title":"Candle lighting: 5:40pm", + "date":"2021-03-05T17:40:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:39pm", + "date":"2021-03-06T18:39:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: MN", - "originalError":{ - "message":"Sorry, can't find geonameid: MN" - } + "title":"Hebcal Saint Paul March 2021", + "date":"2021-03-03T10:53:32.291Z", + "location":{ + "title":"Saint Paul, Minnesota, USA", + "city":"Saint Paul", + "tzid":"America/Chicago", + "latitude":44.94441, + "longitude":-93.09327, + "cc":"US", + "country":"United States", + "admin1":"Minnesota", + "geo":"geoname", + "geonameid":5045360 + }, + "items":[ + { + "title":"Candle lighting: 5:47pm", + "date":"2021-03-05T17:47:00-06:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:50pm", + "date":"2021-03-06T18:50:00-06:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: CA", - "originalError":{ - "message":"Sorry, can't find geonameid: CA" - } + "title":"Hebcal San Diego March 2021", + "date":"2021-03-03T10:54:06.911Z", + "location":{ + "title":"San Diego, California, USA", + "city":"San Diego", + "tzid":"America/Los_Angeles", + "latitude":32.71571, + "longitude":-117.16472, + "cc":"US", + "country":"United States", + "admin1":"California", + "geo":"geoname", + "geonameid":5391811 + }, + "items":[ + { + "title":"Candle lighting: 5:31pm", + "date":"2021-03-05T17:31:00-08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:27pm", + "date":"2021-03-06T18:27:00-08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: CA", - "originalError":{ - "message":"Sorry, can't find geonameid: CA" - } + "title":"Hebcal San Francisco March 2021", + "date":"2021-03-03T10:54:44.360Z", + "location":{ + "title":"San Francisco, California, USA", + "city":"San Francisco", + "tzid":"America/Los_Angeles", + "latitude":37.77493, + "longitude":-122.41942, + "cc":"US", + "country":"United States", + "admin1":"California", + "geo":"geoname", + "geonameid":5391959 + }, + "items":[ + { + "title":"Candle lighting: 5:49pm", + "date":"2021-03-05T17:49:00-08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:48pm", + "date":"2021-03-06T18:48:00-08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: WA", - "originalError":{ - "message":"Sorry, can't find geonameid: WA" - } + "title":"Hebcal Seattle March 2021", + "date":"2021-03-03T10:55:15.064Z", + "location":{ + "title":"Seattle, Washington, USA", + "city":"Seattle", + "tzid":"America/Los_Angeles", + "latitude":47.60621, + "longitude":-122.33207, + "cc":"US", + "country":"United States", + "admin1":"Washington", + "geo":"geoname", + "geonameid":5809844 + }, + "items":[ + { + "title":"Candle lighting: 5:42pm", + "date":"2021-03-05T17:42:00-08:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:48pm", + "date":"2021-03-06T18:48:00-08:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: MD", - "originalError":{ - "message":"Sorry, can't find geonameid: MD" - } + "title":"Hebcal Silver Spring March 2021", + "date":"2021-03-03T10:55:43.007Z", + "location":{ + "title":"Silver Spring, Maryland, USA", + "city":"Silver Spring", + "tzid":"America/New_York", + "latitude":38.99067, + "longitude":-77.02609, + "cc":"US", + "country":"United States", + "admin1":"Maryland", + "geo":"geoname", + "geonameid":4369596 + }, + "items":[ + { + "title":"Candle lighting: 5:47pm", + "date":"2021-03-05T17:47:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:46pm", + "date":"2021-03-06T18:46:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NJ", - "originalError":{ - "message":"Sorry, can't find geonameid: NJ" - } + "title":"Hebcal Teaneck March 2021", + "date":"2021-03-03T10:56:11.770Z", + "location":{ + "title":"Teaneck, New Jersey, USA", + "city":"Teaneck", + "tzid":"America/New_York", + "latitude":40.8976, + "longitude":-74.01597, + "cc":"US", + "country":"United States", + "admin1":"New Jersey", + "geo":"geoname", + "geonameid":5105262 + }, + "items":[ + { + "title":"Candle lighting: 5:34pm", + "date":"2021-03-05T17:34:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:34pm", + "date":"2021-03-06T18:34:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: DC", - "originalError":{ - "message":"Sorry, can't find geonameid: DC" - } + "title":"Hebcal Washington March 2021", + "date":"2021-03-03T10:56:40.756Z", + "location":{ + "title":"Washington, D.C., USA", + "city":"Washington", + "tzid":"America/New_York", + "latitude":38.89511, + "longitude":-77.03637, + "cc":"US", + "country":"United States", + "admin1":"Washington, D.C.", + "geo":"geoname", + "geonameid":4140963 + }, + "items":[ + { + "title":"Candle lighting: 5:47pm", + "date":"2021-03-05T17:47:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:46pm", + "date":"2021-03-06T18:46:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { - "error":"Sorry, can't find geonameid: NY", - "originalError":{ - "message":"Sorry, can't find geonameid: NY" - } + "title":"Hebcal White Plains March 2021", + "date":"2021-03-03T10:57:20.178Z", + "location":{ + "title":"White Plains, New York, USA", + "city":"White Plains", + "tzid":"America/New_York", + "latitude":41.03399, + "longitude":-73.76291, + "cc":"US", + "country":"United States", + "admin1":"New York", + "geo":"geoname", + "geonameid":5144336 + }, + "items":[ + { + "title":"Candle lighting: 5:32pm", + "date":"2021-03-05T17:32:00-05:00", + "category":"candles", + "title_orig":"Candle lighting", + "hebrew":"הדלקת נרות" + }, + { + "title":"Shabbat Parah", + "date":"2021-03-06", + "category":"holiday", + "subcat":"shabbat", + "hebrew":"שבת פרה", + "leyning":{ + "haftarah":"Ezekiel 36:16 - 36:38", + "maftir":"Numbers 19:1 - 19:22" + }, + "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", + "memo":"Shabbat of the Red Heifer" + }, + { + "title":"Parashat Ki Tisa", + "date":"2021-03-06", + "category":"parashat", + "hebrew":"פרשת כי תשא", + "leyning":{ + "1":"Exodus 30:11 - 31:17", + "2":"Exodus 31:18 - 33:11", + "3":"Exodus 33:12 - 33:16", + "4":"Exodus 33:17 - 33:23", + "5":"Exodus 34:1 - 34:9", + "6":"Exodus 34:10 - 34:26", + "7":"Exodus 34:27 - 34:35", + "torah":"Exodus 30:11-34:35", + "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", + "haftarah_sephardic":"I Kings 18:20 - 18:39", + "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", + "triennial":{ + "1":"Exodus 31:18 - 32:6", + "2":"Exodus 32:7 - 32:11", + "3":"Exodus 32:12 - 32:14", + "4":"Exodus 32:15 - 32:24", + "5":"Exodus 32:25 - 32:29", + "6":"Exodus 32:30 - 33:6", + "7":"Exodus 33:7 - 33:11", + "maftir":"Numbers 19:1 - 19:22" + } + }, + "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" + }, + { + "title":"Havdalah: 6:33pm", + "date":"2021-03-06T18:33:00-05:00", + "category":"havdalah", + "title_orig":"Havdalah", + "hebrew":"הבדלה" + } + ] }, { "title":"Hebcal Montevideo February 2021", From f89ea45133cfcd5beced6a532f975d6a6eb3e6c3 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 3 Mar 2021 19:32:22 +0200 Subject: [PATCH 31/38] fix : bugfix --- app/internal/shabbat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 243d17e0..7c34c22f 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -42,9 +42,9 @@ def shabbat_time_by_user_location(location_by_ip) \ shabat_items = return_shabbat_details_by_user_location(location_by_ip) for item in shabat_items: if "Candle lighting" in item["title"]: - shabbat_entry = item + shabbat_entry = item["date"] if "Havdalah" in item["title"]: - shabbat_exit = item + shabbat_exit = item["date"] shabbat_entry_date = shabbat_entry.split("T")[0] shabbat_entry_hour = shabbat_entry.split("T")[1] From ba2f35c720077d944d2f0fc0fdb7938181af5041 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 3 Mar 2021 19:39:39 +0200 Subject: [PATCH 32/38] fix : bugfix --- app/routers/dayview.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/routers/dayview.py b/app/routers/dayview.py index 1bd57fc8..4f372ac1 100644 --- a/app/routers/dayview.py +++ b/app/routers/dayview.py @@ -216,10 +216,11 @@ async def dayview( Task.date == day.date()).order_by(Task.time) ) location_by_ip = geocoder.ip('me') - shabbat_obj = shabbat.get_shabbat_if_date_friday( - day.date(), - location_by_ip, - ) + if location_by_ip: + shabbat_obj = shabbat.get_shabbat_if_date_friday( + day.date(), + location_by_ip, + ) month = day.strftime("%B").upper() return templates.TemplateResponse( "calendar_day_view.html", From 421e70b67b7860771f0668c9a49723305ec1d48c Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 10 Mar 2021 19:16:47 +0200 Subject: [PATCH 33/38] fix : bugfix --- app/internal/shabbat.py | 71 ++++++++++++++++++++++------------------- 1 file changed, 39 insertions(+), 32 deletions(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 7c34c22f..8ccb79ac 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -2,44 +2,44 @@ from datetime import date, datetime from typing import Any, Dict, Optional, Union +import httpx + from app.config import RESOURCES_DIR -def return_shabbat_details_by_user_location(location_by_ip) -> Any: - """Returns times details which match to ip location. - Used the shabbat_time_by_location JSON file, that his content is copied - from the free API: - 'https://www.hebcal.com/shabbat?cfg=json&geonameid=295277'. - This Json need to be update once in year. +SHABBAT_API = 'https://www.hebcal.com/shabbat?cfg=json&geonameid=' + + +def return_zip_code_of_user_location(location_by_ip) -> str: + """Returns zip code from locations JSON file that match user location. Args: - location_by_ip: location by ip that create with "geocoder" module. + location_by_ip: location by ip that create with "geocoder" module. Returns: - A zip number for the user location. + A zip code string for the user location. """ - - path = RESOURCES_DIR / "shabbat_time_by_location.json" + path = RESOURCES_DIR / "locations.json" with open(path, 'r', encoding="utf8") as json_file: - shabat_details = json.load(json_file) - for location in shabat_details: - print(location.get('location')) - if (location["location"]["city"] == location_by_ip.city - and location["location"]["cc"] == location_by_ip.country): - return location["items"] + locations = json.load(json_file) + for location in locations: + if (location["city"] == location_by_ip.city + and location["country"] == location_by_ip.country): + return location["zip_number"] -def shabbat_time_by_user_location(location_by_ip) \ - -> Dict[str, Union[date, Any]]: - """Returns the shabbat time of the user location. +def return_shabbat_times(shabat_items) -> Dict[str, Union[date, Any]]: + """Returns the shabbat time which match to ip(of the user) location. + Used the content of this is free API: + 'https://www.hebcal.com/shabbat?cfg=json&geonameid=295277'. Args: - location_by_ip: location by ip that create with "geocoder" module. + shabat_items: dictionary of all the details about shabbat according to + specific ip location. Returns: Shabbat start end ending time and user location by ip. """ - shabat_items = return_shabbat_details_by_user_location(location_by_ip) for item in shabat_items: if "Candle lighting" in item["title"]: shabbat_entry = item["date"] @@ -59,20 +59,27 @@ def shabbat_time_by_user_location(location_by_ip) \ return shabbat_limit -def get_shabbat_if_date_friday(calendar_date: date, - location_by_ip, - ) -> Optional[Dict[str, date]]: - """Returns shabbat start end ending time if specific date - is Saturday, else None. +async def get_shabbat_if_date_friday(calendar_date: date, + location_by_ip, + ) -> Optional[Dict[str, date]]: + """Returns shabbat start end ending time if specific date is friday, + else None. + The function used in the free API: + 'https://www.hebcal.com/shabbat?cfg=json&geonameid=295277'. Args: calendar_date: date. location_by_ip: location by ip that create with "geocoder" module. Returns: - Shabbat start end ending time if specific date - is Saturday and user location by ip, else None - """ - shabbat_obj = shabbat_time_by_user_location(location_by_ip) - if calendar_date == shabbat_obj["start_date"]: - return shabbat_obj + Shabbat start and ending time if specific date + is Saturday and user location by ip, else None + """ + async with httpx.AsyncClient() as client: + zip_code = return_zip_code_of_user_location(location_by_ip) + shabbat_api = SHABBAT_API + zip_code + response = await client.get(shabbat_api) + shabat_items = response.json()['items'] + shabbat_obj = return_shabbat_times(shabat_items) + if calendar_date == shabbat_obj["start_date"]: + return shabbat_obj From 8d3e10680c7f7f53cb47cf711aad606e20fa35e0 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 10 Mar 2021 19:17:13 +0200 Subject: [PATCH 34/38] fix : bugfix --- app/resources/locations.json | 2047 ++++++++++++++++++++++++++++++++++ 1 file changed, 2047 insertions(+) create mode 100644 app/resources/locations.json diff --git a/app/resources/locations.json b/app/resources/locations.json new file mode 100644 index 00000000..ee415682 --- /dev/null +++ b/app/resources/locations.json @@ -0,0 +1,2047 @@ +[ + { + "country":"AD", + "city":"Andorra La Vella", + "zip_number":"3041563" + }, + { + "country":"AE", + "city":"Abu Dhabi", + "zip_number":"292968" + }, + { + "country":"AE", + "city":"Dubai", + "zip_number":"292223" + }, + { + "country":"AF", + "city":"Kabul", + "zip_number":"1138958" + }, + { + "country":"AI", + "city":"The Valley", + "zip_number":"3573374" + }, + { + "country":"AL", + "city":"Tirana", + "zip_number":"3183875" + }, + { + "country":"AM", + "city":"Yerevan", + "zip_number":"616052" + }, + { + "country":"AO", + "city":"Luanda", + "zip_number":"2240449" + }, + { + "country":"AR", + "city":"Buenos Aires", + "zip_number":"3435910" + }, + { + "country":"AR", + "city":"Cordoba", + "zip_number":"3860259" + }, + { + "country":"AR", + "city":"Rosario", + "zip_number":"3838583" + }, + { + "country":"AS", + "city":"Pago Pago", + "zip_number":"5881576" + }, + { + "country":"AT", + "city":"Vienna", + "zip_number":"2761369" + }, + { + "country":"AU", + "city":"Adelaide", + "zip_number":"2078025" + }, + { + "country":"AU", + "city":"Brisbane", + "zip_number":"2174003" + }, + { + "country":"AU", + "city":"Canberra", + "zip_number":"2172517" + }, + { + "country":"AU", + "city":"Gold Coast", + "zip_number":"2165087" + }, + { + "country":"AU", + "city":"Hobart", + "zip_number":"2163355" + }, + { + "country":"AU", + "city":"Melbourne", + "zip_number":"2158177" + }, + { + "country":"AU", + "city":"Perth", + "zip_number":"2063523" + }, + { + "country":"AU", + "city":"Sydney", + "zip_number":"2147714" + }, + { + "country":"AW", + "city":"Oranjestad", + "zip_number":"3577154" + }, + { + "country":"AZ", + "city":"Baku", + "zip_number":"587084" + }, + { + "country":"BA", + "city":"Sarajevo", + "zip_number":"3191281" + }, + { + "country":"BB", + "city":"Bridgetown", + "zip_number":"3374036" + }, + { + "country":"BD", + "city":"Chittagong", + "zip_number":"1205733" + }, + { + "country":"BD", + "city":"Dhaka", + "zip_number":"1185241" + }, + { + "country":"BD", + "city":"Khulna", + "zip_number":"1336135" + }, + { + "country":"BE", + "city":"Brussels", + "zip_number":"2800866" + }, + { + "country":"BF", + "city":"Ouagadougou", + "zip_number":"2357048" + }, + { + "country":"BG", + "city":"Sofia", + "zip_number":"727011" + }, + { + "country":"BH", + "city":"Manama", + "zip_number":"290340" + }, + { + "country":"BI", + "city":"Bujumbura", + "zip_number":"425378" + }, + { + "country":"BJ", + "city":"Porto", + "zip_number":"novo" + }, + { + "country":"BM", + "city":"Hamilton", + "zip_number":"3573197" + }, + { + "country":"BN", + "city":"Bandar Seri Begawan", + "zip_number":"1820906" + }, + { + "country":"BO", + "city":"La Paz", + "zip_number":"3911925" + }, + { + "country":"BO", + "city":"Santa Cruz de la Sierra", + "zip_number":"3904906" + }, + { + "country":"BR", + "city":"Belo Horizonte", + "zip_number":"3470127" + }, + { + "country":"BR", + "city":"Brasilia", + "zip_number":"3469058" + }, + { + "country":"BR", + "city":"Fortaleza", + "zip_number":"3399415" + }, + { + "country":"BR", + "city":"Rio de Janeiro", + "zip_number":"3451190" + }, + { + "country":"BR", + "city":"Salvador", + "zip_number":"3450554" + }, + { + "country":"BR", + "city":"Sao Paulo", + "zip_number":"3448439" + }, + { + "country":"BS", + "city":"Nassau", + "zip_number":"3571824" + }, + { + "country":"BT", + "city":"Thimphu", + "zip_number":"1252416" + }, + { + "country":"BW", + "city":"Gaborone", + "zip_number":"933773" + }, + { + "country":"BY", + "city":"Minsk", + "zip_number":"625144" + }, + { + "country":"BZ", + "city":"Belmopan", + "zip_number":"3582672" + }, + { + "country":"CA", + "city":"Calgary", + "zip_number":"5913490" + }, + { + "country":"CA", + "city":"Edmonton", + "zip_number":"5946768" + }, + { + "country":"CA", + "city":"Halifax", + "zip_number":"6324729" + }, + { + "country":"CA", + "city":"Mississauga", + "zip_number":"6075357" + }, + { + "country":"CA", + "city":"Montreal", + "zip_number":"6077243" + }, + { + "country":"CA", + "city":"Ottawa", + "zip_number":"6094817" + }, + { + "country":"CA", + "city":"Quebec City", + "zip_number":"6325494" + }, + { + "country":"CA", + "city":"Regina", + "zip_number":"6119109" + }, + { + "country":"CA", + "city":"Saskatoon", + "zip_number":"6141256" + }, + { + "country":"CA", + "city":"St. John's", + "zip_number":"05" + }, + { + "country":"CA", + "city":"Toronto", + "zip_number":"6167865" + }, + { + "country":"CA", + "city":"Vancouver", + "zip_number":"6173331" + }, + { + "country":"CA", + "city":"Victoria", + "zip_number":"6174041" + }, + { + "country":"CA", + "city":"Winnipeg", + "zip_number":"6183235" + }, + { + "country":"CD", + "city":"Kinshasa", + "zip_number":"2314302" + }, + { + "country":"CD", + "city":"Lubumbashi", + "zip_number":"922704" + }, + { + "country":"CF", + "city":"Bangui", + "zip_number":"2389853" + }, + { + "country":"CG", + "city":"Brazzaville", + "zip_number":"2260535" + }, + { + "country":"CH", + "city":"Bern", + "zip_number":"2661552" + }, + { + "country":"CH", + "city":"Geneva", + "zip_number":"2660646" + }, + { + "country":"CH", + "city":"Zurich", + "zip_number":"2657896" + }, + { + "country":"CI", + "city":"Abidjan", + "zip_number":"2293538" + }, + { + "country":"CI", + "city":"Yamoussoukro", + "zip_number":"2279755" + }, + { + "country":"CK", + "city":"Avarua", + "zip_number":"4035715" + }, + { + "country":"CL", + "city":"Santiago", + "zip_number":"3871336" + }, + { + "country":"CM", + "city":"Douala", + "zip_number":"2232593" + }, + { + "country":"CM", + "city":"Yaounde", + "zip_number":"2220957" + }, + { + "country":"CN", + "city":"Beijing", + "zip_number":"1816670" + }, + { + "country":"CN", + "city":"Chengdu", + "zip_number":"1815286" + }, + { + "country":"CN", + "city":"Chongqing", + "zip_number":"1814906" + }, + { + "country":"CN", + "city":"Guangzhou", + "zip_number":"1809858" + }, + { + "country":"CN", + "city":"Harbin", + "zip_number":"2037013" + }, + { + "country":"CN", + "city":"Kaifeng", + "zip_number":"1804879" + }, + { + "country":"CN", + "city":"Lanzhou", + "zip_number":"1804430" + }, + { + "country":"CN", + "city":"Nanchong", + "zip_number":"1800146" + }, + { + "country":"CN", + "city":"Nanjing", + "zip_number":"1799962" + }, + { + "country":"CN", + "city":"Puyang", + "zip_number":"1798422" + }, + { + "country":"CN", + "city":"Shanghai", + "zip_number":"1796236" + }, + { + "country":"CN", + "city":"Shenyang", + "zip_number":"2034937" + }, + { + "country":"CN", + "city":"Shenzhen", + "zip_number":"1795565" + }, + { + "country":"CN", + "city":"Shiyan", + "zip_number":"1794903" + }, + { + "country":"CN", + "city":"Tai'an", + "zip_number":"1793724" + }, + { + "country":"CN", + "city":"Tianjin", + "zip_number":"1792947" + }, + { + "country":"CN", + "city":"Wuhan", + "zip_number":"1791247" + }, + { + "country":"CN", + "city":"Xi'an", + "zip_number":"1790630" + }, + { + "country":"CN", + "city":"Yueyang", + "zip_number":"1927639" + }, + { + "country":"CN", + "city":"Zhumadian", + "zip_number":"1783873" + }, + { + "country":"CO", + "city":"Barranquilla", + "zip_number":"3689147" + }, + { + "country":"CO", + "city":"Bogota", + "zip_number":"3688689" + }, + { + "country":"CO", + "city":"Cali", + "zip_number":"3687925" + }, + { + "country":"CO", + "city":"Medellin", + "zip_number":"3674962" + }, + { + "country":"CR", + "city":"San José", + "zip_number":"3621849" + }, + { + "country":"CU", + "city":"Havana", + "zip_number":"3553478" + }, + { + "country":"CV", + "city":"Praia", + "zip_number":"3374333" + }, + { + "country":"CW", + "city":"Willemstad", + "zip_number":"3513090" + }, + { + "country":"CY", + "city":"Nicosia", + "zip_number":"146268" + }, + { + "country":"CZ", + "city":"Prague", + "zip_number":"3067696" + }, + { + "country":"DE", + "city":"Berlin", + "zip_number":"2950159" + }, + { + "country":"DE", + "city":"Hamburg", + "zip_number":"2911298" + }, + { + "country":"DE", + "city":"Munich", + "zip_number":"2867714" + }, + { + "country":"DK", + "city":"Copenhagen", + "zip_number":"2618425" + }, + { + "country":"DM", + "city":"Roseau", + "zip_number":"3575635" + }, + { + "country":"DO", + "city":"Santiago de los Caballeros", + "zip_number":"3492914" + }, + { + "country":"DO", + "city":"Santo Domingo", + "zip_number":"3492908" + }, + { + "country":"DZ", + "city":"Algiers", + "zip_number":"2507480" + }, + { + "country":"EC", + "city":"Guayaquil", + "zip_number":"3657509" + }, + { + "country":"EC", + "city":"Quito", + "zip_number":"3652462" + }, + { + "country":"EE", + "city":"Tallinn", + "zip_number":"588409" + }, + { + "country":"EG", + "city":"Al Jizah", + "zip_number":"360995" + }, + { + "country":"EG", + "city":"Alexandria", + "zip_number":"361058" + }, + { + "country":"EG", + "city":"Cairo", + "zip_number":"360630" + }, + { + "country":"ER", + "city":"Asmara", + "zip_number":"343300" + }, + { + "country":"ES", + "city":"Barcelona", + "zip_number":"3128760" + }, + { + "country":"ES", + "city":"Madrid", + "zip_number":"3117735" + }, + { + "country":"ET", + "city":"Addis Ababa", + "zip_number":"344979" + }, + { + "country":"FI", + "city":"Helsinki", + "zip_number":"658225" + }, + { + "country":"FJ", + "city":"Suva", + "zip_number":"2198148" + }, + { + "country":"FK", + "city":"Stanley", + "zip_number":"3426691" + }, + { + "country":"FO", + "city":"Tórshavn", + "zip_number":"2611396" + }, + { + "country":"FR", + "city":"Marseilles", + "zip_number":"2995469" + }, + { + "country":"FR", + "city":"Paris", + "zip_number":"2988507" + }, + { + "country":"GA", + "city":"Libreville", + "zip_number":"2399697" + }, + { + "country":"GB", + "city":"Belfast", + "zip_number":"2655984" + }, + { + "country":"GB", + "city":"Birmingham", + "zip_number":"2655603" + }, + { + "country":"GB", + "city":"Bristol", + "zip_number":"2654675" + }, + { + "country":"GB", + "city":"Cardiff", + "zip_number":"2653822" + }, + { + "country":"GB", + "city":"Edinburgh", + "zip_number":"2650225" + }, + { + "country":"GB", + "city":"Glasgow", + "zip_number":"2648579" + }, + { + "country":"GB", + "city":"Leeds", + "zip_number":"2644688" + }, + { + "country":"GB", + "city":"Liverpool", + "zip_number":"2644210" + }, + { + "country":"GB", + "city":"London", + "zip_number":"2643743" + }, + { + "country":"GB", + "city":"Manchester", + "zip_number":"2643123" + }, + { + "country":"GB", + "city":"Sheffield", + "zip_number":"2638077" + }, + { + "country":"GE", + "city":"Tbilisi", + "zip_number":"611717" + }, + { + "country":"GH", + "city":"Accra", + "zip_number":"2306104" + }, + { + "country":"GH", + "city":"Kumasi", + "zip_number":"2298890" + }, + { + "country":"GI", + "city":"Gibraltar", + "zip_number":"2411585" + }, + { + "country":"GL", + "city":"Nuuk", + "zip_number":"3421319" + }, + { + "country":"GM", + "city":"Banjul", + "zip_number":"2413876" + }, + { + "country":"GN", + "city":"Camayenne", + "zip_number":"2422488" + }, + { + "country":"GN", + "city":"Conakry", + "zip_number":"2422465" + }, + { + "country":"GQ", + "city":"Malabo", + "zip_number":"2309527" + }, + { + "country":"GR", + "city":"Athens", + "zip_number":"264371" + }, + { + "country":"GT", + "city":"Guatemala City", + "zip_number":"3598132" + }, + { + "country":"GW", + "city":"Bissau", + "zip_number":"2374775" + }, + { + "country":"GY", + "city":"Georgetown", + "zip_number":"3378644" + }, + { + "country":"HK", + "city":"Hong Kong", + "zip_number":"1819729" + }, + { + "country":"HN", + "city":"Tegucigalpa", + "zip_number":"3600949" + }, + { + "country":"HR", + "city":"Zagreb", + "zip_number":"3186886" + }, + { + "country":"HT", + "city":"Port", + "zip_number":"au" + }, + { + "country":"HU", + "city":"Budapest", + "zip_number":"3054643" + }, + { + "country":"ID", + "city":"Bandung", + "zip_number":"1650357" + }, + { + "country":"ID", + "city":"Bekasi", + "zip_number":"1649378" + }, + { + "country":"ID", + "city":"Depok", + "zip_number":"1645518" + }, + { + "country":"ID", + "city":"Jakarta", + "zip_number":"1642911" + }, + { + "country":"ID", + "city":"Makassar", + "zip_number":"1622786" + }, + { + "country":"ID", + "city":"Medan", + "zip_number":"1214520" + }, + { + "country":"ID", + "city":"Palembang", + "zip_number":"1633070" + }, + { + "country":"ID", + "city":"Semarang", + "zip_number":"1627896" + }, + { + "country":"ID", + "city":"South Tangerang", + "zip_number":"8581443" + }, + { + "country":"ID", + "city":"Surabaya", + "zip_number":"1625822" + }, + { + "country":"ID", + "city":"Tangerang", + "zip_number":"1625084" + }, + { + "country":"IE", + "city":"Dublin", + "zip_number":"2964574" + }, + { + "country":"IL", + "city":"Ashdod", + "zip_number":"295629" + }, + { + "country":"IL", + "city":"Ashkelon", + "zip_number":"295620" + }, + { + "country":"IL", + "city":"Bat Yam", + "zip_number":"295548" + }, + { + "country":"IL", + "city":"Be'er Sheva", + "zip_number":"295530" + }, + { + "country":"IL", + "city":"Beit Shemesh", + "zip_number":"295432" + }, + { + "country":"IL", + "city":"Bnei Brak", + "zip_number":"295514" + }, + { + "country":"IL", + "city":"Eilat", + "zip_number":"295277" + }, + { + "country":"IL", + "city":"Hadera", + "zip_number":"294946" + }, + { + "country":"IL", + "city":"Haifa", + "zip_number":"294801" + }, + { + "country":"IL", + "city":"Herzliya", + "zip_number":"294778" + }, + { + "country":"IL", + "city":"Holon", + "zip_number":"294751" + }, + { + "country":"IL", + "city":"Jerusalem", + "zip_number":"281184" + }, + { + "country":"IL", + "city":"Kfar Saba", + "zip_number":"294514" + }, + { + "country":"IL", + "city":"Lod", + "zip_number":"294421" + }, + { + "country":"IL", + "city":"Modiin", + "zip_number":"282926" + }, + { + "country":"IL", + "city":"Nazareth", + "zip_number":"294098" + }, + { + "country":"IL", + "city":"Netanya", + "zip_number":"294071" + }, + { + "country":"IL", + "city":"Petach Tikvah", + "zip_number":"293918" + }, + { + "country":"IL", + "city":"Ra'anana", + "zip_number":"293807" + }, + { + "country":"IL", + "city":"Ramat Gan", + "zip_number":"293788" + }, + { + "country":"IL", + "city":"Ramla", + "zip_number":"293768" + }, + { + "country":"IL", + "city":"Rishon LeZion", + "zip_number":"293703" + }, + { + "country":"IL", + "city":"Tel Aviv", + "zip_number":"293397" + }, + { + "country":"IL", + "city":"Tiberias", + "zip_number":"293322" + }, + { + "country":"IM", + "city":"Douglas", + "zip_number":"3042237" + }, + { + "country":"IN", + "city":"Ahmadabad", + "zip_number":"1279233" + }, + { + "country":"IN", + "city":"Bangalore", + "zip_number":"1277333" + }, + { + "country":"IN", + "city":"Bombay", + "zip_number":"1275339" + }, + { + "country":"IN", + "city":"Calcutta", + "zip_number":"1275004" + }, + { + "country":"IN", + "city":"Chennai", + "zip_number":"1264527" + }, + { + "country":"IN", + "city":"Cochin", + "zip_number":"1273874" + }, + { + "country":"IN", + "city":"Hyderabad", + "zip_number":"1269843" + }, + { + "country":"IN", + "city":"Jaipur", + "zip_number":"1269515" + }, + { + "country":"IN", + "city":"Kanpur", + "zip_number":"1267995" + }, + { + "country":"IN", + "city":"New Delhi", + "zip_number":"1261481" + }, + { + "country":"IN", + "city":"Pune", + "zip_number":"1259229" + }, + { + "country":"IN", + "city":"Surat", + "zip_number":"1255364" + }, + { + "country":"IQ", + "city":"Baghdad", + "zip_number":"98182" + }, + { + "country":"IR", + "city":"Tehran", + "zip_number":"112931" + }, + { + "country":"IS", + "city":"Reykjavík", + "zip_number":"3413829" + }, + { + "country":"IT", + "city":"Milano", + "zip_number":"3173435" + }, + { + "country":"IT", + "city":"Rome", + "zip_number":"3169070" + }, + { + "country":"JM", + "city":"Kingston", + "zip_number":"3489854" + }, + { + "country":"JO", + "city":"Amman", + "zip_number":"250441" + }, + { + "country":"JP", + "city":"Kobe", + "zip_number":"shi" + }, + { + "country":"JP", + "city":"Kyoto", + "zip_number":"1857910" + }, + { + "country":"JP", + "city":"Nagoya", + "zip_number":"shi" + }, + { + "country":"JP", + "city":"Osaka", + "zip_number":"shi" + }, + { + "country":"JP", + "city":"Sapporo", + "zip_number":"2128295" + }, + { + "country":"JP", + "city":"Tokyo", + "zip_number":"1850147" + }, + { + "country":"KE", + "city":"Nairobi", + "zip_number":"184745" + }, + { + "country":"KG", + "city":"Bishkek", + "zip_number":"1528675" + }, + { + "country":"KH", + "city":"Phnom Penh", + "zip_number":"1821306" + }, + { + "country":"KM", + "city":"Moroni", + "zip_number":"921772" + }, + { + "country":"KN", + "city":"Basseterre", + "zip_number":"3575551" + }, + { + "country":"KP", + "city":"Pyongyang", + "zip_number":"1871859" + }, + { + "country":"KR", + "city":"Busan", + "zip_number":"1838524" + }, + { + "country":"KR", + "city":"Seoul", + "zip_number":"1835848" + }, + { + "country":"KW", + "city":"Kuwait", + "zip_number":"285787" + }, + { + "country":"KY", + "city":"George Town", + "zip_number":"3580661" + }, + { + "country":"KZ", + "city":"Almaty", + "zip_number":"1526384" + }, + { + "country":"KZ", + "city":"Astana", + "zip_number":"1526273" + }, + { + "country":"LA", + "city":"Vientiane", + "zip_number":"1651944" + }, + { + "country":"LB", + "city":"Beirut", + "zip_number":"276781" + }, + { + "country":"LC", + "city":"Castries", + "zip_number":"3576812" + }, + { + "country":"LI", + "city":"Vaduz", + "zip_number":"3042030" + }, + { + "country":"LR", + "city":"Monrovia", + "zip_number":"2274895" + }, + { + "country":"LS", + "city":"Maseru", + "zip_number":"932505" + }, + { + "country":"LT", + "city":"Vilnius", + "zip_number":"593116" + }, + { + "country":"LU", + "city":"Luxemburg", + "zip_number":"2960316" + }, + { + "country":"LV", + "city":"Riga", + "zip_number":"456172" + }, + { + "country":"LY", + "city":"Tripoli", + "zip_number":"2210247" + }, + { + "country":"MA", + "city":"Casablanca", + "zip_number":"2553604" + }, + { + "country":"MA", + "city":"Rabat", + "zip_number":"2538475" + }, + { + "country":"MD", + "city":"Chisinau", + "zip_number":"618426" + }, + { + "country":"ME", + "city":"Podgorica", + "zip_number":"3193044" + }, + { + "country":"MG", + "city":"Antananarivo", + "zip_number":"1070940" + }, + { + "country":"MK", + "city":"Skopje", + "zip_number":"785842" + }, + { + "country":"ML", + "city":"Bamako", + "zip_number":"2460596" + }, + { + "country":"MM", + "city":"Mandalay", + "zip_number":"1311874" + }, + { + "country":"MM", + "city":"Rangoon", + "zip_number":"1298824" + }, + { + "country":"MN", + "city":"Ulaanbaatar", + "zip_number":"2028462" + }, + { + "country":"MP", + "city":"Saipan", + "zip_number":"7828758" + }, + { + "country":"MR", + "city":"Nouakchott", + "zip_number":"2377450" + }, + { + "country":"MS", + "city":"Plymouth", + "zip_number":"3578069" + }, + { + "country":"MT", + "city":"Valletta", + "zip_number":"2562305" + }, + { + "country":"MU", + "city":"Port Louis", + "zip_number":"934154" + }, + { + "country":"MW", + "city":"Lilongwe", + "zip_number":"927967" + }, + { + "country":"MX", + "city":"Cancun", + "zip_number":"3531673" + }, + { + "country":"MX", + "city":"Guadalajara", + "zip_number":"4005539" + }, + { + "country":"MX", + "city":"Iztapalapa", + "zip_number":"3526683" + }, + { + "country":"MX", + "city":"Mazatlan", + "zip_number":"3996322" + }, + { + "country":"MX", + "city":"Mexico City", + "zip_number":"3530597" + }, + { + "country":"MX", + "city":"Monterrey", + "zip_number":"3995465" + }, + { + "country":"MX", + "city":"Puerto Vallarta", + "zip_number":"3991328" + }, + { + "country":"MX", + "city":"Tijuana", + "zip_number":"3981609" + }, + { + "country":"MY", + "city":"Kota Bharu", + "zip_number":"1736376" + }, + { + "country":"MY", + "city":"Kuala Lumpur", + "zip_number":"1735161" + }, + { + "country":"MZ", + "city":"Maputo", + "zip_number":"1040652" + }, + { + "country":"NA", + "city":"Windhoek", + "zip_number":"3352136" + }, + { + "country":"NC", + "city":"Nouméa", + "zip_number":"2139521" + }, + { + "country":"NE", + "city":"Niamey", + "zip_number":"2440485" + }, + { + "country":"NG", + "city":"Abuja", + "zip_number":"2352778" + }, + { + "country":"NG", + "city":"Lagos", + "zip_number":"2332459" + }, + { + "country":"NI", + "city":"Managua", + "zip_number":"3617763" + }, + { + "country":"NL", + "city":"Amsterdam", + "zip_number":"2759794" + }, + { + "country":"NO", + "city":"Oslo", + "zip_number":"3143244" + }, + { + "country":"NP", + "city":"Kathmandu", + "zip_number":"1283240" + }, + { + "country":"NU", + "city":"Alofi", + "zip_number":"4036284" + }, + { + "country":"NZ", + "city":"Auckland", + "zip_number":"2193733" + }, + { + "country":"NZ", + "city":"Christchurch", + "zip_number":"2192362" + }, + { + "country":"NZ", + "city":"Wellington", + "zip_number":"2179537" + }, + { + "country":"OM", + "city":"Muscat", + "zip_number":"287286" + }, + { + "country":"PA", + "city":"Panama City", + "zip_number":"3703443" + }, + { + "country":"PE", + "city":"Lima", + "zip_number":"3936456" + }, + { + "country":"PF", + "city":"Papeete", + "zip_number":"4033936" + }, + { + "country":"PG", + "city":"Port Moresby", + "zip_number":"2088122" + }, + { + "country":"PH", + "city":"Manila", + "zip_number":"1701668" + }, + { + "country":"PK", + "city":"Islamabad", + "zip_number":"1176615" + }, + { + "country":"PK", + "city":"Karachi", + "zip_number":"1174872" + }, + { + "country":"PL", + "city":"Warsaw", + "zip_number":"756135" + }, + { + "country":"PR", + "city":"San Juan", + "zip_number":"4568127" + }, + { + "country":"PT", + "city":"Lisbon", + "zip_number":"2267057" + }, + { + "country":"PY", + "city":"Asuncion", + "zip_number":"3439389" + }, + { + "country":"QA", + "city":"Doha", + "zip_number":"290030" + }, + { + "country":"RO", + "city":"Bucharest", + "zip_number":"683506" + }, + { + "country":"RS", + "city":"Belgrade", + "zip_number":"792680" + }, + { + "country":"RU", + "city":"Moscow", + "zip_number":"524901" + }, + { + "country":"RU", + "city":"Novosibirsk", + "zip_number":"1496747" + }, + { + "country":"RU", + "city":"Saint Petersburg", + "zip_number":"498817" + }, + { + "country":"RU", + "city":"Yekaterinburg", + "zip_number":"1486209" + }, + { + "country":"RW", + "city":"Kigali", + "zip_number":"202061" + }, + { + "country":"SA", + "city":"Jeddah", + "zip_number":"105343" + }, + { + "country":"SA", + "city":"Mecca", + "zip_number":"104515" + }, + { + "country":"SA", + "city":"Medina", + "zip_number":"109223" + }, + { + "country":"SA", + "city":"Riyadh", + "zip_number":"108410" + }, + { + "country":"SB", + "city":"Honiara", + "zip_number":"2108502" + }, + { + "country":"SC", + "city":"Victoria", + "zip_number":"241131" + }, + { + "country":"SD", + "city":"Khartoum", + "zip_number":"379252" + }, + { + "country":"SD", + "city":"Omdurman", + "zip_number":"365137" + }, + { + "country":"SE", + "city":"Stockholm", + "zip_number":"2673730" + }, + { + "country":"SG", + "city":"Singapore", + "zip_number":"1880252" + }, + { + "country":"SH", + "city":"Jamestown", + "zip_number":"3370903" + }, + { + "country":"SI", + "city":"Ljubljana", + "zip_number":"3196359" + }, + { + "country":"SK", + "city":"Bratislava", + "zip_number":"3060972" + }, + { + "country":"SL", + "city":"Freetown", + "zip_number":"2408770" + }, + { + "country":"SN", + "city":"Dakar", + "zip_number":"2253354" + }, + { + "country":"SO", + "city":"Mogadishu", + "zip_number":"53654" + }, + { + "country":"SR", + "city":"Paramaribo", + "zip_number":"3383330" + }, + { + "country":"ST", + "city":"São Tomé", + "zip_number":"2410763" + }, + { + "country":"SV", + "city":"San Salvador", + "zip_number":"3583361" + }, + { + "country":"SY", + "city":"Aleppo", + "zip_number":"170063" + }, + { + "country":"SY", + "city":"Damascus", + "zip_number":"170654" + }, + { + "country":"SZ", + "city":"Mbabane", + "zip_number":"934985" + }, + { + "country":"TC", + "city":"Cockburn Town", + "zip_number":"3576994" + }, + { + "country":"TD", + "city":"Ndjamena", + "zip_number":"2427123" + }, + { + "country":"TG", + "city":"Lomé", + "zip_number":"2365267" + }, + { + "country":"TH", + "city":"Bangkok", + "zip_number":"1609350" + }, + { + "country":"TJ", + "city":"Dushanbe", + "zip_number":"1221874" + }, + { + "country":"TM", + "city":"Ashgabat", + "zip_number":"162183" + }, + { + "country":"TN", + "city":"Tunis", + "zip_number":"2464470" + }, + { + "country":"TR", + "city":"Adana", + "zip_number":"325363" + }, + { + "country":"TR", + "city":"Ankara", + "zip_number":"323786" + }, + { + "country":"TR", + "city":"Bursa", + "zip_number":"750269" + }, + { + "country":"TR", + "city":"Istanbul", + "zip_number":"745044" + }, + { + "country":"TR", + "city":"Izmir", + "zip_number":"311046" + }, + { + "country":"TV", + "city":"Funafuti", + "zip_number":"2110394" + }, + { + "country":"TW", + "city":"Kaohsiung", + "zip_number":"1673820" + }, + { + "country":"TW", + "city":"Taipei", + "zip_number":"1668341" + }, + { + "country":"TZ", + "city":"Dar es Salaam", + "zip_number":"160263" + }, + { + "country":"TZ", + "city":"Dodoma", + "zip_number":"160196" + }, + { + "country":"UA", + "city":"Kharkiv", + "zip_number":"706483" + }, + { + "country":"UA", + "city":"Kiev", + "zip_number":"703448" + }, + { + "country":"UG", + "city":"Kampala", + "zip_number":"232422" + }, + { + "country":"US", + "city":"Atlanta", + "zip_number":"GA" + }, + { + "country":"US", + "city":"Austin", + "zip_number":"TX" + }, + { + "country":"US", + "city":"Baltimore", + "zip_number":"MD" + }, + { + "country":"US", + "city":"Boston", + "zip_number":"MA" + }, + { + "country":"US", + "city":"Buffalo", + "zip_number":"NY" + }, + { + "country":"US", + "city":"Chicago", + "zip_number":"IL" + }, + { + "country":"US", + "city":"Cincinnati", + "zip_number":"OH" + }, + { + "country":"US", + "city":"Cleveland", + "zip_number":"OH" + }, + { + "country":"US", + "city":"Columbus", + "zip_number":"OH" + }, + { + "country":"US", + "city":"Dallas", + "zip_number":"TX" + }, + { + "country":"US", + "city":"Denver", + "zip_number":"CO" + }, + { + "country":"US", + "city":"Detroit", + "zip_number":"MI" + }, + { + "country":"US", + "city":"Hartford", + "zip_number":"CT" + }, + { + "country":"US", + "city":"Honolulu", + "zip_number":"HI" + }, + { + "country":"US", + "city":"Houston", + "zip_number":"TX" + }, + { + "country":"US", + "city":"Lakewood", + "zip_number":"NJ" + }, + { + "country":"US", + "city":"Las Vegas", + "zip_number":"NV" + }, + { + "country":"US", + "city":"Livingston", + "zip_number":"NY" + }, + { + "country":"US", + "city":"Los Angeles", + "zip_number":"CA" + }, + { + "country":"US", + "city":"Memphis", + "zip_number":"TN" + }, + { + "country":"US", + "city":"Miami", + "zip_number":"FL" + }, + { + "country":"US", + "city":"Milwaukee", + "zip_number":"WI" + }, + { + "country":"US", + "city":"Monsey", + "zip_number":"NY" + }, + { + "country":"US", + "city":"New Haven", + "zip_number":"CT" + }, + { + "country":"US", + "city":"New York", + "zip_number":"NY" + }, + { + "country":"US", + "city":"Omaha", + "zip_number":"NE" + }, + { + "country":"US", + "city":"Orlando", + "zip_number":"FL" + }, + { + "country":"US", + "city":"Passaic", + "zip_number":"NJ" + }, + { + "country":"US", + "city":"Philadelphia", + "zip_number":"PA" + }, + { + "country":"US", + "city":"Phoenix", + "zip_number":"AZ" + }, + { + "country":"US", + "city":"Pittsburgh", + "zip_number":"PA" + }, + { + "country":"US", + "city":"Portland", + "zip_number":"OR" + }, + { + "country":"US", + "city":"Providence", + "zip_number":"RI" + }, + { + "country":"US", + "city":"Richmond", + "zip_number":"VA" + }, + { + "country":"US", + "city":"Rochester", + "zip_number":"NY" + }, + { + "country":"US", + "city":"Saint Louis", + "zip_number":"MO" + }, + { + "country":"US", + "city":"Saint Paul", + "zip_number":"MN" + }, + { + "country":"US", + "city":"San Diego", + "zip_number":"CA" + }, + { + "country":"US", + "city":"San Francisco", + "zip_number":"CA" + }, + { + "country":"US", + "city":"Seattle", + "zip_number":"WA" + }, + { + "country":"US", + "city":"Silver Spring", + "zip_number":"MD" + }, + { + "country":"US", + "city":"Teaneck", + "zip_number":"NJ" + }, + { + "country":"US", + "city":"Washington", + "zip_number":"DC" + }, + { + "country":"US", + "city":"White Plains", + "zip_number":"NY" + }, + { + "country":"UY", + "city":"Montevideo", + "zip_number":"3441575" + }, + { + "country":"UZ", + "city":"Tashkent", + "zip_number":"1512569" + }, + { + "country":"VC", + "city":"Kingstown", + "zip_number":"3577887" + }, + { + "country":"VE", + "city":"Caracas", + "zip_number":"3646738" + }, + { + "country":"VE", + "city":"Maracaibo", + "zip_number":"3633009" + }, + { + "country":"VE", + "city":"Maracay", + "zip_number":"3632998" + }, + { + "country":"VE", + "city":"Valencia", + "zip_number":"3625549" + }, + { + "country":"VG", + "city":"Road Town", + "zip_number":"3577430" + }, + { + "country":"VN", + "city":"Hanoi", + "zip_number":"1581130" + }, + { + "country":"VN", + "city":"Ho Chi Minh City", + "zip_number":"1566083" + }, + { + "country":"WS", + "city":"Apia", + "zip_number":"4035413" + }, + { + "country":"YE", + "city":"Sanaa", + "zip_number":"71137" + }, + { + "country":"YT", + "city":"Mamoudzou", + "zip_number":"921815" + }, + { + "country":"ZA", + "city":"Cape Town", + "zip_number":"3369157" + }, + { + "country":"ZA", + "city":"Durban", + "zip_number":"1007311" + }, + { + "country":"ZA", + "city":"Johannesburg", + "zip_number":"993800" + }, + { + "country":"ZA", + "city":"Pretoria", + "zip_number":"964137" + }, + { + "country":"ZM", + "city":"Lusaka", + "zip_number":"909137" + }, + { + "country":"ZW", + "city":"Harare", + "zip_number":"890299" + } +] \ No newline at end of file From 9e22801d345490e5f9e9f801cc0521413c17015b Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 10 Mar 2021 19:17:21 +0200 Subject: [PATCH 35/38] fix : bugfix --- app/resources/shabbat_time_by_location.json | 36318 ------------------ 1 file changed, 36318 deletions(-) delete mode 100644 app/resources/shabbat_time_by_location.json diff --git a/app/resources/shabbat_time_by_location.json b/app/resources/shabbat_time_by_location.json deleted file mode 100644 index ca6bbb21..00000000 --- a/app/resources/shabbat_time_by_location.json +++ /dev/null @@ -1,36318 +0,0 @@ -[ - { - "title":"Hebcal Andorra la Vella February 2021", - "date":"2021-02-26T21:14:16.480Z", - "location":{ - "title":"Andorra la Vella, Andorra", - "city":"Andorra la Vella", - "tzid":"Europe/Andorra", - "latitude":42.50779, - "longitude":1.52109, - "cc":"AD", - "country":"Andorra", - "admin1":"Andorra la Vella", - "geo":"geoname", - "geonameid":3041563 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:18", - "date":"2021-02-26T18:18:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:20", - "date":"2021-02-27T19:20:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Abu Dhabi February 2021", - "date":"2021-02-26T21:15:45.756Z", - "location":{ - "title":"Abu Dhabi, United Arab Emirates", - "city":"Abu Dhabi", - "tzid":"Asia/Dubai", - "latitude":24.45118, - "longitude":54.39696, - "cc":"AE", - "country":"United Arab Emirates", - "admin1":"Abu Dhabi", - "geo":"geoname", - "geonameid":292968 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:03", - "date":"2021-02-26T18:03:00+04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:56", - "date":"2021-02-27T18:56:00+04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Dubai February 2021", - "date":"2021-02-26T21:15:46.214Z", - "location":{ - "title":"Dubai, United Arab Emirates", - "city":"Dubai", - "tzid":"Asia/Dubai", - "latitude":25.07725, - "longitude":55.30927, - "cc":"AE", - "country":"United Arab Emirates", - "admin1":"Dubai", - "geo":"geoname", - "geonameid":292223 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:59", - "date":"2021-02-26T17:59:00+04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:52", - "date":"2021-02-27T18:52:00+04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kabul February 2021", - "date":"2021-02-26T21:15:46.662Z", - "location":{ - "title":"Kabul, Afghanistan", - "city":"Kabul", - "tzid":"Asia/Kabul", - "latitude":34.52813, - "longitude":69.17233, - "cc":"AF", - "country":"Afghanistan", - "admin1":"Kabul", - "geo":"geoname", - "geonameid":1138958 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:25", - "date":"2021-02-26T17:25:00+04:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:22", - "date":"2021-02-27T18:22:00+04:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal The Valley February 2021", - "date":"2021-02-26T21:15:47.109Z", - "location":{ - "title":"The Valley, Anguilla", - "city":"The Valley", - "tzid":"America/Anguilla", - "latitude":18.21704, - "longitude":-63.05783, - "cc":"AI", - "country":"Anguilla", - "admin1":"The Valley", - "geo":"geoname", - "geonameid":3573374 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:58", - "date":"2021-02-26T17:58:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:49", - "date":"2021-02-27T18:49:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tirana February 2021", - "date":"2021-02-26T21:15:47.562Z", - "location":{ - "title":"Tirana, Albania", - "city":"Tirana", - "tzid":"Europe/Tirane", - "latitude":41.3275, - "longitude":19.81889, - "cc":"AL", - "country":"Albania", - "admin1":"Tirana", - "geo":"geoname", - "geonameid":3183875 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:06", - "date":"2021-02-26T17:06:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:07", - "date":"2021-02-27T18:07:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Yerevan February 2021", - "date":"2021-02-26T21:15:48.023Z", - "location":{ - "title":"Yerevan, Armenia", - "city":"Yerevan", - "tzid":"Asia/Yerevan", - "latitude":40.18111, - "longitude":44.51361, - "cc":"AM", - "country":"Armenia", - "admin1":"Yerevan", - "geo":"geoname", - "geonameid":616052 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:28", - "date":"2021-02-26T18:28:00+04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:29", - "date":"2021-02-27T19:29:00+04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Luanda February 2021", - "date":"2021-02-26T21:15:48.479Z", - "location":{ - "title":"Luanda, Angola", - "city":"Luanda", - "tzid":"Africa/Luanda", - "latitude":-8.83682, - "longitude":13.23432, - "cc":"AO", - "country":"Angola", - "admin1":"Luanda", - "geo":"geoname", - "geonameid":2240449 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:11", - "date":"2021-02-26T18:11:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:01", - "date":"2021-02-27T19:01:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Buenos Aires February 2021", - "date":"2021-02-26T21:15:48.942Z", - "location":{ - "title":"Buenos Aires, Argentina", - "city":"Buenos Aires", - "tzid":"America/Argentina/Buenos_Aires", - "latitude":-34.61315, - "longitude":-58.37723, - "cc":"AR", - "country":"Argentina", - "admin1":"Buenos Aires F.D.", - "geo":"geoname", - "geonameid":3435910 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:19", - "date":"2021-02-26T19:19:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 20:15", - "date":"2021-02-27T20:15:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Córdoba February 2021", - "date":"2021-02-26T21:15:49.397Z", - "location":{ - "title":"Córdoba, Cordoba, Argentina", - "city":"Córdoba", - "tzid":"America/Argentina/Cordoba", - "latitude":-31.4135, - "longitude":-64.18105, - "cc":"AR", - "country":"Argentina", - "admin1":"Cordoba", - "asciiname":"Cordoba", - "geo":"geoname", - "geonameid":3860259 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:39", - "date":"2021-02-26T19:39:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 20:33", - "date":"2021-02-27T20:33:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Rosario February 2021", - "date":"2021-02-26T21:15:49.851Z", - "location":{ - "title":"Rosario, Santa Fe, Argentina", - "city":"Rosario", - "tzid":"America/Argentina/Cordoba", - "latitude":-32.94682, - "longitude":-60.63932, - "cc":"AR", - "country":"Argentina", - "admin1":"Santa Fe", - "geo":"geoname", - "geonameid":3838583 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:26", - "date":"2021-02-26T19:26:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 20:21", - "date":"2021-02-27T20:21:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Pago Pago February 2021", - "date":"2021-02-26T21:15:50.302Z", - "location":{ - "title":"Pago Pago, Eastern District, American Samoa", - "city":"Pago Pago", - "tzid":"Pacific/Pago_Pago", - "latitude":-14.27806, - "longitude":-170.7025, - "cc":"AS", - "country":"American Samoa", - "admin1":"Eastern District", - "geo":"geoname", - "geonameid":5881576 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:31", - "date":"2021-02-26T18:31:00-11:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:21", - "date":"2021-02-27T19:21:00-11:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Vienna February 2021", - "date":"2021-02-26T21:15:50.751Z", - "location":{ - "title":"Vienna, Austria", - "city":"Vienna", - "tzid":"Europe/Vienna", - "latitude":48.20849, - "longitude":16.37208, - "cc":"AT", - "country":"Austria", - "admin1":"Vienna", - "geo":"geoname", - "geonameid":2761369 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:11", - "date":"2021-02-26T17:11:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:18", - "date":"2021-02-27T18:18:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Adelaide February 2021", - "date":"2021-02-26T21:15:51.235Z", - "location":{ - "title":"Adelaide, South Australia, Australia", - "city":"Adelaide", - "tzid":"Australia/Adelaide", - "latitude":-34.92866, - "longitude":138.59863, - "cc":"AU", - "country":"Australia", - "admin1":"South Australia", - "geo":"geoname", - "geonameid":2078025 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 7:42pm", - "date":"2021-02-26T19:42:00+10:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 8:38pm", - "date":"2021-02-27T20:38:00+10:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Brisbane February 2021", - "date":"2021-02-26T21:15:51.701Z", - "location":{ - "title":"Brisbane, Queensland, Australia", - "city":"Brisbane", - "tzid":"Australia/Brisbane", - "latitude":-27.46794, - "longitude":153.02809, - "cc":"AU", - "country":"Australia", - "admin1":"Queensland", - "geo":"geoname", - "geonameid":2174003 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:07pm", - "date":"2021-02-26T18:07:00+10:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:00pm", - "date":"2021-02-27T19:00:00+10:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Canberra February 2021", - "date":"2021-02-26T21:15:52.155Z", - "location":{ - "title":"Canberra, Australian Capital Territory, Australia", - "city":"Canberra", - "tzid":"Australia/Sydney", - "latitude":-35.28346, - "longitude":149.12807, - "cc":"AU", - "country":"Australia", - "admin1":"Australian Capital Territory", - "geo":"geoname", - "geonameid":2172517 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 7:30pm", - "date":"2021-02-26T19:30:00+11:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 8:26pm", - "date":"2021-02-27T20:26:00+11:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Gold Coast February 2021", - "date":"2021-02-26T21:15:52.605Z", - "location":{ - "title":"Gold Coast, Queensland, Australia", - "city":"Gold Coast", - "tzid":"Australia/Brisbane", - "latitude":-28.00029, - "longitude":153.43088, - "cc":"AU", - "country":"Australia", - "admin1":"Queensland", - "geo":"geoname", - "geonameid":2165087 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:06pm", - "date":"2021-02-26T18:06:00+10:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:59pm", - "date":"2021-02-27T18:59:00+10:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Hobart February 2021", - "date":"2021-02-26T21:15:53.065Z", - "location":{ - "title":"Hobart, Tasmania, Australia", - "city":"Hobart", - "tzid":"Australia/Hobart", - "latitude":-42.87936, - "longitude":147.32941, - "cc":"AU", - "country":"Australia", - "admin1":"Tasmania", - "geo":"geoname", - "geonameid":2163355 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 7:47pm", - "date":"2021-02-26T19:47:00+11:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 8:47pm", - "date":"2021-02-27T20:47:00+11:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Melbourne February 2021", - "date":"2021-02-26T21:15:53.524Z", - "location":{ - "title":"Melbourne, Victoria, Australia", - "city":"Melbourne", - "tzid":"Australia/Melbourne", - "latitude":-37.814, - "longitude":144.96332, - "cc":"AU", - "country":"Australia", - "admin1":"Victoria", - "geo":"geoname", - "geonameid":2158177 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 7:50pm", - "date":"2021-02-26T19:50:00+11:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 8:47pm", - "date":"2021-02-27T20:47:00+11:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Perth February 2021", - "date":"2021-02-26T21:15:53.979Z", - "location":{ - "title":"Perth, Western Australia, Australia", - "city":"Perth", - "tzid":"Australia/Perth", - "latitude":-31.95224, - "longitude":115.8614, - "cc":"AU", - "country":"Australia", - "admin1":"Western Australia", - "geo":"geoname", - "geonameid":2063523 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:40pm", - "date":"2021-02-26T18:40:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:34pm", - "date":"2021-02-27T19:34:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Sydney February 2021", - "date":"2021-02-26T21:15:54.430Z", - "location":{ - "title":"Sydney, New South Wales, Australia", - "city":"Sydney", - "tzid":"Australia/Sydney", - "latitude":-33.86785, - "longitude":151.20732, - "cc":"AU", - "country":"Australia", - "admin1":"New South Wales", - "geo":"geoname", - "geonameid":2147714 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 7:20pm", - "date":"2021-02-26T19:20:00+11:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 8:16pm", - "date":"2021-02-27T20:16:00+11:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Oranjestad February 2021", - "date":"2021-02-26T21:15:54.888Z", - "location":{ - "title":"Oranjestad, Aruba", - "city":"Oranjestad", - "tzid":"America/Aruba", - "latitude":12.52398, - "longitude":-70.02703, - "cc":"AW", - "country":"Aruba", - "geo":"geoname", - "geonameid":3577154 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:30", - "date":"2021-02-26T18:30:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:20", - "date":"2021-02-27T19:20:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Baku February 2021", - "date":"2021-02-26T21:15:55.334Z", - "location":{ - "title":"Baku, Baki, Azerbaijan", - "city":"Baku", - "tzid":"Asia/Baku", - "latitude":40.37767, - "longitude":49.89201, - "cc":"AZ", - "country":"Azerbaijan", - "admin1":"Baki", - "geo":"geoname", - "geonameid":587084 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:07", - "date":"2021-02-26T18:07:00+04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:07", - "date":"2021-02-27T19:07:00+04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Sarajevo February 2021", - "date":"2021-02-26T21:15:55.782Z", - "location":{ - "title":"Sarajevo, Federation of B&H, Bosnia and Herzegovina", - "city":"Sarajevo", - "tzid":"Europe/Sarajevo", - "latitude":43.84864, - "longitude":18.35644, - "cc":"BA", - "country":"Bosnia and Herzegovina", - "admin1":"Federation of B&H", - "geo":"geoname", - "geonameid":3191281 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:09", - "date":"2021-02-26T17:09:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:12", - "date":"2021-02-27T18:12:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bridgetown February 2021", - "date":"2021-02-26T21:15:56.232Z", - "location":{ - "title":"Bridgetown, Saint Michael, Barbados", - "city":"Bridgetown", - "tzid":"America/Barbados", - "latitude":13.10732, - "longitude":-59.62021, - "cc":"BB", - "country":"Barbados", - "admin1":"Saint Michael", - "geo":"geoname", - "geonameid":3374036 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:48", - "date":"2021-02-26T17:48:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:38", - "date":"2021-02-27T18:38:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Chattogram February 2021", - "date":"2021-02-26T21:15:56.686Z", - "location":{ - "title":"Chattogram, Chittagong, Bangladesh", - "city":"Chattogram", - "tzid":"Asia/Dhaka", - "latitude":22.3384, - "longitude":91.83168, - "cc":"BD", - "country":"Bangladesh", - "admin1":"Chittagong", - "geo":"geoname", - "geonameid":1205733 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:35", - "date":"2021-02-26T17:35:00+06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:28", - "date":"2021-02-27T18:28:00+06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Dhaka February 2021", - "date":"2021-02-26T21:15:57.154Z", - "location":{ - "title":"Dhaka, Bangladesh", - "city":"Dhaka", - "tzid":"Asia/Dhaka", - "latitude":23.7104, - "longitude":90.40744, - "cc":"BD", - "country":"Bangladesh", - "admin1":"Dhaka", - "geo":"geoname", - "geonameid":1185241 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:40", - "date":"2021-02-26T17:40:00+06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:33", - "date":"2021-02-27T18:33:00+06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Khulna February 2021", - "date":"2021-02-26T21:15:57.610Z", - "location":{ - "title":"Khulna, Bangladesh", - "city":"Khulna", - "tzid":"Asia/Dhaka", - "latitude":22.80979, - "longitude":89.56439, - "cc":"BD", - "country":"Bangladesh", - "admin1":"Khulna", - "geo":"geoname", - "geonameid":1336135 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:44", - "date":"2021-02-26T17:44:00+06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:36", - "date":"2021-02-27T18:36:00+06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Brussels February 2021", - "date":"2021-02-26T21:15:58.067Z", - "location":{ - "title":"Brussels, Belgium", - "city":"Brussels", - "tzid":"Europe/Brussels", - "latitude":50.85045, - "longitude":4.34878, - "cc":"BE", - "country":"Belgium", - "admin1":"Brussels Capital", - "geo":"geoname", - "geonameid":2800866 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:55", - "date":"2021-02-26T17:55:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:05", - "date":"2021-02-27T19:05:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ouagadougou February 2021", - "date":"2021-02-26T21:15:58.521Z", - "location":{ - "title":"Ouagadougou, Centre, Burkina Faso", - "city":"Ouagadougou", - "tzid":"Africa/Ouagadougou", - "latitude":12.36566, - "longitude":-1.53388, - "cc":"BF", - "country":"Burkina Faso", - "admin1":"Centre", - "geo":"geoname", - "geonameid":2357048 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:56", - "date":"2021-02-26T17:56:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:46", - "date":"2021-02-27T18:46:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Sofia February 2021", - "date":"2021-02-26T21:15:58.977Z", - "location":{ - "title":"Sofia, Bulgaria", - "city":"Sofia", - "tzid":"Europe/Sofia", - "latitude":42.69751, - "longitude":23.32415, - "cc":"BG", - "country":"Bulgaria", - "admin1":"Sofia-Capital", - "geo":"geoname", - "geonameid":727011 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:50", - "date":"2021-02-26T17:50:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:52", - "date":"2021-02-27T18:52:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Manama February 2021", - "date":"2021-02-26T21:15:59.434Z", - "location":{ - "title":"Manama, Bahrain", - "city":"Manama", - "tzid":"Asia/Bahrain", - "latitude":26.22787, - "longitude":50.58565, - "cc":"BH", - "country":"Bahrain", - "admin1":"Manama", - "geo":"geoname", - "geonameid":290340 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:17", - "date":"2021-02-26T17:17:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bujumbura February 2021", - "date":"2021-02-26T21:15:59.901Z", - "location":{ - "title":"Bujumbura, Burundi", - "city":"Bujumbura", - "tzid":"Africa/Bujumbura", - "latitude":-3.38193, - "longitude":29.36142, - "cc":"BI", - "country":"Burundi", - "admin1":"Bujumbura Mairie", - "geo":"geoname", - "geonameid":425378 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:03", - "date":"2021-02-26T18:03:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:52", - "date":"2021-02-27T18:52:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Porto-Novo March 2021", - "date":"2021-03-02T10:57:45.340Z", - "location":{ - "title":"Porto-Novo, Oueme, Benin", - "city":"Porto-Novo", - "tzid":"Africa/Porto-Novo", - "latitude":6.49646, - "longitude":2.60359, - "cc":"BJ", - "country":"Benin", - "admin1":"Oueme", - "geo":"geoname", - "geonameid":2392087 - }, - "items":[ - { - "title":"Candle lighting: 18:43", - "date":"2021-03-05T18:43:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:33", - "date":"2021-03-06T19:33:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Hamilton February 2021", - "date":"2021-02-26T21:16:00.837Z", - "location":{ - "title":"Hamilton, Bermuda", - "city":"Hamilton", - "tzid":"Atlantic/Bermuda", - "latitude":32.2949, - "longitude":-64.78303, - "cc":"BM", - "country":"Bermuda", - "admin1":"Hamilton city", - "geo":"geoname", - "geonameid":3573197 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:54", - "date":"2021-02-26T17:54:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:50", - "date":"2021-02-27T18:50:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bandar Seri Begawan February 2021", - "date":"2021-02-26T21:16:01.295Z", - "location":{ - "title":"Bandar Seri Begawan, Brunei-Muara District, Brunei", - "city":"Bandar Seri Begawan", - "tzid":"Asia/Brunei", - "latitude":4.89035, - "longitude":114.94006, - "cc":"BN", - "country":"Brunei", - "admin1":"Brunei-Muara District", - "geo":"geoname", - "geonameid":1820906 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:15", - "date":"2021-02-26T18:15:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:05", - "date":"2021-02-27T19:05:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal La Paz February 2021", - "date":"2021-02-26T21:16:01.763Z", - "location":{ - "title":"La Paz, Bolivia", - "city":"La Paz", - "tzid":"America/La_Paz", - "latitude":-16.5, - "longitude":-68.15, - "cc":"BO", - "country":"Bolivia", - "admin1":"La Paz", - "geo":"geoname", - "geonameid":3911925 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:42", - "date":"2021-02-26T18:42:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:33", - "date":"2021-02-27T19:33:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Santa Cruz de la Sierra February 2021", - "date":"2021-02-26T21:16:02.227Z", - "location":{ - "title":"Santa Cruz de la Sierra, Santa Cruz, Bolivia", - "city":"Santa Cruz de la Sierra", - "tzid":"America/La_Paz", - "latitude":-17.78629, - "longitude":-63.18117, - "cc":"BO", - "country":"Bolivia", - "admin1":"Santa Cruz", - "geo":"geoname", - "geonameid":3904906 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:23", - "date":"2021-02-26T18:23:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:14", - "date":"2021-02-27T19:14:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Belo Horizonte February 2021", - "date":"2021-02-26T21:16:02.686Z", - "location":{ - "title":"Belo Horizonte, Minas Gerais, Brazil", - "city":"Belo Horizonte", - "tzid":"America/Sao_Paulo", - "latitude":-19.92083, - "longitude":-43.93778, - "cc":"BR", - "country":"Brazil", - "admin1":"Minas Gerais", - "geo":"geoname", - "geonameid":3470127 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:08pm", - "date":"2021-02-26T18:08:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:59pm", - "date":"2021-02-27T18:59:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Brasília February 2021", - "date":"2021-02-26T21:16:03.150Z", - "location":{ - "title":"Brasília, Federal District, Brazil", - "city":"Brasília", - "tzid":"America/Sao_Paulo", - "latitude":-15.77972, - "longitude":-47.92972, - "cc":"BR", - "country":"Brazil", - "admin1":"Federal District", - "asciiname":"Brasilia", - "geo":"geoname", - "geonameid":3469058 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:21pm", - "date":"2021-02-26T18:21:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:11pm", - "date":"2021-02-27T19:11:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Fortaleza February 2021", - "date":"2021-02-26T21:16:03.602Z", - "location":{ - "title":"Fortaleza, Ceara, Brazil", - "city":"Fortaleza", - "tzid":"America/Fortaleza", - "latitude":-3.71722, - "longitude":-38.54306, - "cc":"BR", - "country":"Brazil", - "admin1":"Ceara", - "geo":"geoname", - "geonameid":3399415 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:35pm", - "date":"2021-02-26T17:35:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:24pm", - "date":"2021-02-27T18:24:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Rio de Janeiro February 2021", - "date":"2021-02-26T21:16:04.068Z", - "location":{ - "title":"Rio de Janeiro, Brazil", - "city":"Rio de Janeiro", - "tzid":"America/Sao_Paulo", - "latitude":-22.90642, - "longitude":-43.18223, - "cc":"BR", - "country":"Brazil", - "admin1":"Rio de Janeiro", - "geo":"geoname", - "geonameid":3451190 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:07pm", - "date":"2021-02-26T18:07:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:59pm", - "date":"2021-02-27T18:59:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Salvador February 2021", - "date":"2021-02-26T21:16:04.529Z", - "location":{ - "title":"Salvador, Bahia, Brazil", - "city":"Salvador", - "tzid":"America/Bahia", - "latitude":-12.97111, - "longitude":-38.51083, - "cc":"BR", - "country":"Brazil", - "admin1":"Bahia", - "geo":"geoname", - "geonameid":3450554 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:41pm", - "date":"2021-02-26T17:41:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:31pm", - "date":"2021-02-27T18:31:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal São Paulo February 2021", - "date":"2021-02-25T00:22:54.220Z", - "location":{ - "title":"São Paulo, Sao Paulo, Brazil", - "city":"São Paulo", - "tzid":"America/Sao_Paulo", - "latitude":-23.5475, - "longitude":-46.63611, - "cc":"BR", - "country":"Brazil", - "admin1":"Sao Paulo", - "asciiname":"Sao Paulo", - "geo":"geoname", - "geonameid":3448439 - }, - "items":[ - { - "title":"Fast begins", - "date":"2021-02-25T04:50:00-03:00", - "category":"zmanim", - "subcat":"fast", - "hebrew":"תחילת הצום", - "memo":"Ta'anit Esther" - }, - { - "title":"Ta'anit Esther", - "date":"2021-02-25", - "category":"holiday", - "subcat":"fast", - "hebrew":"תענית אסתר", - "leyning":{ - "1":"Exodus 32:11 - 32:14", - "2":"Exodus 34:1 - 34:3", - "3":"Exodus 34:4 - 34:10", - "torah":"Exodus 32:11-34:10" - }, - "link":"https://www.hebcal.com/holidays/taanit-esther-2021?utm_source=js&utm_medium=api", - "memo":"Fast of Esther" - }, - { - "title":"Fast ends", - "date":"2021-02-25T19:09:00-03:00", - "category":"zmanim", - "subcat":"fast", - "hebrew":"סיום הצום", - "memo":"Ta'anit Esther" - }, - { - "title":"Erev Purim", - "date":"2021-02-25", - "category":"holiday", - "subcat":"major", - "hebrew":"ערב פורים", - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:22pm", - "date":"2021-02-26T18:22:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:14pm", - "date":"2021-02-27T19:14:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nassau February 2021", - "date":"2021-02-26T21:16:05.455Z", - "location":{ - "title":"Nassau, New Providence, Bahamas", - "city":"Nassau", - "tzid":"America/Nassau", - "latitude":25.05823, - "longitude":-77.34306, - "cc":"BS", - "country":"Bahamas", - "admin1":"New Providence", - "geo":"geoname", - "geonameid":3571824 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:50", - "date":"2021-02-26T17:50:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:43", - "date":"2021-02-27T18:43:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Thimphu February 2021", - "date":"2021-02-26T21:16:05.910Z", - "location":{ - "title":"Thimphu, Bhutan", - "city":"Thimphu", - "tzid":"Asia/Thimphu", - "latitude":27.46609, - "longitude":89.64191, - "cc":"BT", - "country":"Bhutan", - "admin1":"Thimphu", - "geo":"geoname", - "geonameid":1252416 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:40", - "date":"2021-02-26T17:40:00+06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:34", - "date":"2021-02-27T18:34:00+06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Gaborone February 2021", - "date":"2021-02-26T21:16:06.367Z", - "location":{ - "title":"Gaborone, Botswana", - "city":"Gaborone", - "tzid":"Africa/Gaborone", - "latitude":-24.65451, - "longitude":25.90859, - "cc":"BW", - "country":"Botswana", - "admin1":"Gaborone", - "geo":"geoname", - "geonameid":933773 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:33", - "date":"2021-02-26T18:33:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:25", - "date":"2021-02-27T19:25:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Minsk February 2021", - "date":"2021-02-26T21:16:06.832Z", - "location":{ - "title":"Minsk, Belarus", - "city":"Minsk", - "tzid":"Europe/Minsk", - "latitude":53.9, - "longitude":27.56667, - "cc":"BY", - "country":"Belarus", - "admin1":"Minsk City", - "geo":"geoname", - "geonameid":625144 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:17", - "date":"2021-02-26T18:17:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:30", - "date":"2021-02-27T19:30:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Belmopan February 2021", - "date":"2021-02-26T21:16:07.300Z", - "location":{ - "title":"Belmopan, Cayo, Belize", - "city":"Belmopan", - "tzid":"America/Belize", - "latitude":17.25, - "longitude":-88.76667, - "cc":"BZ", - "country":"Belize", - "admin1":"Cayo", - "geo":"geoname", - "geonameid":3582672 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:41", - "date":"2021-02-26T17:41:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:33", - "date":"2021-02-27T18:33:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Calgary February 2021", - "date":"2021-02-26T21:16:07.757Z", - "location":{ - "title":"Calgary, Alberta, Canada", - "city":"Calgary", - "tzid":"America/Edmonton", - "latitude":51.05011, - "longitude":-114.08529, - "cc":"CA", - "country":"Canada", - "admin1":"Alberta", - "geo":"geoname", - "geonameid":5913490 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:49pm", - "date":"2021-02-26T17:49:00-07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:59pm", - "date":"2021-02-27T18:59:00-07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Edmonton February 2021", - "date":"2021-02-26T21:16:08.202Z", - "location":{ - "title":"Edmonton, Alberta, Canada", - "city":"Edmonton", - "tzid":"America/Edmonton", - "latitude":53.55014, - "longitude":-113.46871, - "cc":"CA", - "country":"Canada", - "admin1":"Alberta", - "geo":"geoname", - "geonameid":5946768 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:42pm", - "date":"2021-02-26T17:42:00-07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:55pm", - "date":"2021-02-27T18:55:00-07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Halifax February 2021", - "date":"2021-02-26T21:16:08.670Z", - "location":{ - "title":"Halifax, Nova Scotia, Canada", - "city":"Halifax", - "tzid":"America/Halifax", - "latitude":44.6464, - "longitude":-63.57291, - "cc":"CA", - "country":"Canada", - "admin1":"Nova Scotia", - "geo":"geoname", - "geonameid":6324729 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:36pm", - "date":"2021-02-26T17:36:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:39pm", - "date":"2021-02-27T18:39:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Mississauga February 2021", - "date":"2021-02-26T21:16:09.131Z", - "location":{ - "title":"Mississauga, Ontario, Canada", - "city":"Mississauga", - "tzid":"America/Toronto", - "latitude":43.5789, - "longitude":-79.6583, - "cc":"CA", - "country":"Canada", - "admin1":"Ontario", - "geo":"geoname", - "geonameid":6075357 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:42pm", - "date":"2021-02-26T17:42:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:44pm", - "date":"2021-02-27T18:44:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Montréal February 2021", - "date":"2021-02-26T21:16:09.588Z", - "location":{ - "title":"Montréal, Quebec, Canada", - "city":"Montréal", - "tzid":"America/Toronto", - "latitude":45.50884, - "longitude":-73.58781, - "cc":"CA", - "country":"Canada", - "admin1":"Quebec", - "asciiname":"Montreal", - "geo":"geoname", - "geonameid":6077243 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:15pm", - "date":"2021-02-26T17:15:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:19pm", - "date":"2021-02-27T18:19:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ottawa February 2021", - "date":"2021-02-26T21:16:10.063Z", - "location":{ - "title":"Ottawa, Ontario, Canada", - "city":"Ottawa", - "tzid":"America/Toronto", - "latitude":45.41117, - "longitude":-75.69812, - "cc":"CA", - "country":"Canada", - "admin1":"Ontario", - "geo":"geoname", - "geonameid":6094817 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:23pm", - "date":"2021-02-26T17:23:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:28pm", - "date":"2021-02-27T18:28:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Québec February 2021", - "date":"2021-02-26T21:16:10.531Z", - "location":{ - "title":"Québec, Quebec, Canada", - "city":"Québec", - "tzid":"America/Toronto", - "latitude":46.81228, - "longitude":-71.21454, - "cc":"CA", - "country":"Canada", - "admin1":"Quebec", - "asciiname":"Quebec", - "geo":"geoname", - "geonameid":6325494 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:04pm", - "date":"2021-02-26T17:04:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:09pm", - "date":"2021-02-27T18:09:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Regina February 2021", - "date":"2021-02-26T21:16:10.993Z", - "location":{ - "title":"Regina, Saskatchewan, Canada", - "city":"Regina", - "tzid":"America/Regina", - "latitude":50.45008, - "longitude":-104.6178, - "cc":"CA", - "country":"Canada", - "admin1":"Saskatchewan", - "geo":"geoname", - "geonameid":6119109 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:12pm", - "date":"2021-02-26T18:12:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:21pm", - "date":"2021-02-27T19:21:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Saskatoon February 2021", - "date":"2021-02-26T21:16:11.458Z", - "location":{ - "title":"Saskatoon, Saskatchewan, Canada", - "city":"Saskatoon", - "tzid":"America/Regina", - "latitude":52.13238, - "longitude":-106.66892, - "cc":"CA", - "country":"Canada", - "admin1":"Saskatchewan", - "geo":"geoname", - "geonameid":6141256 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:18pm", - "date":"2021-02-26T18:18:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:29pm", - "date":"2021-02-27T19:29:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal St. John's March 2021", - "date":"2021-03-02T11:08:56.775Z", - "location":{ - "title":"St. John's, Newfoundland and Labrador, Canada", - "city":"St. John's", - "tzid":"America/St_Johns", - "latitude":47.56494, - "longitude":-52.70931, - "cc":"CA", - "country":"Canada", - "admin1":"Newfoundland and Labrador", - "geo":"geoname", - "geonameid":6324733 - }, - "items":[ - { - "title":"Candle lighting: 5:34pm", - "date":"2021-03-05T17:34:00-03:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:39pm", - "date":"2021-03-06T18:39:00-03:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Toronto February 2021", - "date":"2021-02-26T21:16:12.380Z", - "location":{ - "title":"Toronto, Ontario, Canada", - "city":"Toronto", - "tzid":"America/Toronto", - "latitude":43.70011, - "longitude":-79.4163, - "cc":"CA", - "country":"Canada", - "admin1":"Ontario", - "geo":"geoname", - "geonameid":6167865 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:40pm", - "date":"2021-02-26T17:40:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:43pm", - "date":"2021-02-27T18:43:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Vancouver February 2021", - "date":"2021-02-26T21:16:12.841Z", - "location":{ - "title":"Vancouver, British Columbia, Canada", - "city":"Vancouver", - "tzid":"America/Vancouver", - "latitude":49.24966, - "longitude":-123.11934, - "cc":"CA", - "country":"Canada", - "admin1":"British Columbia", - "geo":"geoname", - "geonameid":6173331 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:28pm", - "date":"2021-02-26T17:28:00-08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:36pm", - "date":"2021-02-27T18:36:00-08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Victoria February 2021", - "date":"2021-02-26T21:16:13.308Z", - "location":{ - "title":"Victoria, British Columbia, Canada", - "city":"Victoria", - "tzid":"America/Vancouver", - "latitude":48.4359, - "longitude":-123.35155, - "cc":"CA", - "country":"Canada", - "admin1":"British Columbia", - "geo":"geoname", - "geonameid":6174041 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:30pm", - "date":"2021-02-26T17:30:00-08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:37pm", - "date":"2021-02-27T18:37:00-08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Winnipeg February 2021", - "date":"2021-02-26T21:16:13.764Z", - "location":{ - "title":"Winnipeg, Manitoba, Canada", - "city":"Winnipeg", - "tzid":"America/Winnipeg", - "latitude":49.8844, - "longitude":-97.14704, - "cc":"CA", - "country":"Canada", - "admin1":"Manitoba", - "geo":"geoname", - "geonameid":6183235 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:43pm", - "date":"2021-02-26T17:43:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:51pm", - "date":"2021-02-27T18:51:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kinshasa February 2021", - "date":"2021-02-26T21:16:14.231Z", - "location":{ - "title":"Kinshasa, Democratic Republic of the Congo", - "city":"Kinshasa", - "tzid":"Africa/Kinshasa", - "latitude":-4.32758, - "longitude":15.31357, - "cc":"CD", - "country":"Democratic Republic of the Congo", - "admin1":"Kinshasa", - "geo":"geoname", - "geonameid":2314302 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:00", - "date":"2021-02-26T18:00:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:49", - "date":"2021-02-27T18:49:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Lubumbashi February 2021", - "date":"2021-02-26T21:16:14.688Z", - "location":{ - "title":"Lubumbashi, Haut-Katanga, Democratic Republic of the Congo", - "city":"Lubumbashi", - "tzid":"Africa/Lubumbashi", - "latitude":-11.66089, - "longitude":27.47938, - "cc":"CD", - "country":"Democratic Republic of the Congo", - "admin1":"Haut-Katanga", - "geo":"geoname", - "geonameid":922704 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:16", - "date":"2021-02-26T18:16:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:06", - "date":"2021-02-27T19:06:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bangui February 2021", - "date":"2021-02-26T21:16:15.150Z", - "location":{ - "title":"Bangui, Central African Republic", - "city":"Bangui", - "tzid":"Africa/Bangui", - "latitude":4.36122, - "longitude":18.55496, - "cc":"CF", - "country":"Central African Republic", - "admin1":"Bangui", - "geo":"geoname", - "geonameid":2389853 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:41", - "date":"2021-02-26T17:41:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:31", - "date":"2021-02-27T18:31:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Brazzaville February 2021", - "date":"2021-02-26T21:16:15.609Z", - "location":{ - "title":"Brazzaville, Republic of the Congo", - "city":"Brazzaville", - "tzid":"Africa/Brazzaville", - "latitude":-4.26613, - "longitude":15.28318, - "cc":"CG", - "country":"Republic of the Congo", - "admin1":"Brazzaville", - "geo":"geoname", - "geonameid":2260535 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:00", - "date":"2021-02-26T18:00:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:49", - "date":"2021-02-27T18:49:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bern February 2021", - "date":"2021-02-26T21:16:16.063Z", - "location":{ - "title":"Bern, Switzerland", - "city":"Bern", - "tzid":"Europe/Zurich", - "latitude":46.94809, - "longitude":7.44744, - "cc":"CH", - "country":"Switzerland", - "admin1":"Bern", - "geo":"geoname", - "geonameid":2661552 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:48", - "date":"2021-02-26T17:48:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:54", - "date":"2021-02-27T18:54:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Genève February 2021", - "date":"2021-02-26T21:16:16.526Z", - "location":{ - "title":"Genève, Geneva, Switzerland", - "city":"Genève", - "tzid":"Europe/Zurich", - "latitude":46.20222, - "longitude":6.14569, - "cc":"CH", - "country":"Switzerland", - "admin1":"Geneva", - "asciiname":"Geneve", - "geo":"geoname", - "geonameid":2660646 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:55", - "date":"2021-02-26T17:55:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:59", - "date":"2021-02-27T18:59:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Zürich February 2021", - "date":"2021-02-26T21:16:16.999Z", - "location":{ - "title":"Zürich, Zurich, Switzerland", - "city":"Zürich", - "tzid":"Europe/Zurich", - "latitude":47.36667, - "longitude":8.55, - "cc":"CH", - "country":"Switzerland", - "admin1":"Zurich", - "asciiname":"Zurich", - "geo":"geoname", - "geonameid":2657896 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:43", - "date":"2021-02-26T17:43:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:49", - "date":"2021-02-27T18:49:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Abidjan February 2021", - "date":"2021-02-26T21:16:17.462Z", - "location":{ - "title":"Abidjan, Ivory Coast", - "city":"Abidjan", - "tzid":"Africa/Abidjan", - "latitude":5.35444, - "longitude":-4.00167, - "cc":"CI", - "country":"Ivory Coast", - "admin1":"Abidjan", - "geo":"geoname", - "geonameid":2293538 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:11", - "date":"2021-02-26T18:11:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:00", - "date":"2021-02-27T19:00:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Yamoussoukro February 2021", - "date":"2021-02-26T21:16:17.923Z", - "location":{ - "title":"Yamoussoukro, Lacs, Ivory Coast", - "city":"Yamoussoukro", - "tzid":"Africa/Abidjan", - "latitude":6.82055, - "longitude":-5.27674, - "cc":"CI", - "country":"Ivory Coast", - "admin1":"Lacs", - "geo":"geoname", - "geonameid":2279755 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:15", - "date":"2021-02-26T18:15:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:04", - "date":"2021-02-27T19:04:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Avarua February 2021", - "date":"2021-02-26T21:16:18.377Z", - "location":{ - "title":"Avarua, Rarotonga, Cook Islands", - "city":"Avarua", - "tzid":"Pacific/Rarotonga", - "latitude":-21.2075, - "longitude":-159.77545, - "cc":"CK", - "country":"Cook Islands", - "admin1":"Rarotonga", - "geo":"geoname", - "geonameid":4035715 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:52", - "date":"2021-02-26T18:52:00-10:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:43", - "date":"2021-02-27T19:43:00-10:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Santiago February 2021", - "date":"2021-02-26T21:16:18.842Z", - "location":{ - "title":"Santiago, Chile", - "city":"Santiago", - "tzid":"America/Santiago", - "latitude":-33.45694, - "longitude":-70.64827, - "cc":"CL", - "country":"Chile", - "admin1":"Santiago Metropolitan", - "geo":"geoname", - "geonameid":3871336 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 20:07", - "date":"2021-02-26T20:07:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 21:02", - "date":"2021-02-27T21:02:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Douala February 2021", - "date":"2021-02-26T21:16:19.300Z", - "location":{ - "title":"Douala, Littoral, Cameroon", - "city":"Douala", - "tzid":"Africa/Douala", - "latitude":4.04827, - "longitude":9.70428, - "cc":"CM", - "country":"Cameroon", - "admin1":"Littoral", - "geo":"geoname", - "geonameid":2232593 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:17", - "date":"2021-02-26T18:17:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:06", - "date":"2021-02-27T19:06:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Yaoundé February 2021", - "date":"2021-02-26T21:16:19.761Z", - "location":{ - "title":"Yaoundé, Centre, Cameroon", - "city":"Yaoundé", - "tzid":"Africa/Douala", - "latitude":3.86667, - "longitude":11.51667, - "cc":"CM", - "country":"Cameroon", - "admin1":"Centre", - "asciiname":"Yaounde", - "geo":"geoname", - "geonameid":2220957 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:09", - "date":"2021-02-26T18:09:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:59", - "date":"2021-02-27T18:59:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Beijing February 2021", - "date":"2021-02-26T21:16:20.211Z", - "location":{ - "title":"Beijing, China", - "city":"Beijing", - "tzid":"Asia/Shanghai", - "latitude":39.9075, - "longitude":116.39723, - "cc":"CN", - "country":"China", - "admin1":"Beijing", - "geo":"geoname", - "geonameid":1816670 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:41", - "date":"2021-02-26T17:41:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:41", - "date":"2021-02-27T18:41:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Chengdu February 2021", - "date":"2021-02-26T21:16:20.671Z", - "location":{ - "title":"Chengdu, Sichuan, China", - "city":"Chengdu", - "tzid":"Asia/Shanghai", - "latitude":30.66667, - "longitude":104.06667, - "cc":"CN", - "country":"China", - "admin1":"Sichuan", - "geo":"geoname", - "geonameid":1815286 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:39", - "date":"2021-02-26T18:39:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:35", - "date":"2021-02-27T19:35:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Chongqing February 2021", - "date":"2021-02-26T21:16:21.129Z", - "location":{ - "title":"Chongqing, China", - "city":"Chongqing", - "tzid":"Asia/Shanghai", - "latitude":29.56026, - "longitude":106.55771, - "cc":"CN", - "country":"China", - "admin1":"Chongqing", - "geo":"geoname", - "geonameid":1814906 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:30", - "date":"2021-02-26T18:30:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:25", - "date":"2021-02-27T19:25:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Guangzhou February 2021", - "date":"2021-02-26T21:16:21.591Z", - "location":{ - "title":"Guangzhou, Guangdong, China", - "city":"Guangzhou", - "tzid":"Asia/Shanghai", - "latitude":23.11667, - "longitude":113.25, - "cc":"CN", - "country":"China", - "admin1":"Guangdong", - "geo":"geoname", - "geonameid":1809858 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:09", - "date":"2021-02-26T18:09:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:02", - "date":"2021-02-27T19:02:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Harbin February 2021", - "date":"2021-02-26T21:16:22.047Z", - "location":{ - "title":"Harbin, Heilongjiang, China", - "city":"Harbin", - "tzid":"Asia/Shanghai", - "latitude":45.75, - "longitude":126.65, - "cc":"CN", - "country":"China", - "admin1":"Heilongjiang", - "geo":"geoname", - "geonameid":2037013 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 16:53", - "date":"2021-02-26T16:53:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 17:57", - "date":"2021-02-27T17:57:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kaifeng February 2021", - "date":"2021-02-26T21:16:22.506Z", - "location":{ - "title":"Kaifeng, Henan, China", - "city":"Kaifeng", - "tzid":"Asia/Shanghai", - "latitude":34.7986, - "longitude":114.30742, - "cc":"CN", - "country":"China", - "admin1":"Henan", - "geo":"geoname", - "geonameid":1804879 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:55", - "date":"2021-02-26T17:55:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:52", - "date":"2021-02-27T18:52:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Lanzhou February 2021", - "date":"2021-02-26T21:16:22.972Z", - "location":{ - "title":"Lanzhou, Gansu, China", - "city":"Lanzhou", - "tzid":"Asia/Shanghai", - "latitude":36.05701, - "longitude":103.83987, - "cc":"CN", - "country":"China", - "admin1":"Gansu", - "geo":"geoname", - "geonameid":1804430 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:35", - "date":"2021-02-26T18:35:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:33", - "date":"2021-02-27T19:33:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nanchong February 2021", - "date":"2021-02-26T21:16:23.436Z", - "location":{ - "title":"Nanchong, Sichuan, China", - "city":"Nanchong", - "tzid":"Asia/Shanghai", - "latitude":30.79508, - "longitude":106.08473, - "cc":"CN", - "country":"China", - "admin1":"Sichuan", - "geo":"geoname", - "geonameid":1800146 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:31", - "date":"2021-02-26T18:31:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:26", - "date":"2021-02-27T19:26:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nanjing February 2021", - "date":"2021-02-26T21:16:23.912Z", - "location":{ - "title":"Nanjing, Jiangsu, China", - "city":"Nanjing", - "tzid":"Asia/Shanghai", - "latitude":32.06167, - "longitude":118.77778, - "cc":"CN", - "country":"China", - "admin1":"Jiangsu", - "geo":"geoname", - "geonameid":1799962 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:39", - "date":"2021-02-26T17:39:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:35", - "date":"2021-02-27T18:35:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Puyang Chengguanzhen February 2021", - "date":"2021-02-26T21:16:24.420Z", - "location":{ - "title":"Puyang Chengguanzhen, Henan, China", - "city":"Puyang Chengguanzhen", - "tzid":"Asia/Shanghai", - "latitude":35.70506, - "longitude":115.01409, - "cc":"CN", - "country":"China", - "admin1":"Henan", - "geo":"geoname", - "geonameid":1798422 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:51", - "date":"2021-02-26T17:51:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:48", - "date":"2021-02-27T18:48:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Shanghai February 2021", - "date":"2021-02-26T21:16:24.877Z", - "location":{ - "title":"Shanghai, China", - "city":"Shanghai", - "tzid":"Asia/Shanghai", - "latitude":31.22222, - "longitude":121.45806, - "cc":"CN", - "country":"China", - "admin1":"Shanghai", - "geo":"geoname", - "geonameid":1796236 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:29", - "date":"2021-02-26T17:29:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:25", - "date":"2021-02-27T18:25:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Shenyang February 2021", - "date":"2021-02-26T21:16:25.331Z", - "location":{ - "title":"Shenyang, Liaoning, China", - "city":"Shenyang", - "tzid":"Asia/Shanghai", - "latitude":41.79222, - "longitude":123.43278, - "cc":"CN", - "country":"China", - "admin1":"Liaoning", - "geo":"geoname", - "geonameid":2034937 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:11", - "date":"2021-02-26T17:11:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:12", - "date":"2021-02-27T18:12:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Shenzhen February 2021", - "date":"2021-02-26T21:16:25.779Z", - "location":{ - "title":"Shenzhen, Guangdong, China", - "city":"Shenzhen", - "tzid":"Asia/Shanghai", - "latitude":22.54554, - "longitude":114.0683, - "cc":"CN", - "country":"China", - "admin1":"Guangdong", - "geo":"geoname", - "geonameid":1795565 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:06", - "date":"2021-02-26T18:06:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:59", - "date":"2021-02-27T18:59:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Shiyan February 2021", - "date":"2021-02-26T21:16:26.235Z", - "location":{ - "title":"Shiyan, Hubei, China", - "city":"Shiyan", - "tzid":"Asia/Shanghai", - "latitude":32.6475, - "longitude":110.77806, - "cc":"CN", - "country":"China", - "admin1":"Hubei", - "geo":"geoname", - "geonameid":1794903 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:11", - "date":"2021-02-26T18:11:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:07", - "date":"2021-02-27T19:07:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tai’an February 2021", - "date":"2021-02-26T21:16:26.683Z", - "location":{ - "title":"Tai’an, Shandong, China", - "city":"Tai’an", - "tzid":"Asia/Shanghai", - "latitude":36.18528, - "longitude":117.12, - "cc":"CN", - "country":"China", - "admin1":"Shandong", - "asciiname":"Tai'an", - "geo":"geoname", - "geonameid":1793724 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:42", - "date":"2021-02-26T17:42:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:40", - "date":"2021-02-27T18:40:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tianjin February 2021", - "date":"2021-02-26T21:16:27.147Z", - "location":{ - "title":"Tianjin, China", - "city":"Tianjin", - "tzid":"Asia/Shanghai", - "latitude":39.14222, - "longitude":117.17667, - "cc":"CN", - "country":"China", - "admin1":"Tianjin", - "geo":"geoname", - "geonameid":1792947 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:39", - "date":"2021-02-26T17:39:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:38", - "date":"2021-02-27T18:38:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Wuhan February 2021", - "date":"2021-02-26T21:16:27.622Z", - "location":{ - "title":"Wuhan, Hubei, China", - "city":"Wuhan", - "tzid":"Asia/Shanghai", - "latitude":30.58333, - "longitude":114.26667, - "cc":"CN", - "country":"China", - "admin1":"Hubei", - "geo":"geoname", - "geonameid":1791247 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:59", - "date":"2021-02-26T17:59:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:54", - "date":"2021-02-27T18:54:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Xi’an February 2021", - "date":"2021-02-26T21:16:28.109Z", - "location":{ - "title":"Xi’an, Shaanxi, China", - "city":"Xi’an", - "tzid":"Asia/Shanghai", - "latitude":34.25833, - "longitude":108.92861, - "cc":"CN", - "country":"China", - "admin1":"Shaanxi", - "asciiname":"Xi'an", - "geo":"geoname", - "geonameid":1790630 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:17", - "date":"2021-02-26T18:17:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:13", - "date":"2021-02-27T19:13:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Yueyang February 2021", - "date":"2021-02-26T21:16:28.571Z", - "location":{ - "title":"Yueyang, Hunan, China", - "city":"Yueyang", - "tzid":"Asia/Shanghai", - "latitude":29.37455, - "longitude":113.09481, - "cc":"CN", - "country":"China", - "admin1":"Hunan", - "geo":"geoname", - "geonameid":1927639 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:04", - "date":"2021-02-26T18:04:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:59", - "date":"2021-02-27T18:59:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Zhumadian February 2021", - "date":"2021-02-26T21:16:29.053Z", - "location":{ - "title":"Zhumadian, Henan, China", - "city":"Zhumadian", - "tzid":"Asia/Shanghai", - "latitude":32.97944, - "longitude":114.02944, - "cc":"CN", - "country":"China", - "admin1":"Henan", - "geo":"geoname", - "geonameid":1783873 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:57", - "date":"2021-02-26T17:57:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:54", - "date":"2021-02-27T18:54:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Barranquilla February 2021", - "date":"2021-02-26T21:16:29.519Z", - "location":{ - "title":"Barranquilla, Atlantico, Colombia", - "city":"Barranquilla", - "tzid":"America/Bogota", - "latitude":10.96854, - "longitude":-74.78132, - "cc":"CO", - "country":"Colombia", - "admin1":"Atlantico", - "geo":"geoname", - "geonameid":3689147 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:50", - "date":"2021-02-26T17:50:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:40", - "date":"2021-02-27T18:40:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bogotá February 2021", - "date":"2021-02-26T21:16:30.041Z", - "location":{ - "title":"Bogotá, Bogota D.C., Colombia", - "city":"Bogotá", - "tzid":"America/Bogota", - "latitude":4.60971, - "longitude":-74.08175, - "cc":"CO", - "country":"Colombia", - "admin1":"Bogota D.C.", - "asciiname":"Bogota", - "geo":"geoname", - "geonameid":3688689 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:51", - "date":"2021-02-26T17:51:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:41", - "date":"2021-02-27T18:41:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Cali February 2021", - "date":"2021-02-26T21:16:30.535Z", - "location":{ - "title":"Cali, Valle del Cauca, Colombia", - "city":"Cali", - "tzid":"America/Bogota", - "latitude":3.43722, - "longitude":-76.5225, - "cc":"CO", - "country":"Colombia", - "admin1":"Valle del Cauca", - "geo":"geoname", - "geonameid":3687925 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:02", - "date":"2021-02-26T18:02:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:51", - "date":"2021-02-27T18:51:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Medellín February 2021", - "date":"2021-02-26T21:16:30.985Z", - "location":{ - "title":"Medellín, Antioquia, Colombia", - "city":"Medellín", - "tzid":"America/Bogota", - "latitude":6.25184, - "longitude":-75.56359, - "cc":"CO", - "country":"Colombia", - "admin1":"Antioquia", - "asciiname":"Medellin", - "geo":"geoname", - "geonameid":3674962 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:56", - "date":"2021-02-26T17:56:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:46", - "date":"2021-02-27T18:46:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal San José February 2021", - "date":"2021-02-26T21:16:31.489Z", - "location":{ - "title":"San José, San Jose, Costa Rica", - "city":"San José", - "tzid":"America/Costa_Rica", - "latitude":9.93333, - "longitude":-84.08333, - "cc":"CR", - "country":"Costa Rica", - "admin1":"San Jose", - "asciiname":"San Jose", - "geo":"geoname", - "geonameid":3621849 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:28", - "date":"2021-02-26T17:28:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:18", - "date":"2021-02-27T18:18:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Havana February 2021", - "date":"2021-02-26T21:16:31.943Z", - "location":{ - "title":"Havana, Cuba", - "city":"Havana", - "tzid":"America/Havana", - "latitude":23.13302, - "longitude":-82.38304, - "cc":"CU", - "country":"Cuba", - "admin1":"Havana", - "geo":"geoname", - "geonameid":3553478 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:12", - "date":"2021-02-26T18:12:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:04", - "date":"2021-02-27T19:04:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Praia February 2021", - "date":"2021-02-26T21:16:32.397Z", - "location":{ - "title":"Praia, Cabo Verde", - "city":"Praia", - "tzid":"Atlantic/Cape_Verde", - "latitude":14.93152, - "longitude":-23.51254, - "cc":"CV", - "country":"Cape Verde", - "admin1":"Praia", - "geo":"geoname", - "geonameid":3374333 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:22", - "date":"2021-02-26T18:22:00-01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:13", - "date":"2021-02-27T19:13:00-01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Willemstad February 2021", - "date":"2021-02-26T21:16:32.841Z", - "location":{ - "title":"Willemstad, Curacao", - "city":"Willemstad", - "tzid":"America/Curacao", - "latitude":12.1084, - "longitude":-68.93354, - "cc":"CW", - "country":"Curacao", - "geo":"geoname", - "geonameid":3513090 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:26", - "date":"2021-02-26T18:26:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:16", - "date":"2021-02-27T19:16:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nicosia February 2021", - "date":"2021-02-26T21:16:33.298Z", - "location":{ - "title":"Nicosia, Cyprus", - "city":"Nicosia", - "tzid":"Asia/Nicosia", - "latitude":35.17531, - "longitude":33.3642, - "cc":"CY", - "country":"Cyprus", - "admin1":"Nicosia", - "geo":"geoname", - "geonameid":146268 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:18", - "date":"2021-02-26T17:18:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:15", - "date":"2021-02-27T18:15:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Prague February 2021", - "date":"2021-02-26T21:16:33.759Z", - "location":{ - "title":"Prague, Hlavni mesto Praha, Czechia", - "city":"Prague", - "tzid":"Europe/Prague", - "latitude":50.08804, - "longitude":14.42076, - "cc":"CZ", - "country":"Czech Republic", - "admin1":"Hlavni mesto Praha", - "geo":"geoname", - "geonameid":3067696 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:16", - "date":"2021-02-26T17:16:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:25", - "date":"2021-02-27T18:25:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Berlin February 2021", - "date":"2021-02-26T21:16:34.226Z", - "location":{ - "title":"Berlin, Germany", - "city":"Berlin", - "tzid":"Europe/Berlin", - "latitude":52.52437, - "longitude":13.41053, - "cc":"DE", - "country":"Germany", - "admin1":"Berlin", - "geo":"geoname", - "geonameid":2950159 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:16", - "date":"2021-02-26T17:16:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:28", - "date":"2021-02-27T18:28:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Hamburg February 2021", - "date":"2021-02-26T21:16:34.683Z", - "location":{ - "title":"Hamburg, Germany", - "city":"Hamburg", - "tzid":"Europe/Berlin", - "latitude":53.55073, - "longitude":9.99302, - "cc":"DE", - "country":"Germany", - "admin1":"Hamburg", - "geo":"geoname", - "geonameid":2911298 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:28", - "date":"2021-02-26T17:28:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:41", - "date":"2021-02-27T18:41:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Munich February 2021", - "date":"2021-02-26T21:16:35.133Z", - "location":{ - "title":"Munich, Bavaria, Germany", - "city":"Munich", - "tzid":"Europe/Berlin", - "latitude":48.13743, - "longitude":11.57549, - "cc":"DE", - "country":"Germany", - "admin1":"Bavaria", - "geo":"geoname", - "geonameid":2867714 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:30", - "date":"2021-02-26T17:30:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:37", - "date":"2021-02-27T18:37:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Copenhagen February 2021", - "date":"2021-02-26T21:16:35.590Z", - "location":{ - "title":"Copenhagen, Capital Region, Denmark", - "city":"Copenhagen", - "tzid":"Europe/Copenhagen", - "latitude":55.67594, - "longitude":12.56553, - "cc":"DK", - "country":"Denmark", - "admin1":"Capital Region", - "geo":"geoname", - "geonameid":2618425 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:13", - "date":"2021-02-26T17:13:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:29", - "date":"2021-02-27T18:29:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Roseau February 2021", - "date":"2021-02-26T21:16:36.064Z", - "location":{ - "title":"Roseau, Saint George, Dominica", - "city":"Roseau", - "tzid":"America/Dominica", - "latitude":15.30174, - "longitude":-61.38808, - "cc":"DM", - "country":"Dominica", - "admin1":"Saint George", - "geo":"geoname", - "geonameid":3575635 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:53", - "date":"2021-02-26T17:53:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:44", - "date":"2021-02-27T18:44:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Santiago de los Caballeros February 2021", - "date":"2021-02-26T21:16:36.527Z", - "location":{ - "title":"Santiago de los Caballeros, Santiago, Dominican Republic", - "city":"Santiago de los Caballeros", - "tzid":"America/Santo_Domingo", - "latitude":19.4517, - "longitude":-70.69703, - "cc":"DO", - "country":"Dominican Republic", - "admin1":"Santiago", - "geo":"geoname", - "geonameid":3492914 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:28pm", - "date":"2021-02-26T18:28:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:19pm", - "date":"2021-02-27T19:19:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Santo Domingo February 2021", - "date":"2021-02-26T21:16:36.992Z", - "location":{ - "title":"Santo Domingo, Nacional, Dominican Republic", - "city":"Santo Domingo", - "tzid":"America/Santo_Domingo", - "latitude":18.47186, - "longitude":-69.89232, - "cc":"DO", - "country":"Dominican Republic", - "admin1":"Nacional", - "geo":"geoname", - "geonameid":3492908 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:25pm", - "date":"2021-02-26T18:25:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:17pm", - "date":"2021-02-27T19:17:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Algiers February 2021", - "date":"2021-02-26T21:16:37.451Z", - "location":{ - "title":"Algiers, Algeria", - "city":"Algiers", - "tzid":"Africa/Algiers", - "latitude":36.73225, - "longitude":3.08746, - "cc":"DZ", - "country":"Algeria", - "admin1":"Algiers", - "geo":"geoname", - "geonameid":2507480 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:18", - "date":"2021-02-26T18:18:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:16", - "date":"2021-02-27T19:16:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Guayaquil February 2021", - "date":"2021-02-26T21:16:37.906Z", - "location":{ - "title":"Guayaquil, Guayas, Ecuador", - "city":"Guayaquil", - "tzid":"America/Guayaquil", - "latitude":-2.19616, - "longitude":-79.88621, - "cc":"EC", - "country":"Ecuador", - "admin1":"Guayas", - "geo":"geoname", - "geonameid":3657509 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:19", - "date":"2021-02-26T18:19:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:09", - "date":"2021-02-27T19:09:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Quito February 2021", - "date":"2021-02-26T21:16:38.361Z", - "location":{ - "title":"Quito, Pichincha, Ecuador", - "city":"Quito", - "tzid":"America/Guayaquil", - "latitude":-0.22985, - "longitude":-78.52495, - "cc":"EC", - "country":"Ecuador", - "admin1":"Pichincha", - "geo":"geoname", - "geonameid":3652462 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:12", - "date":"2021-02-26T18:12:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:02", - "date":"2021-02-27T19:02:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tallinn February 2021", - "date":"2021-02-26T21:16:38.818Z", - "location":{ - "title":"Tallinn, Harjumaa, Estonia", - "city":"Tallinn", - "tzid":"Europe/Tallinn", - "latitude":59.43696, - "longitude":24.75353, - "cc":"EE", - "country":"Estonia", - "admin1":"Harjumaa", - "geo":"geoname", - "geonameid":588409 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:16", - "date":"2021-02-26T17:16:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:39", - "date":"2021-02-27T18:39:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Giza February 2021", - "date":"2021-02-26T21:16:39.291Z", - "location":{ - "title":"Giza, Egypt", - "city":"Giza", - "tzid":"Africa/Cairo", - "latitude":30.00944, - "longitude":31.20861, - "cc":"EG", - "country":"Egypt", - "admin1":"Giza", - "geo":"geoname", - "geonameid":360995 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:31", - "date":"2021-02-26T17:31:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:26", - "date":"2021-02-27T18:26:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Alexandria February 2021", - "date":"2021-02-26T21:16:39.746Z", - "location":{ - "title":"Alexandria, Egypt", - "city":"Alexandria", - "tzid":"Africa/Cairo", - "latitude":31.20176, - "longitude":29.91582, - "cc":"EG", - "country":"Egypt", - "admin1":"Alexandria", - "geo":"geoname", - "geonameid":361058 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:36", - "date":"2021-02-26T17:36:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:31", - "date":"2021-02-27T18:31:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Cairo February 2021", - "date":"2021-02-26T21:16:40.203Z", - "location":{ - "title":"Cairo, Egypt", - "city":"Cairo", - "tzid":"Africa/Cairo", - "latitude":30.06263, - "longitude":31.24967, - "cc":"EG", - "country":"Egypt", - "admin1":"Cairo", - "geo":"geoname", - "geonameid":360630 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:31", - "date":"2021-02-26T17:31:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:26", - "date":"2021-02-27T18:26:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Asmara February 2021", - "date":"2021-02-26T21:16:40.679Z", - "location":{ - "title":"Asmara, Maekel, Eritrea", - "city":"Asmara", - "tzid":"Africa/Asmara", - "latitude":15.33805, - "longitude":38.93184, - "cc":"ER", - "country":"Eritrea", - "admin1":"Maekel", - "geo":"geoname", - "geonameid":343300 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:12", - "date":"2021-02-26T18:12:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:03", - "date":"2021-02-27T19:03:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Barcelona February 2021", - "date":"2021-02-26T21:16:41.147Z", - "location":{ - "title":"Barcelona, Catalonia, Spain", - "city":"Barcelona", - "tzid":"Europe/Madrid", - "latitude":41.38879, - "longitude":2.15899, - "cc":"ES", - "country":"Spain", - "admin1":"Catalonia", - "geo":"geoname", - "geonameid":3128760 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:17", - "date":"2021-02-26T18:17:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:18", - "date":"2021-02-27T19:18:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Madrid February 2021", - "date":"2021-02-26T21:16:41.603Z", - "location":{ - "title":"Madrid, Spain", - "city":"Madrid", - "tzid":"Europe/Madrid", - "latitude":40.4165, - "longitude":-3.70256, - "cc":"ES", - "country":"Spain", - "admin1":"Madrid", - "geo":"geoname", - "geonameid":3117735 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:41", - "date":"2021-02-26T18:41:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:41", - "date":"2021-02-27T19:41:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Addis Ababa February 2021", - "date":"2021-02-26T21:16:42.065Z", - "location":{ - "title":"Addis Ababa, Ethiopia", - "city":"Addis Ababa", - "tzid":"Africa/Addis_Ababa", - "latitude":9.02497, - "longitude":38.74689, - "cc":"ET", - "country":"Ethiopia", - "admin1":"Addis Ababa", - "geo":"geoname", - "geonameid":344979 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:17", - "date":"2021-02-26T18:17:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:07", - "date":"2021-02-27T19:07:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Helsinki February 2021", - "date":"2021-02-26T21:16:42.528Z", - "location":{ - "title":"Helsinki, Uusimaa, Finland", - "city":"Helsinki", - "tzid":"Europe/Helsinki", - "latitude":60.16952, - "longitude":24.93545, - "cc":"FI", - "country":"Finland", - "admin1":"Uusimaa", - "geo":"geoname", - "geonameid":658225 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:14", - "date":"2021-02-26T17:14:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:38", - "date":"2021-02-27T18:38:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Suva February 2021", - "date":"2021-02-26T21:16:42.979Z", - "location":{ - "title":"Suva, Central, Fiji", - "city":"Suva", - "tzid":"Pacific/Fiji", - "latitude":-18.14161, - "longitude":178.44149, - "cc":"FJ", - "country":"Fiji", - "admin1":"Central", - "geo":"geoname", - "geonameid":2198148 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:18", - "date":"2021-02-26T18:18:00+12:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:08", - "date":"2021-02-27T19:08:00+12:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Stanley February 2021", - "date":"2021-02-26T21:16:43.436Z", - "location":{ - "title":"Stanley, Falkland Islands", - "city":"Stanley", - "tzid":"Atlantic/Stanley", - "latitude":-51.69382, - "longitude":-57.85701, - "cc":"FK", - "country":"Falkland Islands", - "geo":"geoname", - "geonameid":3426691 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:41", - "date":"2021-02-26T19:41:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 20:50", - "date":"2021-02-27T20:50:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tórshavn February 2021", - "date":"2021-02-26T21:16:43.887Z", - "location":{ - "title":"Tórshavn, Streymoy, Faroe Islands", - "city":"Tórshavn", - "tzid":"Atlantic/Faroe", - "latitude":62.00973, - "longitude":-6.77164, - "cc":"FO", - "country":"Faroe Islands", - "admin1":"Streymoy", - "asciiname":"Torshavn", - "geo":"geoname", - "geonameid":2611396 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:16", - "date":"2021-02-26T17:16:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:44", - "date":"2021-02-27T18:44:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Marseille February 2021", - "date":"2021-02-26T21:16:44.351Z", - "location":{ - "title":"Marseille, Provence-Alpes-Cote d'Azur, France", - "city":"Marseille", - "tzid":"Europe/Paris", - "latitude":43.29695, - "longitude":5.38107, - "cc":"FR", - "country":"France", - "admin1":"Provence-Alpes-Cote d'Azur", - "geo":"geoname", - "geonameid":2995469 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:01", - "date":"2021-02-26T18:01:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:04", - "date":"2021-02-27T19:04:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Paris February 2021", - "date":"2021-02-26T21:16:44.822Z", - "location":{ - "title":"Paris, Ile-de-France, France", - "city":"Paris", - "tzid":"Europe/Paris", - "latitude":48.85341, - "longitude":2.3488, - "cc":"FR", - "country":"France", - "admin1":"Ile-de-France", - "geo":"geoname", - "geonameid":2988507 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:06", - "date":"2021-02-26T18:06:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:13", - "date":"2021-02-27T19:13:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Libreville February 2021", - "date":"2021-02-26T21:16:45.277Z", - "location":{ - "title":"Libreville, Estuaire, Gabon", - "city":"Libreville", - "tzid":"Africa/Libreville", - "latitude":0.39241, - "longitude":9.45356, - "cc":"GA", - "country":"Gabon", - "admin1":"Estuaire", - "geo":"geoname", - "geonameid":2399697 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:20", - "date":"2021-02-26T18:20:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:09", - "date":"2021-02-27T19:09:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Belfast February 2021", - "date":"2021-02-26T21:16:45.731Z", - "location":{ - "title":"Belfast, Northern Ireland, UK", - "city":"Belfast", - "tzid":"Europe/London", - "latitude":54.59682, - "longitude":-5.92541, - "cc":"GB", - "country":"United Kingdom", - "admin1":"Northern Ireland", - "geo":"geoname", - "geonameid":2655984 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:30", - "date":"2021-02-26T17:30:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:44", - "date":"2021-02-27T18:44:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Birmingham February 2021", - "date":"2021-02-26T21:16:46.188Z", - "location":{ - "title":"Birmingham, England, UK", - "city":"Birmingham", - "tzid":"Europe/London", - "latitude":52.48142, - "longitude":-1.89983, - "cc":"GB", - "country":"United Kingdom", - "admin1":"England", - "geo":"geoname", - "geonameid":2655603 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:17", - "date":"2021-02-26T17:17:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:29", - "date":"2021-02-27T18:29:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bristol February 2021", - "date":"2021-02-26T21:16:46.641Z", - "location":{ - "title":"Bristol, England, UK", - "city":"Bristol", - "tzid":"Europe/London", - "latitude":51.45523, - "longitude":-2.59665, - "cc":"GB", - "country":"United Kingdom", - "admin1":"England", - "geo":"geoname", - "geonameid":2654675 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:22", - "date":"2021-02-26T17:22:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:32", - "date":"2021-02-27T18:32:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Cardiff February 2021", - "date":"2021-02-26T21:16:47.104Z", - "location":{ - "title":"Cardiff, Wales, UK", - "city":"Cardiff", - "tzid":"Europe/London", - "latitude":51.48, - "longitude":-3.18, - "cc":"GB", - "country":"United Kingdom", - "admin1":"Wales", - "geo":"geoname", - "geonameid":2653822 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:24", - "date":"2021-02-26T17:24:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:34", - "date":"2021-02-27T18:34:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Edinburgh February 2021", - "date":"2021-02-26T21:16:47.570Z", - "location":{ - "title":"Edinburgh, Scotland, UK", - "city":"Edinburgh", - "tzid":"Europe/London", - "latitude":55.95206, - "longitude":-3.19648, - "cc":"GB", - "country":"United Kingdom", - "admin1":"Scotland", - "geo":"geoname", - "geonameid":2650225 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:16", - "date":"2021-02-26T17:16:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:32", - "date":"2021-02-27T18:32:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Glasgow February 2021", - "date":"2021-02-26T21:16:48.033Z", - "location":{ - "title":"Glasgow, Scotland, UK", - "city":"Glasgow", - "tzid":"Europe/London", - "latitude":55.86515, - "longitude":-4.25763, - "cc":"GB", - "country":"United Kingdom", - "admin1":"Scotland", - "geo":"geoname", - "geonameid":2648579 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:20", - "date":"2021-02-26T17:20:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:37", - "date":"2021-02-27T18:37:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Leeds February 2021", - "date":"2021-02-26T21:16:48.487Z", - "location":{ - "title":"Leeds, England, UK", - "city":"Leeds", - "tzid":"Europe/London", - "latitude":53.79648, - "longitude":-1.54785, - "cc":"GB", - "country":"United Kingdom", - "admin1":"England", - "geo":"geoname", - "geonameid":2644688 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:14", - "date":"2021-02-26T17:14:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:27", - "date":"2021-02-27T18:27:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Liverpool February 2021", - "date":"2021-02-26T21:16:48.975Z", - "location":{ - "title":"Liverpool, England, UK", - "city":"Liverpool", - "tzid":"Europe/London", - "latitude":53.41058, - "longitude":-2.97794, - "cc":"GB", - "country":"United Kingdom", - "admin1":"England", - "geo":"geoname", - "geonameid":2644210 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:20", - "date":"2021-02-26T17:20:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:33", - "date":"2021-02-27T18:33:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal London February 2021", - "date":"2021-02-26T21:16:49.439Z", - "location":{ - "title":"London, England, UK", - "city":"London", - "tzid":"Europe/London", - "latitude":51.50853, - "longitude":-0.12574, - "cc":"GB", - "country":"United Kingdom", - "admin1":"England", - "geo":"geoname", - "geonameid":2643743 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:12", - "date":"2021-02-26T17:12:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:22", - "date":"2021-02-27T18:22:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Manchester February 2021", - "date":"2021-02-26T21:16:49.903Z", - "location":{ - "title":"Manchester, England, UK", - "city":"Manchester", - "tzid":"Europe/London", - "latitude":53.48095, - "longitude":-2.23743, - "cc":"GB", - "country":"United Kingdom", - "admin1":"England", - "geo":"geoname", - "geonameid":2643123 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:17", - "date":"2021-02-26T17:17:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:30", - "date":"2021-02-27T18:30:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Sheffield February 2021", - "date":"2021-02-26T21:16:50.368Z", - "location":{ - "title":"Sheffield, England, UK", - "city":"Sheffield", - "tzid":"Europe/London", - "latitude":53.38297, - "longitude":-1.4659, - "cc":"GB", - "country":"United Kingdom", - "admin1":"England", - "geo":"geoname", - "geonameid":2638077 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:14", - "date":"2021-02-26T17:14:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:27", - "date":"2021-02-27T18:27:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tbilisi February 2021", - "date":"2021-02-26T21:16:50.835Z", - "location":{ - "title":"Tbilisi, T'bilisi, Georgia", - "city":"Tbilisi", - "tzid":"Asia/Tbilisi", - "latitude":41.69411, - "longitude":44.83368, - "cc":"GE", - "country":"Georgia", - "admin1":"T'bilisi", - "geo":"geoname", - "geonameid":611717 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:25", - "date":"2021-02-26T18:25:00+04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:27", - "date":"2021-02-27T19:27:00+04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Accra February 2021", - "date":"2021-02-26T21:16:51.300Z", - "location":{ - "title":"Accra, Greater Accra, Ghana", - "city":"Accra", - "tzid":"Africa/Accra", - "latitude":5.55602, - "longitude":-0.1969, - "cc":"GH", - "country":"Ghana", - "admin1":"Greater Accra", - "geo":"geoname", - "geonameid":2306104 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:55", - "date":"2021-02-26T17:55:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:45", - "date":"2021-02-27T18:45:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kumasi February 2021", - "date":"2021-02-26T21:16:51.769Z", - "location":{ - "title":"Kumasi, Ashanti, Ghana", - "city":"Kumasi", - "tzid":"Africa/Accra", - "latitude":6.68848, - "longitude":-1.62443, - "cc":"GH", - "country":"Ghana", - "admin1":"Ashanti", - "geo":"geoname", - "geonameid":2298890 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:00", - "date":"2021-02-26T18:00:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:50", - "date":"2021-02-27T18:50:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Gibraltar February 2021", - "date":"2021-02-26T21:16:52.232Z", - "location":{ - "title":"Gibraltar, Gibraltar", - "city":"Gibraltar", - "tzid":"Europe/Gibraltar", - "latitude":36.14474, - "longitude":-5.35257, - "cc":"GI", - "country":"Gibraltar", - "geo":"geoname", - "geonameid":2411585 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:52", - "date":"2021-02-26T18:52:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:50", - "date":"2021-02-27T19:50:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nuuk February 2021", - "date":"2021-02-26T21:16:52.694Z", - "location":{ - "title":"Nuuk, Sermersooq, Greenland", - "city":"Nuuk", - "tzid":"America/Godthab", - "latitude":64.18347, - "longitude":-51.72157, - "cc":"GL", - "country":"Greenland", - "admin1":"Sermersooq", - "geo":"geoname", - "geonameid":3421319 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:09", - "date":"2021-02-26T17:09:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:43", - "date":"2021-02-27T18:43:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Banjul February 2021", - "date":"2021-02-26T21:16:53.193Z", - "location":{ - "title":"Banjul, Gambia", - "city":"Banjul", - "tzid":"Africa/Banjul", - "latitude":13.45274, - "longitude":-16.57803, - "cc":"GM", - "country":"Gambia", - "admin1":"Banjul", - "geo":"geoname", - "geonameid":2413876 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:55", - "date":"2021-02-26T18:55:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:46", - "date":"2021-02-27T19:46:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Camayenne February 2021", - "date":"2021-02-26T21:16:53.680Z", - "location":{ - "title":"Camayenne, Conakry, Guinea", - "city":"Camayenne", - "tzid":"Africa/Conakry", - "latitude":9.535, - "longitude":-13.68778, - "cc":"GN", - "country":"Guinea", - "admin1":"Conakry", - "geo":"geoname", - "geonameid":2422488 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:46", - "date":"2021-02-26T18:46:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:37", - "date":"2021-02-27T19:37:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Conakry February 2021", - "date":"2021-02-26T21:16:54.155Z", - "location":{ - "title":"Conakry, Guinea", - "city":"Conakry", - "tzid":"Africa/Conakry", - "latitude":9.53795, - "longitude":-13.67729, - "cc":"GN", - "country":"Guinea", - "admin1":"Conakry", - "geo":"geoname", - "geonameid":2422465 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:46", - "date":"2021-02-26T18:46:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:36", - "date":"2021-02-27T19:36:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Malabo February 2021", - "date":"2021-02-26T21:16:54.607Z", - "location":{ - "title":"Malabo, Bioko Norte, Equatorial Guinea", - "city":"Malabo", - "tzid":"Africa/Malabo", - "latitude":3.75578, - "longitude":8.78166, - "cc":"GQ", - "country":"Equatorial Guinea", - "admin1":"Bioko Norte", - "geo":"geoname", - "geonameid":2309527 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:21", - "date":"2021-02-26T18:21:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:10", - "date":"2021-02-27T19:10:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Athens February 2021", - "date":"2021-02-26T21:16:55.083Z", - "location":{ - "title":"Athens, Attica, Greece", - "city":"Athens", - "tzid":"Europe/Athens", - "latitude":37.98376, - "longitude":23.72784, - "cc":"GR", - "country":"Greece", - "admin1":"Attica", - "geo":"geoname", - "geonameid":264371 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:54pm", - "date":"2021-02-26T17:54:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:53pm", - "date":"2021-02-27T18:53:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Guatemala City February 2021", - "date":"2021-02-26T21:16:55.556Z", - "location":{ - "title":"Guatemala City, Guatemala, Guatemala", - "city":"Guatemala City", - "tzid":"America/Guatemala", - "latitude":14.64072, - "longitude":-90.51327, - "cc":"GT", - "country":"Guatemala", - "admin1":"Guatemala", - "geo":"geoname", - "geonameid":3598132 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:50", - "date":"2021-02-26T17:50:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:41", - "date":"2021-02-27T18:41:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bissau February 2021", - "date":"2021-02-26T21:16:56.005Z", - "location":{ - "title":"Bissau, Guinea-Bissau", - "city":"Bissau", - "tzid":"Africa/Bissau", - "latitude":11.86357, - "longitude":-15.59767, - "cc":"GW", - "country":"Guinea-Bissau", - "admin1":"Bissau", - "geo":"geoname", - "geonameid":2374775 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:53", - "date":"2021-02-26T18:53:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:43", - "date":"2021-02-27T19:43:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Georgetown February 2021", - "date":"2021-02-26T21:16:56.452Z", - "location":{ - "title":"Georgetown, Demerara-Mahaica, Guyana", - "city":"Georgetown", - "tzid":"America/Guyana", - "latitude":6.80448, - "longitude":-58.15527, - "cc":"GY", - "country":"Guyana", - "admin1":"Demerara-Mahaica", - "geo":"geoname", - "geonameid":3378644 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:46", - "date":"2021-02-26T17:46:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:36", - "date":"2021-02-27T18:36:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Hong Kong February 2021", - "date":"2021-02-26T21:16:56.909Z", - "location":{ - "title":"Hong Kong, Central and Western, Hong Kong", - "city":"Hong Kong", - "tzid":"Asia/Hong_Kong", - "latitude":22.27832, - "longitude":114.17469, - "cc":"HK", - "country":"Hong Kong", - "admin1":"Central and Western", - "geo":"geoname", - "geonameid":1819729 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:06", - "date":"2021-02-26T18:06:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:58", - "date":"2021-02-27T18:58:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tegucigalpa February 2021", - "date":"2021-02-26T21:16:57.678Z", - "location":{ - "title":"Tegucigalpa, Francisco Morazan, Honduras", - "city":"Tegucigalpa", - "tzid":"America/Tegucigalpa", - "latitude":14.0818, - "longitude":-87.20681, - "cc":"HN", - "country":"Honduras", - "admin1":"Francisco Morazan", - "geo":"geoname", - "geonameid":3600949 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:37", - "date":"2021-02-26T17:37:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:28", - "date":"2021-02-27T18:28:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Zagreb February 2021", - "date":"2021-02-26T21:16:58.170Z", - "location":{ - "title":"Zagreb, City of Zagreb, Croatia", - "city":"Zagreb", - "tzid":"Europe/Zagreb", - "latitude":45.81444, - "longitude":15.97798, - "cc":"HR", - "country":"Croatia", - "admin1":"City of Zagreb", - "geo":"geoname", - "geonameid":3186886 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:16", - "date":"2021-02-26T17:16:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:20", - "date":"2021-02-27T18:20:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Port-au-Prince March 2021", - "date":"2021-03-02T11:11:07.519Z", - "location":{ - "title":"Port-au-Prince, Ouest, Haiti", - "city":"Port-au-Prince", - "tzid":"America/Port-au-Prince", - "latitude":18.54349, - "longitude":-72.33881, - "cc":"HT", - "country":"Haiti", - "admin1":"Ouest", - "geo":"geoname", - "geonameid":3718426 - }, - "items":[ - { - "title":"Candle lighting: 17:38", - "date":"2021-03-05T17:38:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:29", - "date":"2021-03-06T18:29:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Budapest February 2021", - "date":"2021-02-26T18:34:47.212Z", - "location":{ - "title":"Budapest, Hungary", - "city":"Budapest", - "tzid":"Europe/Budapest", - "latitude":47.49835, - "longitude":19.04045, - "cc":"HU", - "country":"Hungary", - "admin1":"Budapest", - "geo":"geoname", - "geonameid":3054643 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:01", - "date":"2021-02-26T17:01:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:07", - "date":"2021-02-27T18:07:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bandung February 2021", - "date":"2021-02-26T21:16:59.603Z", - "location":{ - "title":"Bandung, West Java, Indonesia", - "city":"Bandung", - "tzid":"Asia/Jakarta", - "latitude":-6.92222, - "longitude":107.60694, - "cc":"ID", - "country":"Indonesia", - "admin1":"West Java", - "geo":"geoname", - "geonameid":1650357 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:53", - "date":"2021-02-26T17:53:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:42", - "date":"2021-02-27T18:42:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bekasi February 2021", - "date":"2021-02-26T21:17:00.076Z", - "location":{ - "title":"Bekasi, West Java, Indonesia", - "city":"Bekasi", - "tzid":"Asia/Jakarta", - "latitude":-6.2349, - "longitude":106.9896, - "cc":"ID", - "country":"Indonesia", - "admin1":"West Java", - "geo":"geoname", - "geonameid":1649378 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:55", - "date":"2021-02-26T17:55:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:44", - "date":"2021-02-27T18:44:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Depok February 2021", - "date":"2021-02-26T21:17:00.581Z", - "location":{ - "title":"Depok, Yogyakarta, Indonesia", - "city":"Depok", - "tzid":"Asia/Jakarta", - "latitude":-7.7625, - "longitude":110.43167, - "cc":"ID", - "country":"Indonesia", - "admin1":"Yogyakarta", - "geo":"geoname", - "geonameid":1645518 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:42", - "date":"2021-02-26T17:42:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:31", - "date":"2021-02-27T18:31:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Jakarta February 2021", - "date":"2021-02-26T21:17:01.071Z", - "location":{ - "title":"Jakarta, Indonesia", - "city":"Jakarta", - "tzid":"Asia/Jakarta", - "latitude":-6.21462, - "longitude":106.84513, - "cc":"ID", - "country":"Indonesia", - "admin1":"Jakarta", - "geo":"geoname", - "geonameid":1642911 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:55", - "date":"2021-02-26T17:55:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:45", - "date":"2021-02-27T18:45:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Makassar February 2021", - "date":"2021-02-26T21:17:01.538Z", - "location":{ - "title":"Makassar, South Sulawesi, Indonesia", - "city":"Makassar", - "tzid":"Asia/Makassar", - "latitude":-5.14861, - "longitude":119.43194, - "cc":"ID", - "country":"Indonesia", - "admin1":"South Sulawesi", - "geo":"geoname", - "geonameid":1622786 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:04", - "date":"2021-02-26T18:04:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:53", - "date":"2021-02-27T18:53:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Medan February 2021", - "date":"2021-02-26T21:17:02.018Z", - "location":{ - "title":"Medan, North Sumatra, Indonesia", - "city":"Medan", - "tzid":"Asia/Jakarta", - "latitude":3.58333, - "longitude":98.66667, - "cc":"ID", - "country":"Indonesia", - "admin1":"North Sumatra", - "geo":"geoname", - "geonameid":1214520 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:21", - "date":"2021-02-26T18:21:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:11", - "date":"2021-02-27T19:11:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Palembang February 2021", - "date":"2021-02-26T21:17:02.501Z", - "location":{ - "title":"Palembang, South Sumatra, Indonesia", - "city":"Palembang", - "tzid":"Asia/Jakarta", - "latitude":-2.91673, - "longitude":104.7458, - "cc":"ID", - "country":"Indonesia", - "admin1":"South Sumatra", - "geo":"geoname", - "geonameid":1633070 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:01", - "date":"2021-02-26T18:01:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:51", - "date":"2021-02-27T18:51:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Semarang February 2021", - "date":"2021-02-26T21:17:02.967Z", - "location":{ - "title":"Semarang, Central Java, Indonesia", - "city":"Semarang", - "tzid":"Asia/Jakarta", - "latitude":-6.99306, - "longitude":110.42083, - "cc":"ID", - "country":"Indonesia", - "admin1":"Central Java", - "geo":"geoname", - "geonameid":1627896 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:41", - "date":"2021-02-26T17:41:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:31", - "date":"2021-02-27T18:31:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal South Tangerang February 2021", - "date":"2021-02-26T21:17:03.418Z", - "location":{ - "title":"South Tangerang, Banten, Indonesia", - "city":"South Tangerang", - "tzid":"Asia/Jakarta", - "latitude":-6.28862, - "longitude":106.71789, - "cc":"ID", - "country":"Indonesia", - "admin1":"Banten", - "geo":"geoname", - "geonameid":8581443 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:56", - "date":"2021-02-26T17:56:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:45", - "date":"2021-02-27T18:45:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Surabaya February 2021", - "date":"2021-02-26T21:17:03.902Z", - "location":{ - "title":"Surabaya, East Java, Indonesia", - "city":"Surabaya", - "tzid":"Asia/Jakarta", - "latitude":-7.24917, - "longitude":112.75083, - "cc":"ID", - "country":"Indonesia", - "admin1":"East Java", - "geo":"geoname", - "geonameid":1625822 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:32", - "date":"2021-02-26T17:32:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:22", - "date":"2021-02-27T18:22:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tangerang February 2021", - "date":"2021-02-26T21:17:04.375Z", - "location":{ - "title":"Tangerang, Banten, Indonesia", - "city":"Tangerang", - "tzid":"Asia/Jakarta", - "latitude":-6.17806, - "longitude":106.63, - "cc":"ID", - "country":"Indonesia", - "admin1":"Banten", - "geo":"geoname", - "geonameid":1625084 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:56", - "date":"2021-02-26T17:56:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:45", - "date":"2021-02-27T18:45:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Dublin February 2021", - "date":"2021-02-26T21:17:04.831Z", - "location":{ - "title":"Dublin, Leinster, Ireland", - "city":"Dublin", - "tzid":"Europe/Dublin", - "latitude":53.33306, - "longitude":-6.24889, - "cc":"IE", - "country":"Ireland", - "admin1":"Leinster", - "geo":"geoname", - "geonameid":2964574 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:33", - "date":"2021-02-26T17:33:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:46", - "date":"2021-02-27T18:46:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ashdod February 2021", - "date":"2021-02-26T21:17:05.297Z", - "location":{ - "title":"Ashdod, Israel", - "city":"Ashdod", - "tzid":"Asia/Jerusalem", - "latitude":31.79213, - "longitude":34.64966, - "cc":"IL", - "country":"Israel", - "admin1":"Southern District", - "geo":"geoname", - "geonameid":295629 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:16", - "date":"2021-02-26T17:16:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:12", - "date":"2021-02-27T18:12:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ashkelon February 2021", - "date":"2021-02-26T21:17:05.763Z", - "location":{ - "title":"Ashkelon, Israel", - "city":"Ashkelon", - "tzid":"Asia/Jerusalem", - "latitude":31.66926, - "longitude":34.57149, - "cc":"IL", - "country":"Israel", - "admin1":"Southern District", - "geo":"geoname", - "geonameid":295620 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:17", - "date":"2021-02-26T17:17:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:12", - "date":"2021-02-27T18:12:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bat Yam February 2021", - "date":"2021-02-26T21:17:06.221Z", - "location":{ - "title":"Bat Yam, Israel", - "city":"Bat Yam", - "tzid":"Asia/Jerusalem", - "latitude":32.02379, - "longitude":34.75185, - "cc":"IL", - "country":"Israel", - "admin1":"Tel Aviv", - "geo":"geoname", - "geonameid":295548 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:16", - "date":"2021-02-26T17:16:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Beersheba February 2021", - "date":"2021-02-26T21:17:06.682Z", - "location":{ - "title":"Beersheba, Israel", - "city":"Beersheba", - "tzid":"Asia/Jerusalem", - "latitude":31.25181, - "longitude":34.7913, - "cc":"IL", - "country":"Israel", - "admin1":"Southern District", - "geo":"geoname", - "geonameid":295530 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:16", - "date":"2021-02-26T17:16:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:12", - "date":"2021-02-27T18:12:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bet Shemesh February 2021", - "date":"2021-02-26T21:17:07.154Z", - "location":{ - "title":"Bet Shemesh, Israel", - "city":"Bet Shemesh", - "tzid":"Asia/Jerusalem", - "latitude":31.73072, - "longitude":34.99293, - "cc":"IL", - "country":"Israel", - "admin1":"Jerusalem", - "geo":"geoname", - "geonameid":295432 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bnei Brak February 2021", - "date":"2021-02-26T21:17:07.627Z", - "location":{ - "title":"Bnei Brak, Israel", - "city":"Bnei Brak", - "tzid":"Asia/Jerusalem", - "latitude":32.08074, - "longitude":34.8338, - "cc":"IL", - "country":"Israel", - "admin1":"Tel Aviv", - "geo":"geoname", - "geonameid":295514 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Eilat February 2021", - "date":"2021-02-26T21:17:08.109Z", - "location":{ - "title":"Eilat, Israel", - "city":"Eilat", - "tzid":"Asia/Jerusalem", - "latitude":29.55805, - "longitude":34.94821, - "cc":"IL", - "country":"Israel", - "admin1":"Southern District", - "geo":"geoname", - "geonameid":295277 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:17", - "date":"2021-02-26T17:17:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:12", - "date":"2021-02-27T18:12:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Hadera February 2021", - "date":"2021-02-26T21:17:08.570Z", - "location":{ - "title":"Hadera, Israel", - "city":"Hadera", - "tzid":"Asia/Jerusalem", - "latitude":32.44192, - "longitude":34.9039, - "cc":"IL", - "country":"Israel", - "admin1":"Haifa", - "geo":"geoname", - "geonameid":294946 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Haifa February 2021", - "date":"2021-02-26T21:17:09.055Z", - "location":{ - "title":"Haifa, Israel", - "city":"Haifa", - "tzid":"Asia/Jerusalem", - "latitude":32.81841, - "longitude":34.9885, - "cc":"IL", - "country":"Israel", - "admin1":"Haifa", - "geo":"geoname", - "geonameid":294801 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:14", - "date":"2021-02-26T17:14:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:10", - "date":"2021-02-27T18:10:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Herzliya February 2021", - "date":"2021-02-26T21:17:09.544Z", - "location":{ - "title":"Herzliya, Israel", - "city":"Herzliya", - "tzid":"Asia/Jerusalem", - "latitude":32.16627, - "longitude":34.82536, - "cc":"IL", - "country":"Israel", - "admin1":"Tel Aviv", - "geo":"geoname", - "geonameid":294778 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal H̱olon February 2021", - "date":"2021-02-26T21:17:10.045Z", - "location":{ - "title":"H̱olon, Israel", - "city":"H̱olon", - "tzid":"Asia/Jerusalem", - "latitude":32.01034, - "longitude":34.77918, - "cc":"IL", - "country":"Israel", - "admin1":"Tel Aviv", - "asciiname":"Holon", - "geo":"geoname", - "geonameid":294751 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Jerusalem February 2021", - "date":"2021-02-24T17:08:46.696Z", - "location":{ - "title":"Jerusalem, Israel", - "city":"Jerusalem", - "tzid":"Asia/Jerusalem", - "latitude":31.76904, - "longitude":35.21633, - "cc":"IL", - "country":"Israel", - "admin1":"Jerusalem", - "geo":"geoname", - "geonameid":281184 - }, - "items":[ - { - "title":"Fast begins", - "date":"2021-02-25T05:02:00+02:00", - "category":"zmanim", - "subcat":"fast", - "hebrew":"תחילת הצום", - "memo":"Ta'anit Esther" - }, - { - "title":"Ta'anit Esther", - "date":"2021-02-25", - "category":"holiday", - "subcat":"fast", - "hebrew":"תענית אסתר", - "leyning":{ - "1":"Exodus 32:11 - 32:14", - "2":"Exodus 34:1 - 34:3", - "3":"Exodus 34:4 - 34:10", - "torah":"Exodus 32:11-34:10" - }, - "link":"https://www.hebcal.com/holidays/taanit-esther-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Fast of Esther" - }, - { - "title":"Fast ends", - "date":"2021-02-25T18:01:00+02:00", - "category":"zmanim", - "subcat":"fast", - "hebrew":"סיום הצום", - "memo":"Ta'anit Esther" - }, - { - "title":"Erev Purim", - "date":"2021-02-25", - "category":"holiday", - "subcat":"major", - "hebrew":"ערב פורים", - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 16:52", - "date":"2021-02-26T16:52:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:10", - "date":"2021-02-27T18:10:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kfar Saba February 2021", - "date":"2021-02-26T21:17:11.008Z", - "location":{ - "title":"Kfar Saba, Israel", - "city":"Kfar Saba", - "tzid":"Asia/Jerusalem", - "latitude":32.175, - "longitude":34.90694, - "cc":"IL", - "country":"Israel", - "admin1":"Central District", - "geo":"geoname", - "geonameid":294514 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Lod February 2021", - "date":"2021-02-26T21:17:11.470Z", - "location":{ - "title":"Lod, Israel", - "city":"Lod", - "tzid":"Asia/Jerusalem", - "latitude":31.9467, - "longitude":34.8903, - "cc":"IL", - "country":"Israel", - "admin1":"Central District", - "geo":"geoname", - "geonameid":294421 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Modi‘in Makkabbim Re‘ut February 2021", - "date":"2021-02-26T21:17:11.931Z", - "location":{ - "title":"Modi‘in Makkabbim Re‘ut, Israel", - "city":"Modi‘in Makkabbim Re‘ut", - "tzid":"Asia/Jerusalem", - "latitude":31.89385, - "longitude":35.01504, - "cc":"IL", - "country":"Israel", - "admin1":"Central District", - "asciiname":"Modi'in Makkabbim Re'ut", - "geo":"geoname", - "geonameid":282926 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:10", - "date":"2021-02-27T18:10:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nazareth February 2021", - "date":"2021-02-26T21:17:12.417Z", - "location":{ - "title":"Nazareth, Israel", - "city":"Nazareth", - "tzid":"Asia/Jerusalem", - "latitude":32.70056, - "longitude":35.29722, - "cc":"IL", - "country":"Israel", - "admin1":"Northern District", - "geo":"geoname", - "geonameid":294098 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:13", - "date":"2021-02-26T17:13:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:09", - "date":"2021-02-27T18:09:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Netanya February 2021", - "date":"2021-02-26T21:17:12.877Z", - "location":{ - "title":"Netanya, Israel", - "city":"Netanya", - "tzid":"Asia/Jerusalem", - "latitude":32.33291, - "longitude":34.85992, - "cc":"IL", - "country":"Israel", - "admin1":"Central District", - "geo":"geoname", - "geonameid":294071 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Petaẖ Tiqwa February 2021", - "date":"2021-02-26T21:17:13.344Z", - "location":{ - "title":"Petaẖ Tiqwa, Israel", - "city":"Petaẖ Tiqwa", - "tzid":"Asia/Jerusalem", - "latitude":32.08707, - "longitude":34.88747, - "cc":"IL", - "country":"Israel", - "admin1":"Central District", - "asciiname":"Petah Tiqwa", - "geo":"geoname", - "geonameid":293918 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ra'anana February 2021", - "date":"2021-02-26T21:17:13.805Z", - "location":{ - "title":"Ra'anana, Israel", - "city":"Ra'anana", - "tzid":"Asia/Jerusalem", - "latitude":32.1836, - "longitude":34.87386, - "cc":"IL", - "country":"Israel", - "admin1":"Central District", - "geo":"geoname", - "geonameid":293807 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ramat Gan February 2021", - "date":"2021-02-26T21:17:14.287Z", - "location":{ - "title":"Ramat Gan, Israel", - "city":"Ramat Gan", - "tzid":"Asia/Jerusalem", - "latitude":32.08227, - "longitude":34.81065, - "cc":"IL", - "country":"Israel", - "admin1":"Tel Aviv", - "geo":"geoname", - "geonameid":293788 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ramla February 2021", - "date":"2021-02-26T21:17:14.754Z", - "location":{ - "title":"Ramla, Israel", - "city":"Ramla", - "tzid":"Asia/Jerusalem", - "latitude":31.92923, - "longitude":34.86563, - "cc":"IL", - "country":"Israel", - "admin1":"Central District", - "geo":"geoname", - "geonameid":293768 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Rishon LeẔiyyon February 2021", - "date":"2021-02-26T21:17:15.212Z", - "location":{ - "title":"Rishon LeẔiyyon, Israel", - "city":"Rishon LeẔiyyon", - "tzid":"Asia/Jerusalem", - "latitude":31.97102, - "longitude":34.78939, - "cc":"IL", - "country":"Israel", - "admin1":"Central District", - "asciiname":"Rishon LeZiyyon", - "geo":"geoname", - "geonameid":293703 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tel Aviv February 2021", - "date":"2021-02-24T23:03:04.280Z", - "location":{ - "title":"Tel Aviv, Israel", - "city":"Tel Aviv", - "tzid":"Asia/Jerusalem", - "latitude":32.08088, - "longitude":34.78057, - "cc":"IL", - "country":"Israel", - "admin1":"Tel Aviv", - "geo":"geoname", - "geonameid":293397 - }, - "items":[ - { - "title":"Fast begins", - "date":"2021-02-25T05:03:00+02:00", - "category":"zmanim", - "subcat":"fast", - "hebrew":"תחילת הצום", - "memo":"Ta'anit Esther" - }, - { - "title":"Ta'anit Esther", - "date":"2021-02-25", - "category":"holiday", - "subcat":"fast", - "hebrew":"תענית אסתר", - "leyning":{ - "1":"Exodus 32:11 - 32:14", - "2":"Exodus 34:1 - 34:3", - "3":"Exodus 34:4 - 34:10", - "torah":"Exodus 32:11-34:10" - }, - "link":"https://www.hebcal.com/holidays/taanit-esther-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Fast of Esther" - }, - { - "title":"Fast ends", - "date":"2021-02-25T18:03:00+02:00", - "category":"zmanim", - "subcat":"fast", - "hebrew":"סיום הצום", - "memo":"Ta'anit Esther" - }, - { - "title":"Erev Purim", - "date":"2021-02-25", - "category":"holiday", - "subcat":"major", - "hebrew":"ערב פורים", - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:15", - "date":"2021-02-26T17:15:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:11", - "date":"2021-02-27T18:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tiberias February 2021", - "date":"2021-02-26T21:17:16.118Z", - "location":{ - "title":"Tiberias, Israel", - "city":"Tiberias", - "tzid":"Asia/Jerusalem", - "latitude":32.79221, - "longitude":35.53124, - "cc":"IL", - "country":"Israel", - "admin1":"Northern District", - "geo":"geoname", - "geonameid":293322 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:12", - "date":"2021-02-26T17:12:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10" - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?i=on&utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:08", - "date":"2021-02-27T18:08:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?i=on&utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Douglas February 2021", - "date":"2021-02-26T21:17:16.600Z", - "location":{ - "title":"Douglas, Isle of Man", - "city":"Douglas", - "tzid":"Europe/Isle_of_Man", - "latitude":54.15, - "longitude":-4.48333, - "cc":"IM", - "country":"Isle of Man", - "admin1":"Douglas", - "geo":"geoname", - "geonameid":3042237 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:25", - "date":"2021-02-26T17:25:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:38", - "date":"2021-02-27T18:38:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ahmedabad February 2021", - "date":"2021-02-26T21:17:17.065Z", - "location":{ - "title":"Ahmedabad, Gujarat, India", - "city":"Ahmedabad", - "tzid":"Asia/Kolkata", - "latitude":23.02579, - "longitude":72.58727, - "cc":"IN", - "country":"India", - "admin1":"Gujarat", - "geo":"geoname", - "geonameid":1279233 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:22pm", - "date":"2021-02-26T18:22:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:14pm", - "date":"2021-02-27T19:14:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bengaluru February 2021", - "date":"2021-02-26T21:17:17.523Z", - "location":{ - "title":"Bengaluru, Karnataka, India", - "city":"Bengaluru", - "tzid":"Asia/Kolkata", - "latitude":12.97194, - "longitude":77.59369, - "cc":"IN", - "country":"India", - "admin1":"Karnataka", - "geo":"geoname", - "geonameid":1277333 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:09pm", - "date":"2021-02-26T18:09:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:59pm", - "date":"2021-02-27T18:59:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Mumbai February 2021", - "date":"2021-02-26T21:17:17.996Z", - "location":{ - "title":"Mumbai, Maharashtra, India", - "city":"Mumbai", - "tzid":"Asia/Kolkata", - "latitude":19.07283, - "longitude":72.88261, - "cc":"IN", - "country":"India", - "admin1":"Maharashtra", - "geo":"geoname", - "geonameid":1275339 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:23pm", - "date":"2021-02-26T18:23:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:15pm", - "date":"2021-02-27T19:15:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kolkata February 2021", - "date":"2021-02-26T21:17:18.469Z", - "location":{ - "title":"Kolkata, West Bengal, India", - "city":"Kolkata", - "tzid":"Asia/Kolkata", - "latitude":22.56263, - "longitude":88.36304, - "cc":"IN", - "country":"India", - "admin1":"West Bengal", - "geo":"geoname", - "geonameid":1275004 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:19pm", - "date":"2021-02-26T17:19:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:11pm", - "date":"2021-02-27T18:11:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Chennai February 2021", - "date":"2021-02-26T21:17:18.941Z", - "location":{ - "title":"Chennai, Tamil Nadu, India", - "city":"Chennai", - "tzid":"Asia/Kolkata", - "latitude":13.08784, - "longitude":80.27847, - "cc":"IN", - "country":"India", - "admin1":"Tamil Nadu", - "geo":"geoname", - "geonameid":1264527 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:58pm", - "date":"2021-02-26T17:58:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:49pm", - "date":"2021-02-27T18:49:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Cochin February 2021", - "date":"2021-02-26T21:17:19.396Z", - "location":{ - "title":"Cochin, Kerala, India", - "city":"Cochin", - "tzid":"Asia/Kolkata", - "latitude":9.93988, - "longitude":76.26022, - "cc":"IN", - "country":"India", - "admin1":"Kerala", - "geo":"geoname", - "geonameid":1273874 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:16pm", - "date":"2021-02-26T18:16:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:06pm", - "date":"2021-02-27T19:06:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Hyderabad February 2021", - "date":"2021-02-26T21:17:19.866Z", - "location":{ - "title":"Hyderabad, Telangana, India", - "city":"Hyderabad", - "tzid":"Asia/Kolkata", - "latitude":17.38405, - "longitude":78.45636, - "cc":"IN", - "country":"India", - "admin1":"Telangana", - "geo":"geoname", - "geonameid":1269843 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:02pm", - "date":"2021-02-26T18:02:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:54pm", - "date":"2021-02-27T18:54:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Jaipur February 2021", - "date":"2021-02-26T21:17:20.326Z", - "location":{ - "title":"Jaipur, Rajasthan, India", - "city":"Jaipur", - "tzid":"Asia/Kolkata", - "latitude":26.91962, - "longitude":75.78781, - "cc":"IN", - "country":"India", - "admin1":"Rajasthan", - "geo":"geoname", - "geonameid":1269515 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:06pm", - "date":"2021-02-26T18:06:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:00pm", - "date":"2021-02-27T19:00:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kanpur February 2021", - "date":"2021-02-26T21:17:20.786Z", - "location":{ - "title":"Kanpur, Uttar Pradesh, India", - "city":"Kanpur", - "tzid":"Asia/Kolkata", - "latitude":26.46523, - "longitude":80.34975, - "cc":"IN", - "country":"India", - "admin1":"Uttar Pradesh", - "geo":"geoname", - "geonameid":1267995 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:48pm", - "date":"2021-02-26T17:48:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:42pm", - "date":"2021-02-27T18:42:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal New Delhi February 2021", - "date":"2021-02-26T21:17:21.252Z", - "location":{ - "title":"New Delhi, Delhi, India", - "city":"New Delhi", - "tzid":"Asia/Kolkata", - "latitude":28.63576, - "longitude":77.22445, - "cc":"IN", - "country":"India", - "admin1":"Delhi", - "geo":"geoname", - "geonameid":1261481 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:59pm", - "date":"2021-02-26T17:59:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:53pm", - "date":"2021-02-27T18:53:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Pune February 2021", - "date":"2021-02-26T21:25:41.788Z", - "location":{ - "title":"Pune, Maharashtra, India", - "city":"Pune", - "tzid":"Asia/Kolkata", - "latitude":18.51957, - "longitude":73.85535, - "cc":"IN", - "country":"India", - "admin1":"Maharashtra", - "geo":"geoname", - "geonameid":1259229 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:20pm", - "date":"2021-02-26T18:20:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:11pm", - "date":"2021-02-27T19:11:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Surat February 2021", - "date":"2021-02-26T21:25:42.257Z", - "location":{ - "title":"Surat, Gujarat, India", - "city":"Surat", - "tzid":"Asia/Kolkata", - "latitude":21.19594, - "longitude":72.83023, - "cc":"IN", - "country":"India", - "admin1":"Gujarat", - "geo":"geoname", - "geonameid":1255364 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:22pm", - "date":"2021-02-26T18:22:00+05:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:14pm", - "date":"2021-02-27T19:14:00+05:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Baghdad February 2021", - "date":"2021-02-26T21:25:42.714Z", - "location":{ - "title":"Baghdad, Iraq", - "city":"Baghdad", - "tzid":"Asia/Baghdad", - "latitude":33.34058, - "longitude":44.40088, - "cc":"IQ", - "country":"Iraq", - "admin1":"Baghdad", - "geo":"geoname", - "geonameid":98182 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:36", - "date":"2021-02-26T17:36:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:32", - "date":"2021-02-27T18:32:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tehran February 2021", - "date":"2021-02-26T21:25:43.164Z", - "location":{ - "title":"Tehran, Iran", - "city":"Tehran", - "tzid":"Asia/Tehran", - "latitude":35.69439, - "longitude":51.42151, - "cc":"IR", - "country":"Iran", - "admin1":"Tehran", - "geo":"geoname", - "geonameid":112931 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:35", - "date":"2021-02-26T17:35:00+03:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:33", - "date":"2021-02-27T18:33:00+03:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Reykjavík February 2021", - "date":"2021-02-26T21:25:43.625Z", - "location":{ - "title":"Reykjavík, Capital Region, Iceland", - "city":"Reykjavík", - "tzid":"Atlantic/Reykjavik", - "latitude":64.13548, - "longitude":-21.89541, - "cc":"IS", - "country":"Iceland", - "admin1":"Capital Region", - "asciiname":"Reykjavik", - "geo":"geoname", - "geonameid":3413829 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:09", - "date":"2021-02-26T18:09:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:43", - "date":"2021-02-27T19:43:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Milan February 2021", - "date":"2021-02-26T21:25:44.084Z", - "location":{ - "title":"Milan, Lombardy, Italy", - "city":"Milan", - "tzid":"Europe/Rome", - "latitude":45.46427, - "longitude":9.18951, - "cc":"IT", - "country":"Italy", - "admin1":"Lombardy", - "geo":"geoname", - "geonameid":3173435 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:43", - "date":"2021-02-26T17:43:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:48", - "date":"2021-02-27T18:48:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Rome February 2021", - "date":"2021-02-26T21:25:44.547Z", - "location":{ - "title":"Rome, Latium, Italy", - "city":"Rome", - "tzid":"Europe/Rome", - "latitude":41.89193, - "longitude":12.51133, - "cc":"IT", - "country":"Italy", - "admin1":"Latium", - "geo":"geoname", - "geonameid":3169070 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:35", - "date":"2021-02-26T17:35:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:36", - "date":"2021-02-27T18:36:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kingston February 2021", - "date":"2021-02-26T21:25:45.001Z", - "location":{ - "title":"Kingston, Jamaica", - "city":"Kingston", - "tzid":"America/Jamaica", - "latitude":17.99702, - "longitude":-76.79358, - "cc":"JM", - "country":"Jamaica", - "admin1":"Kingston", - "geo":"geoname", - "geonameid":3489854 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:53", - "date":"2021-02-26T17:53:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:44", - "date":"2021-02-27T18:44:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Amman February 2021", - "date":"2021-02-26T21:25:45.446Z", - "location":{ - "title":"Amman, Jordan", - "city":"Amman", - "tzid":"Asia/Amman", - "latitude":31.95522, - "longitude":35.94503, - "cc":"JO", - "country":"Jordan", - "admin1":"Amman", - "geo":"geoname", - "geonameid":250441 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:11", - "date":"2021-02-26T17:11:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:07", - "date":"2021-02-27T18:07:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kobe March 2021", - "date":"2021-03-02T11:12:36.888Z", - "location":{ - "title":"Kobe, Hyogo, Japan", - "city":"Kobe", - "tzid":"Asia/Tokyo", - "latitude":34.6913, - "longitude":135.183, - "cc":"JP", - "country":"Japan", - "admin1":"Hyogo", - "geo":"geoname", - "geonameid":1859171 - }, - "items":[ - { - "title":"Candle lighting: 17:40", - "date":"2021-03-05T17:40:00+09:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:37", - "date":"2021-03-06T18:37:00+09:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Kyoto February 2021", - "date":"2021-02-26T21:25:46.392Z", - "location":{ - "title":"Kyoto, Japan", - "city":"Kyoto", - "tzid":"Asia/Tokyo", - "latitude":35.02107, - "longitude":135.75385, - "cc":"JP", - "country":"Japan", - "admin1":"Kyoto", - "geo":"geoname", - "geonameid":1857910 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:28", - "date":"2021-02-26T17:28:00+09:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:26", - "date":"2021-02-27T18:26:00+09:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nagoya March 2021", - "date":"2021-03-02T12:11:47.045Z", - "location":{ - "title":"Nagoya, Aichi, Japan", - "city":"Nagoya", - "tzid":"Asia/Tokyo", - "latitude":35.18147, - "longitude":136.90641, - "cc":"JP", - "country":"Japan", - "admin1":"Aichi", - "geo":"geoname", - "geonameid":1856057 - }, - "items":[ - { - "title":"Candle lighting: 17:33", - "date":"2021-03-05T17:33:00+09:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:30", - "date":"2021-03-06T18:30:00+09:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Osaka March 2021", - "date":"2021-03-02T12:12:43.474Z", - "location":{ - "title":"Osaka, Japan", - "city":"Osaka", - "tzid":"Asia/Tokyo", - "latitude":34.69374, - "longitude":135.50218, - "cc":"JP", - "country":"Japan", - "admin1":"Osaka", - "geo":"geoname", - "geonameid":1853909 - }, - "items":[ - { - "title":"Candle lighting: 17:39", - "date":"2021-03-05T17:39:00+09:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:35", - "date":"2021-03-06T18:35:00+09:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Sapporo February 2021", - "date":"2021-02-26T21:25:47.758Z", - "location":{ - "title":"Sapporo, Hokkaido, Japan", - "city":"Sapporo", - "tzid":"Asia/Tokyo", - "latitude":43.06667, - "longitude":141.35, - "cc":"JP", - "country":"Japan", - "admin1":"Hokkaido", - "geo":"geoname", - "geonameid":2128295 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 16:57", - "date":"2021-02-26T16:57:00+09:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:00", - "date":"2021-02-27T18:00:00+09:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tokyo February 2021", - "date":"2021-02-26T21:25:48.232Z", - "location":{ - "title":"Tokyo, Japan", - "city":"Tokyo", - "tzid":"Asia/Tokyo", - "latitude":35.6895, - "longitude":139.69171, - "cc":"JP", - "country":"Japan", - "admin1":"Tokyo", - "geo":"geoname", - "geonameid":1850147 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:12", - "date":"2021-02-26T17:12:00+09:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:10", - "date":"2021-02-27T18:10:00+09:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nairobi February 2021", - "date":"2021-02-26T21:25:48.693Z", - "location":{ - "title":"Nairobi, Kenya", - "city":"Nairobi", - "tzid":"Africa/Nairobi", - "latitude":-1.28333, - "longitude":36.81667, - "cc":"KE", - "country":"Kenya", - "admin1":"Nairobi Area", - "geo":"geoname", - "geonameid":184745 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:32", - "date":"2021-02-26T18:32:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:21", - "date":"2021-02-27T19:21:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bishkek February 2021", - "date":"2021-02-26T21:25:49.153Z", - "location":{ - "title":"Bishkek, Kyrgyzstan", - "city":"Bishkek", - "tzid":"Asia/Bishkek", - "latitude":42.87, - "longitude":74.59, - "cc":"KG", - "country":"Kyrgyzstan", - "admin1":"Bishkek", - "geo":"geoname", - "geonameid":1528675 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:25", - "date":"2021-02-26T18:25:00+06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:27", - "date":"2021-02-27T19:27:00+06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Phnom Penh February 2021", - "date":"2021-02-26T21:25:49.611Z", - "location":{ - "title":"Phnom Penh, Cambodia", - "city":"Phnom Penh", - "tzid":"Asia/Phnom_Penh", - "latitude":11.56245, - "longitude":104.91601, - "cc":"KH", - "country":"Cambodia", - "admin1":"Phnom Penh", - "geo":"geoname", - "geonameid":1821306 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:51", - "date":"2021-02-26T17:51:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:41", - "date":"2021-02-27T18:41:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Moroni February 2021", - "date":"2021-02-26T21:25:50.089Z", - "location":{ - "title":"Moroni, Grande Comore, Comoros", - "city":"Moroni", - "tzid":"Indian/Comoro", - "latitude":-11.70216, - "longitude":43.25506, - "cc":"KM", - "country":"Comoros", - "admin1":"Grande Comore", - "geo":"geoname", - "geonameid":921772 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:13", - "date":"2021-02-26T18:13:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:03", - "date":"2021-02-27T19:03:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Basseterre February 2021", - "date":"2021-02-26T21:25:50.573Z", - "location":{ - "title":"Basseterre, Saint George Basseterre, Saint Kitts and Nevis", - "city":"Basseterre", - "tzid":"America/St_Kitts", - "latitude":17.2955, - "longitude":-62.72499, - "cc":"KN", - "country":"Saint Kitts and Nevis", - "admin1":"Saint George Basseterre", - "geo":"geoname", - "geonameid":3575551 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:57", - "date":"2021-02-26T17:57:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:49", - "date":"2021-02-27T18:49:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Pyongyang February 2021", - "date":"2021-02-26T21:25:51.033Z", - "location":{ - "title":"Pyongyang, North Korea", - "city":"Pyongyang", - "tzid":"Asia/Pyongyang", - "latitude":39.03385, - "longitude":125.75432, - "cc":"KP", - "country":"North Korea", - "admin1":"Pyongyang", - "geo":"geoname", - "geonameid":1871859 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:04", - "date":"2021-02-26T18:04:00+09:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:04", - "date":"2021-02-27T19:04:00+09:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Busan February 2021", - "date":"2021-02-26T21:25:51.486Z", - "location":{ - "title":"Busan, South Korea", - "city":"Busan", - "tzid":"Asia/Seoul", - "latitude":35.10168, - "longitude":129.03004, - "cc":"KR", - "country":"South Korea", - "admin1":"Busan", - "geo":"geoname", - "geonameid":1838524 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:55pm", - "date":"2021-02-26T17:55:00+09:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:53pm", - "date":"2021-02-27T18:53:00+09:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Seoul February 2021", - "date":"2021-02-26T21:25:51.941Z", - "location":{ - "title":"Seoul, South Korea", - "city":"Seoul", - "tzid":"Asia/Seoul", - "latitude":37.566, - "longitude":126.9784, - "cc":"KR", - "country":"South Korea", - "admin1":"Seoul", - "geo":"geoname", - "geonameid":1835848 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:01pm", - "date":"2021-02-26T18:01:00+09:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:00pm", - "date":"2021-02-27T19:00:00+09:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kuwait City February 2021", - "date":"2021-02-26T21:25:52.395Z", - "location":{ - "title":"Kuwait City, Al Asimah, Kuwait", - "city":"Kuwait City", - "tzid":"Asia/Kuwait", - "latitude":29.36972, - "longitude":47.97833, - "cc":"KW", - "country":"Kuwait", - "admin1":"Al Asimah", - "geo":"geoname", - "geonameid":285787 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:25", - "date":"2021-02-26T17:25:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:20", - "date":"2021-02-27T18:20:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal George Town February 2021", - "date":"2021-02-26T21:25:52.869Z", - "location":{ - "title":"George Town, Cayman Islands", - "city":"George Town", - "tzid":"America/Cayman", - "latitude":19.2866, - "longitude":-81.37436, - "cc":"KY", - "country":"Cayman Islands", - "admin1":"George Town", - "geo":"geoname", - "geonameid":3580661 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:10", - "date":"2021-02-26T18:10:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:02", - "date":"2021-02-27T19:02:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Almaty February 2021", - "date":"2021-02-26T21:25:53.334Z", - "location":{ - "title":"Almaty, Kazakhstan", - "city":"Almaty", - "tzid":"Asia/Almaty", - "latitude":43.25667, - "longitude":76.92861, - "cc":"KZ", - "country":"Kazakhstan", - "admin1":"Almaty", - "geo":"geoname", - "geonameid":1526384 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:15", - "date":"2021-02-26T18:15:00+06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:17", - "date":"2021-02-27T19:17:00+06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nur-Sultan February 2021", - "date":"2021-02-26T21:25:53.796Z", - "location":{ - "title":"Nur-Sultan, Kazakhstan", - "city":"Nur-Sultan", - "tzid":"Asia/Almaty", - "latitude":51.1801, - "longitude":71.44598, - "cc":"KZ", - "country":"Kazakhstan", - "admin1":"Nur-Sultan", - "geo":"geoname", - "geonameid":1526273 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:26", - "date":"2021-02-26T18:26:00+06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:36", - "date":"2021-02-27T19:36:00+06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Vientiane February 2021", - "date":"2021-02-26T21:25:54.283Z", - "location":{ - "title":"Vientiane, Laos", - "city":"Vientiane", - "tzid":"Asia/Vientiane", - "latitude":17.96667, - "longitude":102.6, - "cc":"LA", - "country":"Laos", - "admin1":"Vientiane Prefecture", - "geo":"geoname", - "geonameid":1651944 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:55", - "date":"2021-02-26T17:55:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:47", - "date":"2021-02-27T18:47:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Beirut February 2021", - "date":"2021-02-26T21:25:54.769Z", - "location":{ - "title":"Beirut, Beyrouth, Lebanon", - "city":"Beirut", - "tzid":"Asia/Beirut", - "latitude":33.89332, - "longitude":35.50157, - "cc":"LB", - "country":"Lebanon", - "admin1":"Beyrouth", - "geo":"geoname", - "geonameid":276781 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:11", - "date":"2021-02-26T17:11:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:08", - "date":"2021-02-27T18:08:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Castries February 2021", - "date":"2021-02-26T21:25:55.221Z", - "location":{ - "title":"Castries, Saint Lucia", - "city":"Castries", - "tzid":"America/St_Lucia", - "latitude":13.9957, - "longitude":-61.00614, - "cc":"LC", - "country":"Saint Lucia", - "admin1":"Castries", - "geo":"geoname", - "geonameid":3576812 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:53", - "date":"2021-02-26T17:53:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:43", - "date":"2021-02-27T18:43:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Vaduz February 2021", - "date":"2021-02-26T21:25:55.679Z", - "location":{ - "title":"Vaduz, Liechtenstein", - "city":"Vaduz", - "tzid":"Europe/Vaduz", - "latitude":47.14151, - "longitude":9.52154, - "cc":"LI", - "country":"Liechtenstein", - "admin1":"Vaduz", - "geo":"geoname", - "geonameid":3042030 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:40", - "date":"2021-02-26T17:40:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:46", - "date":"2021-02-27T18:46:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Monrovia February 2021", - "date":"2021-02-26T21:25:56.138Z", - "location":{ - "title":"Monrovia, Montserrado, Liberia", - "city":"Monrovia", - "tzid":"Africa/Monrovia", - "latitude":6.30054, - "longitude":-10.7969, - "cc":"LR", - "country":"Liberia", - "admin1":"Montserrado", - "geo":"geoname", - "geonameid":2274895 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:37", - "date":"2021-02-26T18:37:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:27", - "date":"2021-02-27T19:27:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Maseru February 2021", - "date":"2021-02-26T21:25:56.599Z", - "location":{ - "title":"Maseru, Lesotho", - "city":"Maseru", - "tzid":"Africa/Maseru", - "latitude":-29.31667, - "longitude":27.48333, - "cc":"LS", - "country":"Lesotho", - "admin1":"Maseru", - "geo":"geoname", - "geonameid":932505 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:30", - "date":"2021-02-26T18:30:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:24", - "date":"2021-02-27T19:24:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Vilnius February 2021", - "date":"2021-02-26T21:25:57.050Z", - "location":{ - "title":"Vilnius, Lithuania", - "city":"Vilnius", - "tzid":"Europe/Vilnius", - "latitude":54.68916, - "longitude":25.2798, - "cc":"LT", - "country":"Lithuania", - "admin1":"Vilnius", - "geo":"geoname", - "geonameid":593116 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:24", - "date":"2021-02-26T17:24:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:39", - "date":"2021-02-27T18:39:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Luxembourg February 2021", - "date":"2021-02-26T21:25:57.501Z", - "location":{ - "title":"Luxembourg, Luxembourg", - "city":"Luxembourg", - "tzid":"Europe/Luxembourg", - "latitude":49.61167, - "longitude":6.13, - "cc":"LU", - "country":"Luxembourg", - "admin1":"Luxembourg", - "geo":"geoname", - "geonameid":2960316 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:50", - "date":"2021-02-26T17:50:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:58", - "date":"2021-02-27T18:58:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Riga February 2021", - "date":"2021-02-26T21:25:57.967Z", - "location":{ - "title":"Riga, Latvia", - "city":"Riga", - "tzid":"Europe/Riga", - "latitude":56.946, - "longitude":24.10589, - "cc":"LV", - "country":"Latvia", - "admin1":"Riga", - "geo":"geoname", - "geonameid":456172 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:25", - "date":"2021-02-26T17:25:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:43", - "date":"2021-02-27T18:43:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tripoli February 2021", - "date":"2021-02-26T21:25:58.414Z", - "location":{ - "title":"Tripoli, Libya", - "city":"Tripoli", - "tzid":"Africa/Tripoli", - "latitude":32.88743, - "longitude":13.18733, - "cc":"LY", - "country":"Libya", - "admin1":"Tripoli", - "geo":"geoname", - "geonameid":2210247 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:41", - "date":"2021-02-26T18:41:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:37", - "date":"2021-02-27T19:37:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Casablanca February 2021", - "date":"2021-02-26T21:25:58.908Z", - "location":{ - "title":"Casablanca, Morocco", - "city":"Casablanca", - "tzid":"Africa/Casablanca", - "latitude":33.58831, - "longitude":-7.61138, - "cc":"MA", - "country":"Morocco", - "admin1":"Casablanca-Settat", - "geo":"geoname", - "geonameid":2553604 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:04", - "date":"2021-02-26T19:04:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 20:00", - "date":"2021-02-27T20:00:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Rabat February 2021", - "date":"2021-02-26T21:25:59.371Z", - "location":{ - "title":"Rabat, Morocco", - "city":"Rabat", - "tzid":"Africa/Casablanca", - "latitude":34.01325, - "longitude":-6.83255, - "cc":"MA", - "country":"Morocco", - "admin1":"Rabat-Sale-Kenitra", - "geo":"geoname", - "geonameid":2538475 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:00", - "date":"2021-02-26T19:00:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:57", - "date":"2021-02-27T19:57:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Chisinau February 2021", - "date":"2021-02-26T21:25:59.826Z", - "location":{ - "title":"Chisinau, Moldova", - "city":"Chisinau", - "tzid":"Europe/Chisinau", - "latitude":47.00556, - "longitude":28.8575, - "cc":"MD", - "country":"Moldova", - "admin1":"Chisinau Municipality", - "geo":"geoname", - "geonameid":618426 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:23", - "date":"2021-02-26T17:23:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:28", - "date":"2021-02-27T18:28:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Podgorica February 2021", - "date":"2021-02-26T21:26:00.283Z", - "location":{ - "title":"Podgorica, Montenegro", - "city":"Podgorica", - "tzid":"Europe/Podgorica", - "latitude":42.44111, - "longitude":19.26361, - "cc":"ME", - "country":"Montenegro", - "admin1":"Podgorica", - "geo":"geoname", - "geonameid":3193044 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:07", - "date":"2021-02-26T17:07:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:09", - "date":"2021-02-27T18:09:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Antananarivo February 2021", - "date":"2021-02-26T21:26:00.751Z", - "location":{ - "title":"Antananarivo, Analamanga, Madagascar", - "city":"Antananarivo", - "tzid":"Indian/Antananarivo", - "latitude":-18.91368, - "longitude":47.53613, - "cc":"MG", - "country":"Madagascar", - "admin1":"Analamanga", - "geo":"geoname", - "geonameid":1070940 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:02", - "date":"2021-02-26T18:02:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:52", - "date":"2021-02-27T18:52:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Skopje February 2021", - "date":"2021-02-26T21:26:01.209Z", - "location":{ - "title":"Skopje, Grad Skopje, North Macedonia", - "city":"Skopje", - "tzid":"Europe/Skopje", - "latitude":41.99646, - "longitude":21.43141, - "cc":"MK", - "country":"Macedonia", - "admin1":"Grad Skopje", - "geo":"geoname", - "geonameid":785842 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 16:59", - "date":"2021-02-26T16:59:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:00", - "date":"2021-02-27T18:00:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bamako February 2021", - "date":"2021-02-26T21:26:01.673Z", - "location":{ - "title":"Bamako, Mali", - "city":"Bamako", - "tzid":"Africa/Bamako", - "latitude":12.65, - "longitude":-8, - "cc":"ML", - "country":"Mali", - "admin1":"Bamako", - "geo":"geoname", - "geonameid":2460596 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:22", - "date":"2021-02-26T18:22:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:12", - "date":"2021-02-27T19:12:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Mandalay February 2021", - "date":"2021-02-26T21:26:02.141Z", - "location":{ - "title":"Mandalay, Myanmar", - "city":"Mandalay", - "tzid":"Asia/Yangon", - "latitude":21.97473, - "longitude":96.08359, - "cc":"MM", - "country":"Myanmar", - "admin1":"Mandalay", - "geo":"geoname", - "geonameid":1311874 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:48", - "date":"2021-02-26T17:48:00+06:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:41", - "date":"2021-02-27T18:41:00+06:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Yangon February 2021", - "date":"2021-02-26T21:26:02.606Z", - "location":{ - "title":"Yangon, Rangoon, Myanmar", - "city":"Yangon", - "tzid":"Asia/Yangon", - "latitude":16.80528, - "longitude":96.15611, - "cc":"MM", - "country":"Myanmar", - "admin1":"Rangoon", - "geo":"geoname", - "geonameid":1298824 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:52", - "date":"2021-02-26T17:52:00+06:30", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:43", - "date":"2021-02-27T18:43:00+06:30", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ulan Bator February 2021", - "date":"2021-02-26T21:26:03.062Z", - "location":{ - "title":"Ulan Bator, Ulaanbaatar, Mongolia", - "city":"Ulan Bator", - "tzid":"Asia/Ulaanbaatar", - "latitude":47.90771, - "longitude":106.88324, - "cc":"MN", - "country":"Mongolia", - "admin1":"Ulaanbaatar", - "geo":"geoname", - "geonameid":2028462 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:09", - "date":"2021-02-26T18:09:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:15", - "date":"2021-02-27T19:15:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Saipan February 2021", - "date":"2021-02-26T21:26:03.531Z", - "location":{ - "title":"Saipan, Northern Mariana Islands", - "city":"Saipan", - "tzid":"Pacific/Saipan", - "latitude":15.21233, - "longitude":145.7545, - "cc":"MP", - "country":"Northern Mariana Islands", - "admin1":"Saipan", - "geo":"geoname", - "geonameid":7828758 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:05", - "date":"2021-02-26T18:05:00+10:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:56", - "date":"2021-02-27T18:56:00+10:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nouakchott February 2021", - "date":"2021-02-26T21:26:04.068Z", - "location":{ - "title":"Nouakchott, Mauritania", - "city":"Nouakchott", - "tzid":"Africa/Nouakchott", - "latitude":18.08581, - "longitude":-15.9785, - "cc":"MR", - "country":"Mauritania", - "geo":"geoname", - "geonameid":2377450 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:50", - "date":"2021-02-26T18:50:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:41", - "date":"2021-02-27T19:41:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Plymouth February 2021", - "date":"2021-02-26T21:26:04.572Z", - "location":{ - "title":"Plymouth, Saint Anthony, Montserrat", - "city":"Plymouth", - "tzid":"America/Montserrat", - "latitude":16.70555, - "longitude":-62.21292, - "cc":"MS", - "country":"Montserrat", - "admin1":"Saint Anthony", - "geo":"geoname", - "geonameid":3578069 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:56", - "date":"2021-02-26T17:56:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:47", - "date":"2021-02-27T18:47:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Valletta February 2021", - "date":"2021-02-26T21:26:05.068Z", - "location":{ - "title":"Valletta, Malta", - "city":"Valletta", - "tzid":"Europe/Malta", - "latitude":35.89968, - "longitude":14.5148, - "cc":"MT", - "country":"Malta", - "admin1":"Valletta", - "geo":"geoname", - "geonameid":2562305 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:33", - "date":"2021-02-26T17:33:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:31", - "date":"2021-02-27T18:31:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Port Louis February 2021", - "date":"2021-02-26T21:26:05.568Z", - "location":{ - "title":"Port Louis, Mauritius", - "city":"Port Louis", - "tzid":"Indian/Mauritius", - "latitude":-20.16194, - "longitude":57.49889, - "cc":"MU", - "country":"Mauritius", - "admin1":"Port Louis", - "geo":"geoname", - "geonameid":934154 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:23", - "date":"2021-02-26T18:23:00+04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:14", - "date":"2021-02-27T19:14:00+04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Lilongwe February 2021", - "date":"2021-02-26T21:26:06.050Z", - "location":{ - "title":"Lilongwe, Central Region, Malawi", - "city":"Lilongwe", - "tzid":"Africa/Blantyre", - "latitude":-13.96692, - "longitude":33.78725, - "cc":"MW", - "country":"Malawi", - "admin1":"Central Region", - "geo":"geoname", - "geonameid":927967 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:53", - "date":"2021-02-26T17:53:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:43", - "date":"2021-02-27T18:43:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Cancún February 2021", - "date":"2021-02-26T21:26:06.531Z", - "location":{ - "title":"Cancún, Quintana Roo, Mexico", - "city":"Cancún", - "tzid":"America/Cancun", - "latitude":21.17429, - "longitude":-86.84656, - "cc":"MX", - "country":"Mexico", - "admin1":"Quintana Roo", - "asciiname":"Cancun", - "geo":"geoname", - "geonameid":3531673 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:31", - "date":"2021-02-26T18:31:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:23", - "date":"2021-02-27T19:23:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Guadalajara February 2021", - "date":"2021-02-26T21:26:07.005Z", - "location":{ - "title":"Guadalajara, Jalisco, Mexico", - "city":"Guadalajara", - "tzid":"America/Mexico_City", - "latitude":20.66682, - "longitude":-103.39182, - "cc":"MX", - "country":"Mexico", - "admin1":"Jalisco", - "geo":"geoname", - "geonameid":4005539 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:38", - "date":"2021-02-26T18:38:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:30", - "date":"2021-02-27T19:30:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Iztapalapa February 2021", - "date":"2021-02-26T21:26:07.480Z", - "location":{ - "title":"Iztapalapa, Mexico City, Mexico", - "city":"Iztapalapa", - "tzid":"America/Mexico_City", - "latitude":19.35529, - "longitude":-99.06224, - "cc":"MX", - "country":"Mexico", - "admin1":"Mexico City", - "geo":"geoname", - "geonameid":3526683 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:21", - "date":"2021-02-26T18:21:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:13", - "date":"2021-02-27T19:13:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Mazatlán February 2021", - "date":"2021-02-26T21:26:07.957Z", - "location":{ - "title":"Mazatlán, Sinaloa, Mexico", - "city":"Mazatlán", - "tzid":"America/Mazatlan", - "latitude":23.2329, - "longitude":-106.4062, - "cc":"MX", - "country":"Mexico", - "admin1":"Sinaloa", - "asciiname":"Mazatlan", - "geo":"geoname", - "geonameid":3996322 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:48", - "date":"2021-02-26T17:48:00-07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:40", - "date":"2021-02-27T18:40:00-07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Mexico City February 2021", - "date":"2021-02-26T21:26:08.448Z", - "location":{ - "title":"Mexico City, Mexico", - "city":"Mexico City", - "tzid":"America/Mexico_City", - "latitude":19.42847, - "longitude":-99.12766, - "cc":"MX", - "country":"Mexico", - "admin1":"Mexico City", - "geo":"geoname", - "geonameid":3530597 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:21", - "date":"2021-02-26T18:21:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:13", - "date":"2021-02-27T19:13:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Monterrey February 2021", - "date":"2021-02-26T21:26:08.915Z", - "location":{ - "title":"Monterrey, Nuevo Leon, Mexico", - "city":"Monterrey", - "tzid":"America/Monterrey", - "latitude":25.67507, - "longitude":-100.31847, - "cc":"MX", - "country":"Mexico", - "admin1":"Nuevo Leon", - "geo":"geoname", - "geonameid":3995465 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:21", - "date":"2021-02-26T18:21:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:15", - "date":"2021-02-27T19:15:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Puerto Vallarta February 2021", - "date":"2021-02-26T21:26:09.467Z", - "location":{ - "title":"Puerto Vallarta, Jalisco, Mexico", - "city":"Puerto Vallarta", - "tzid":"America/Mexico_City", - "latitude":20.617, - "longitude":-105.23018, - "cc":"MX", - "country":"Mexico", - "admin1":"Jalisco", - "geo":"geoname", - "geonameid":3991328 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:45", - "date":"2021-02-26T18:45:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:37", - "date":"2021-02-27T19:37:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tijuana February 2021", - "date":"2021-02-26T21:26:09.961Z", - "location":{ - "title":"Tijuana, Baja California, Mexico", - "city":"Tijuana", - "tzid":"America/Tijuana", - "latitude":32.5027, - "longitude":-117.00371, - "cc":"MX", - "country":"Mexico", - "admin1":"Baja California", - "geo":"geoname", - "geonameid":3981609 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:22", - "date":"2021-02-26T17:22:00-08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:19", - "date":"2021-02-27T18:19:00-08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kota Bharu February 2021", - "date":"2021-02-26T21:26:10.452Z", - "location":{ - "title":"Kota Bharu, Kelantan, Malaysia", - "city":"Kota Bharu", - "tzid":"Asia/Kuala_Lumpur", - "latitude":6.12361, - "longitude":102.24333, - "cc":"MY", - "country":"Malaysia", - "admin1":"Kelantan", - "geo":"geoname", - "geonameid":1736376 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:05", - "date":"2021-02-26T19:05:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:55", - "date":"2021-02-27T19:55:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kuala Lumpur February 2021", - "date":"2021-02-26T21:26:10.946Z", - "location":{ - "title":"Kuala Lumpur, Malaysia", - "city":"Kuala Lumpur", - "tzid":"Asia/Kuala_Lumpur", - "latitude":3.1412, - "longitude":101.68653, - "cc":"MY", - "country":"Malaysia", - "admin1":"Kuala Lumpur", - "geo":"geoname", - "geonameid":1735161 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:09", - "date":"2021-02-26T19:09:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:59", - "date":"2021-02-27T19:59:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Maputo February 2021", - "date":"2021-02-26T21:26:11.433Z", - "location":{ - "title":"Maputo, Mozambique", - "city":"Maputo", - "tzid":"Africa/Maputo", - "latitude":-25.96553, - "longitude":32.58322, - "cc":"MZ", - "country":"Mozambique", - "admin1":"Maputo City", - "geo":"geoname", - "geonameid":1040652 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:07", - "date":"2021-02-26T18:07:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:00", - "date":"2021-02-27T19:00:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Windhoek February 2021", - "date":"2021-02-26T21:26:11.894Z", - "location":{ - "title":"Windhoek, Khomas, Namibia", - "city":"Windhoek", - "tzid":"Africa/Windhoek", - "latitude":-22.55941, - "longitude":17.08323, - "cc":"NA", - "country":"Namibia", - "admin1":"Khomas", - "geo":"geoname", - "geonameid":3352136 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:06", - "date":"2021-02-26T19:06:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:58", - "date":"2021-02-27T19:58:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Nouméa February 2021", - "date":"2021-02-26T21:26:12.361Z", - "location":{ - "title":"Nouméa, South Province, New Caledonia", - "city":"Nouméa", - "tzid":"Pacific/Noumea", - "latitude":-22.27407, - "longitude":166.44884, - "cc":"NC", - "country":"New Caledonia", - "admin1":"South Province", - "asciiname":"Noumea", - "geo":"geoname", - "geonameid":2139521 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:09", - "date":"2021-02-26T18:09:00+11:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:00", - "date":"2021-02-27T19:00:00+11:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Niamey February 2021", - "date":"2021-02-26T21:26:12.835Z", - "location":{ - "title":"Niamey, Niger", - "city":"Niamey", - "tzid":"Africa/Niamey", - "latitude":13.51366, - "longitude":2.1098, - "cc":"NE", - "country":"Niger", - "admin1":"Niamey", - "geo":"geoname", - "geonameid":2440485 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:41", - "date":"2021-02-26T18:41:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:31", - "date":"2021-02-27T19:31:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Abuja February 2021", - "date":"2021-02-26T21:26:13.314Z", - "location":{ - "title":"Abuja, FCT, Nigeria", - "city":"Abuja", - "tzid":"Africa/Lagos", - "latitude":9.05785, - "longitude":7.49508, - "cc":"NG", - "country":"Nigeria", - "admin1":"FCT", - "geo":"geoname", - "geonameid":2352778 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:22", - "date":"2021-02-26T18:22:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:12", - "date":"2021-02-27T19:12:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Lagos February 2021", - "date":"2021-02-26T21:26:13.834Z", - "location":{ - "title":"Lagos, Nigeria", - "city":"Lagos", - "tzid":"Africa/Lagos", - "latitude":6.45407, - "longitude":3.39467, - "cc":"NG", - "country":"Nigeria", - "admin1":"Lagos", - "geo":"geoname", - "geonameid":2332459 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:40", - "date":"2021-02-26T18:40:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:30", - "date":"2021-02-27T19:30:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Managua February 2021", - "date":"2021-02-26T21:26:14.331Z", - "location":{ - "title":"Managua, Nicaragua", - "city":"Managua", - "tzid":"America/Managua", - "latitude":12.13282, - "longitude":-86.2504, - "cc":"NI", - "country":"Nicaragua", - "admin1":"Managua", - "geo":"geoname", - "geonameid":3617763 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:35", - "date":"2021-02-26T17:35:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:25", - "date":"2021-02-27T18:25:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Amsterdam February 2021", - "date":"2021-02-26T21:26:15.180Z", - "location":{ - "title":"Amsterdam, North Holland, Netherlands", - "city":"Amsterdam", - "tzid":"Europe/Amsterdam", - "latitude":52.37403, - "longitude":4.88969, - "cc":"NL", - "country":"Netherlands", - "admin1":"North Holland", - "geo":"geoname", - "geonameid":2759794 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:50", - "date":"2021-02-26T17:50:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:02", - "date":"2021-02-27T19:02:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Oslo February 2021", - "date":"2021-02-26T21:26:15.650Z", - "location":{ - "title":"Oslo, Norway", - "city":"Oslo", - "tzid":"Europe/Oslo", - "latitude":59.91273, - "longitude":10.74609, - "cc":"NO", - "country":"Norway", - "admin1":"Oslo", - "geo":"geoname", - "geonameid":3143244 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:11", - "date":"2021-02-26T17:11:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:35", - "date":"2021-02-27T18:35:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kathmandu February 2021", - "date":"2021-02-26T21:26:16.113Z", - "location":{ - "title":"Kathmandu, Province 3, Nepal", - "city":"Kathmandu", - "tzid":"Asia/Kathmandu", - "latitude":27.70169, - "longitude":85.3206, - "cc":"NP", - "country":"Nepal", - "admin1":"Province 3", - "geo":"geoname", - "geonameid":1283240 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 5:42pm", - "date":"2021-02-26T17:42:00+05:45", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:36pm", - "date":"2021-02-27T18:36:00+05:45", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Alofi February 2021", - "date":"2021-02-26T21:26:16.565Z", - "location":{ - "title":"Alofi, Niue", - "city":"Alofi", - "tzid":"Pacific/Niue", - "latitude":-19.05451, - "longitude":-169.91768, - "cc":"NU", - "country":"Niue", - "geo":"geoname", - "geonameid":4036284 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:31", - "date":"2021-02-26T18:31:00-11:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:22", - "date":"2021-02-27T19:22:00-11:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Auckland February 2021", - "date":"2021-02-26T21:26:17.064Z", - "location":{ - "title":"Auckland, New Zealand", - "city":"Auckland", - "tzid":"Pacific/Auckland", - "latitude":-36.84853, - "longitude":174.76349, - "cc":"NZ", - "country":"New Zealand", - "admin1":"Auckland", - "geo":"geoname", - "geonameid":2193733 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 7:50pm", - "date":"2021-02-26T19:50:00+13:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 8:46pm", - "date":"2021-02-27T20:46:00+13:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Christchurch February 2021", - "date":"2021-02-26T21:26:17.526Z", - "location":{ - "title":"Christchurch, Canterbury, New Zealand", - "city":"Christchurch", - "tzid":"Pacific/Auckland", - "latitude":-43.53333, - "longitude":172.63333, - "cc":"NZ", - "country":"New Zealand", - "admin1":"Canterbury", - "geo":"geoname", - "geonameid":2192362 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 8:06pm", - "date":"2021-02-26T20:06:00+13:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 9:08pm", - "date":"2021-02-27T21:08:00+13:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Wellington February 2021", - "date":"2021-02-26T21:26:18.029Z", - "location":{ - "title":"Wellington, New Zealand", - "city":"Wellington", - "tzid":"Pacific/Auckland", - "latitude":-41.28664, - "longitude":174.77557, - "cc":"NZ", - "country":"New Zealand", - "admin1":"Wellington", - "geo":"geoname", - "geonameid":2179537 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 7:55pm", - "date":"2021-02-26T19:55:00+13:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 8:55pm", - "date":"2021-02-27T20:55:00+13:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Muscat February 2021", - "date":"2021-02-26T21:26:18.495Z", - "location":{ - "title":"Muscat, Oman", - "city":"Muscat", - "tzid":"Asia/Muscat", - "latitude":23.58413, - "longitude":58.40778, - "cc":"OM", - "country":"Oman", - "admin1":"Muscat", - "geo":"geoname", - "geonameid":287286 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:48", - "date":"2021-02-26T17:48:00+04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:41", - "date":"2021-02-27T18:41:00+04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Panamá February 2021", - "date":"2021-02-26T21:26:18.963Z", - "location":{ - "title":"Panamá, Panama, Panama", - "city":"Panamá", - "tzid":"America/Panama", - "latitude":8.9936, - "longitude":-79.51973, - "cc":"PA", - "country":"Panama", - "admin1":"Panama", - "asciiname":"Panama", - "geo":"geoname", - "geonameid":3703443 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:10", - "date":"2021-02-26T18:10:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:00", - "date":"2021-02-27T19:00:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Lima February 2021", - "date":"2021-02-26T21:26:19.433Z", - "location":{ - "title":"Lima, Peru", - "city":"Lima", - "tzid":"America/Lima", - "latitude":-12.04318, - "longitude":-77.02824, - "cc":"PE", - "country":"Peru", - "admin1":"Lima", - "geo":"geoname", - "geonameid":3936456 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:14", - "date":"2021-02-26T18:14:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:04", - "date":"2021-02-27T19:04:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Papeete February 2021", - "date":"2021-02-26T21:26:19.900Z", - "location":{ - "title":"Papeete, Iles du Vent, French Polynesia", - "city":"Papeete", - "tzid":"Pacific/Tahiti", - "latitude":-17.53733, - "longitude":-149.5665, - "cc":"PF", - "country":"French Polynesia", - "admin1":"Iles du Vent", - "geo":"geoname", - "geonameid":4033936 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:09", - "date":"2021-02-26T18:09:00-10:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:59", - "date":"2021-02-27T18:59:00-10:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Port Moresby February 2021", - "date":"2021-02-26T21:26:20.574Z", - "location":{ - "title":"Port Moresby, National Capital, Papua New Guinea", - "city":"Port Moresby", - "tzid":"Pacific/Port_Moresby", - "latitude":-9.47723, - "longitude":147.15089, - "cc":"PG", - "country":"Papua New Guinea", - "admin1":"National Capital", - "geo":"geoname", - "geonameid":2088122 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:16", - "date":"2021-02-26T18:16:00+10:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:06", - "date":"2021-02-27T19:06:00+10:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Manila February 2021", - "date":"2021-02-26T21:26:21.026Z", - "location":{ - "title":"Manila, Metro Manila, Philippines", - "city":"Manila", - "tzid":"Asia/Manila", - "latitude":14.6042, - "longitude":120.9822, - "cc":"PH", - "country":"Philippines", - "admin1":"Metro Manila", - "geo":"geoname", - "geonameid":1701668 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:44", - "date":"2021-02-26T17:44:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:35", - "date":"2021-02-27T18:35:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Islamabad February 2021", - "date":"2021-02-26T21:26:21.501Z", - "location":{ - "title":"Islamabad, Pakistan", - "city":"Islamabad", - "tzid":"Asia/Karachi", - "latitude":33.72148, - "longitude":73.04329, - "cc":"PK", - "country":"Pakistan", - "admin1":"Islamabad", - "geo":"geoname", - "geonameid":1176615 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:41", - "date":"2021-02-26T17:41:00+05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:37", - "date":"2021-02-27T18:37:00+05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Karachi February 2021", - "date":"2021-02-26T21:26:21.963Z", - "location":{ - "title":"Karachi, Sindh, Pakistan", - "city":"Karachi", - "tzid":"Asia/Karachi", - "latitude":24.8608, - "longitude":67.0104, - "cc":"PK", - "country":"Pakistan", - "admin1":"Sindh", - "geo":"geoname", - "geonameid":1174872 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:12", - "date":"2021-02-26T18:12:00+05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:06", - "date":"2021-02-27T19:06:00+05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Warsaw February 2021", - "date":"2021-02-26T21:26:22.418Z", - "location":{ - "title":"Warsaw, Mazovia, Poland", - "city":"Warsaw", - "tzid":"Europe/Warsaw", - "latitude":52.22977, - "longitude":21.01178, - "cc":"PL", - "country":"Poland", - "admin1":"Mazovia", - "geo":"geoname", - "geonameid":756135 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 16:46", - "date":"2021-02-26T16:46:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 17:57", - "date":"2021-02-27T17:57:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal San Juan February 2021", - "date":"2021-02-26T21:26:22.870Z", - "location":{ - "title":"San Juan, Puerto Rico", - "city":"San Juan", - "tzid":"America/Puerto_Rico", - "latitude":18.46633, - "longitude":-66.10572, - "cc":"PR", - "country":"Puerto Rico", - "admin1":"San Juan", - "geo":"geoname", - "geonameid":4568127 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:10pm", - "date":"2021-02-26T18:10:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:01pm", - "date":"2021-02-27T19:01:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Lisbon February 2021", - "date":"2021-02-26T21:26:23.333Z", - "location":{ - "title":"Lisbon, Portugal", - "city":"Lisbon", - "tzid":"Europe/Lisbon", - "latitude":38.71667, - "longitude":-9.13333, - "cc":"PT", - "country":"Portugal", - "admin1":"Lisbon", - "geo":"geoname", - "geonameid":2267057 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:05", - "date":"2021-02-26T18:05:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:04", - "date":"2021-02-27T19:04:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Asunción February 2021", - "date":"2021-02-26T21:26:23.812Z", - "location":{ - "title":"Asunción, Asuncion, Paraguay", - "city":"Asunción", - "tzid":"America/Asuncion", - "latitude":-25.28646, - "longitude":-57.647, - "cc":"PY", - "country":"Paraguay", - "admin1":"Asuncion", - "asciiname":"Asuncion", - "geo":"geoname", - "geonameid":3439389 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:07", - "date":"2021-02-26T19:07:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 20:00", - "date":"2021-02-27T20:00:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Doha February 2021", - "date":"2021-02-26T21:26:24.266Z", - "location":{ - "title":"Doha, Baladiyat ad Dawhah, Qatar", - "city":"Doha", - "tzid":"Asia/Qatar", - "latitude":25.28545, - "longitude":51.53096, - "cc":"QA", - "country":"Qatar", - "admin1":"Baladiyat ad Dawhah", - "geo":"geoname", - "geonameid":290030 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:14", - "date":"2021-02-26T17:14:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:07", - "date":"2021-02-27T18:07:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bucharest February 2021", - "date":"2021-02-26T21:26:24.722Z", - "location":{ - "title":"Bucharest, Bucuresti, Romania", - "city":"Bucharest", - "tzid":"Europe/Bucharest", - "latitude":44.43225, - "longitude":26.10626, - "cc":"RO", - "country":"Romania", - "admin1":"Bucuresti", - "geo":"geoname", - "geonameid":683506 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:37", - "date":"2021-02-26T17:37:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:40", - "date":"2021-02-27T18:40:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Belgrade February 2021", - "date":"2021-02-26T21:26:25.180Z", - "location":{ - "title":"Belgrade, Central Serbia, Serbia", - "city":"Belgrade", - "tzid":"Europe/Belgrade", - "latitude":44.80401, - "longitude":20.46513, - "cc":"RS", - "country":"Serbia", - "admin1":"Central Serbia", - "geo":"geoname", - "geonameid":792680 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 16:59", - "date":"2021-02-26T16:59:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:03", - "date":"2021-02-27T18:03:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Moscow February 2021", - "date":"2021-02-26T21:26:25.653Z", - "location":{ - "title":"Moscow, Russia", - "city":"Moscow", - "tzid":"Europe/Moscow", - "latitude":55.75222, - "longitude":37.61556, - "cc":"RU", - "country":"Russia", - "admin1":"Moscow", - "geo":"geoname", - "geonameid":524901 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:33", - "date":"2021-02-26T17:33:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:49", - "date":"2021-02-27T18:49:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Novosibirsk February 2021", - "date":"2021-02-26T21:26:26.117Z", - "location":{ - "title":"Novosibirsk, Russia", - "city":"Novosibirsk", - "tzid":"Asia/Novosibirsk", - "latitude":55.0415, - "longitude":82.9346, - "cc":"RU", - "country":"Russia", - "admin1":"Novosibirsk Oblast", - "geo":"geoname", - "geonameid":1496747 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:33", - "date":"2021-02-26T18:33:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:48", - "date":"2021-02-27T19:48:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Saint Petersburg February 2021", - "date":"2021-02-26T21:26:26.561Z", - "location":{ - "title":"Saint Petersburg, St.-Petersburg, Russia", - "city":"Saint Petersburg", - "tzid":"Europe/Moscow", - "latitude":59.93863, - "longitude":30.31413, - "cc":"RU", - "country":"Russia", - "admin1":"St.-Petersburg", - "geo":"geoname", - "geonameid":498817 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:53", - "date":"2021-02-26T17:53:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:16", - "date":"2021-02-27T19:16:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Yekaterinburg February 2021", - "date":"2021-02-26T21:26:27.025Z", - "location":{ - "title":"Yekaterinburg, Sverdlovsk, Russia", - "city":"Yekaterinburg", - "tzid":"Asia/Yekaterinburg", - "latitude":56.8519, - "longitude":60.6122, - "cc":"RU", - "country":"Russia", - "admin1":"Sverdlovsk", - "geo":"geoname", - "geonameid":1486209 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:59", - "date":"2021-02-26T17:59:00+05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:16", - "date":"2021-02-27T19:16:00+05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kigali February 2021", - "date":"2021-02-26T21:26:27.493Z", - "location":{ - "title":"Kigali, Rwanda", - "city":"Kigali", - "tzid":"Africa/Kigali", - "latitude":-1.94995, - "longitude":30.05885, - "cc":"RW", - "country":"Rwanda", - "admin1":"Kigali", - "geo":"geoname", - "geonameid":202061 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:59", - "date":"2021-02-26T17:59:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:49", - "date":"2021-02-27T18:49:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Jeddah February 2021", - "date":"2021-02-26T21:26:27.948Z", - "location":{ - "title":"Jeddah, Mecca Region, Saudi Arabia", - "city":"Jeddah", - "tzid":"Asia/Riyadh", - "latitude":21.49012, - "longitude":39.18624, - "cc":"SA", - "country":"Saudi Arabia", - "admin1":"Mecca Region", - "geo":"geoname", - "geonameid":105343 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:06", - "date":"2021-02-26T18:06:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:59", - "date":"2021-02-27T18:59:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Mecca February 2021", - "date":"2021-02-26T21:26:28.415Z", - "location":{ - "title":"Mecca, Saudi Arabia", - "city":"Mecca", - "tzid":"Asia/Riyadh", - "latitude":21.42664, - "longitude":39.82563, - "cc":"SA", - "country":"Saudi Arabia", - "admin1":"Mecca Region", - "geo":"geoname", - "geonameid":104515 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:04", - "date":"2021-02-26T18:04:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:56", - "date":"2021-02-27T18:56:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Medina February 2021", - "date":"2021-02-26T21:26:28.870Z", - "location":{ - "title":"Medina, Saudi Arabia", - "city":"Medina", - "tzid":"Asia/Riyadh", - "latitude":24.46861, - "longitude":39.61417, - "cc":"SA", - "country":"Saudi Arabia", - "admin1":"Medina Region", - "geo":"geoname", - "geonameid":109223 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:02", - "date":"2021-02-26T18:02:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:55", - "date":"2021-02-27T18:55:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Riyadh February 2021", - "date":"2021-02-26T21:26:29.335Z", - "location":{ - "title":"Riyadh, Saudi Arabia", - "city":"Riyadh", - "tzid":"Asia/Riyadh", - "latitude":24.68773, - "longitude":46.72185, - "cc":"SA", - "country":"Saudi Arabia", - "admin1":"Riyadh Region", - "geo":"geoname", - "geonameid":108410 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:34", - "date":"2021-02-26T17:34:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:27", - "date":"2021-02-27T18:27:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Honiara February 2021", - "date":"2021-02-26T21:26:29.787Z", - "location":{ - "title":"Honiara, Solomon Islands", - "city":"Honiara", - "tzid":"Pacific/Guadalcanal", - "latitude":-9.43333, - "longitude":159.95, - "cc":"SB", - "country":"Solomon Islands", - "admin1":"Honiara", - "geo":"geoname", - "geonameid":2108502 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:25", - "date":"2021-02-26T18:25:00+11:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:15", - "date":"2021-02-27T19:15:00+11:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Victoria February 2021", - "date":"2021-02-26T21:26:30.244Z", - "location":{ - "title":"Victoria, English River, Seychelles", - "city":"Victoria", - "tzid":"Indian/Mahe", - "latitude":-4.62001, - "longitude":55.45501, - "cc":"SC", - "country":"Seychelles", - "admin1":"English River", - "geo":"geoname", - "geonameid":241131 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:20", - "date":"2021-02-26T18:20:00+04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:09", - "date":"2021-02-27T19:09:00+04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Khartoum February 2021", - "date":"2021-02-26T21:26:30.747Z", - "location":{ - "title":"Khartoum, Sudan", - "city":"Khartoum", - "tzid":"Africa/Khartoum", - "latitude":15.55177, - "longitude":32.53241, - "cc":"SD", - "country":"Sudan", - "admin1":"Khartoum", - "geo":"geoname", - "geonameid":379252 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:37", - "date":"2021-02-26T17:37:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:28", - "date":"2021-02-27T18:28:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Omdurman February 2021", - "date":"2021-02-26T21:26:31.213Z", - "location":{ - "title":"Omdurman, Khartoum, Sudan", - "city":"Omdurman", - "tzid":"Africa/Khartoum", - "latitude":15.64453, - "longitude":32.47773, - "cc":"SD", - "country":"Sudan", - "admin1":"Khartoum", - "geo":"geoname", - "geonameid":365137 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:38", - "date":"2021-02-26T17:38:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:29", - "date":"2021-02-27T18:29:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Stockholm February 2021", - "date":"2021-02-26T21:26:31.671Z", - "location":{ - "title":"Stockholm, Sweden", - "city":"Stockholm", - "tzid":"Europe/Stockholm", - "latitude":59.32938, - "longitude":18.06871, - "cc":"SE", - "country":"Sweden", - "admin1":"Stockholm", - "geo":"geoname", - "geonameid":2673730 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 16:43", - "date":"2021-02-26T16:43:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:06", - "date":"2021-02-27T18:06:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Singapore February 2021", - "date":"2021-02-26T21:26:32.208Z", - "location":{ - "title":"Singapore, Singapore", - "city":"Singapore", - "tzid":"Asia/Singapore", - "latitude":1.28967, - "longitude":103.85007, - "cc":"SG", - "country":"Singapore", - "geo":"geoname", - "geonameid":1880252 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:02", - "date":"2021-02-26T19:02:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:51", - "date":"2021-02-27T19:51:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Jamestown February 2021", - "date":"2021-02-26T21:26:32.677Z", - "location":{ - "title":"Jamestown, Saint Helena, Saint Helena", - "city":"Jamestown", - "tzid":"Atlantic/St_Helena", - "latitude":-15.93872, - "longitude":-5.71675, - "cc":"SH", - "country":"Saint Helena", - "admin1":"Saint Helena", - "geo":"geoname", - "geonameid":3370903 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:32", - "date":"2021-02-26T18:32:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:23", - "date":"2021-02-27T19:23:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ljubljana February 2021", - "date":"2021-02-26T21:26:33.151Z", - "location":{ - "title":"Ljubljana, Slovenia", - "city":"Ljubljana", - "tzid":"Europe/Ljubljana", - "latitude":46.05108, - "longitude":14.50513, - "cc":"SI", - "country":"Slovenia", - "admin1":"Ljubljana", - "geo":"geoname", - "geonameid":3196359 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:21", - "date":"2021-02-26T17:21:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:26", - "date":"2021-02-27T18:26:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bratislava February 2021", - "date":"2021-02-26T21:26:33.623Z", - "location":{ - "title":"Bratislava, Slovakia", - "city":"Bratislava", - "tzid":"Europe/Bratislava", - "latitude":48.14816, - "longitude":17.10674, - "cc":"SK", - "country":"Slovakia", - "admin1":"Bratislava", - "geo":"geoname", - "geonameid":3060972 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:08", - "date":"2021-02-26T17:08:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:15", - "date":"2021-02-27T18:15:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Freetown February 2021", - "date":"2021-02-26T21:26:34.091Z", - "location":{ - "title":"Freetown, Western Area, Sierra Leone", - "city":"Freetown", - "tzid":"Africa/Freetown", - "latitude":8.43194, - "longitude":-13.28972, - "cc":"SL", - "country":"Sierra Leone", - "admin1":"Western Area", - "geo":"geoname", - "geonameid":2408770 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:46", - "date":"2021-02-26T18:46:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:36", - "date":"2021-02-27T19:36:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Dakar February 2021", - "date":"2021-02-26T21:26:34.554Z", - "location":{ - "title":"Dakar, Senegal", - "city":"Dakar", - "tzid":"Africa/Dakar", - "latitude":14.6937, - "longitude":-17.44406, - "cc":"SN", - "country":"Senegal", - "admin1":"Dakar", - "geo":"geoname", - "geonameid":2253354 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:58", - "date":"2021-02-26T18:58:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:49", - "date":"2021-02-27T19:49:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Mogadishu February 2021", - "date":"2021-02-26T21:26:35.014Z", - "location":{ - "title":"Mogadishu, Banaadir, Somalia", - "city":"Mogadishu", - "tzid":"Africa/Mogadishu", - "latitude":2.03711, - "longitude":45.34375, - "cc":"SO", - "country":"Somalia", - "admin1":"Banaadir", - "geo":"geoname", - "geonameid":53654 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:55", - "date":"2021-02-26T17:55:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:45", - "date":"2021-02-27T18:45:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Paramaribo February 2021", - "date":"2021-02-26T21:26:35.469Z", - "location":{ - "title":"Paramaribo, Suriname", - "city":"Paramaribo", - "tzid":"America/Paramaribo", - "latitude":5.86638, - "longitude":-55.16682, - "cc":"SR", - "country":"Suriname", - "admin1":"Paramaribo", - "geo":"geoname", - "geonameid":3383330 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:35", - "date":"2021-02-26T18:35:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:25", - "date":"2021-02-27T19:25:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal São Tomé February 2021", - "date":"2021-02-26T21:26:35.919Z", - "location":{ - "title":"São Tomé, Sao Tome Island, Sao Tome and Principe", - "city":"São Tomé", - "tzid":"Africa/Sao_Tome", - "latitude":0.33654, - "longitude":6.72732, - "cc":"ST", - "country":"Sao Tome and Principe", - "admin1":"Sao Tome Island", - "asciiname":"Sao Tome", - "geo":"geoname", - "geonameid":2410763 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:31", - "date":"2021-02-26T17:31:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:20", - "date":"2021-02-27T18:20:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal San Salvador February 2021", - "date":"2021-02-26T21:26:36.374Z", - "location":{ - "title":"San Salvador, El Salvador", - "city":"San Salvador", - "tzid":"America/El_Salvador", - "latitude":13.68935, - "longitude":-89.18718, - "cc":"SV", - "country":"El Salvador", - "admin1":"San Salvador", - "geo":"geoname", - "geonameid":3583361 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:46", - "date":"2021-02-26T17:46:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:36", - "date":"2021-02-27T18:36:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Aleppo February 2021", - "date":"2021-02-26T21:26:36.845Z", - "location":{ - "title":"Aleppo, Syria", - "city":"Aleppo", - "tzid":"Asia/Damascus", - "latitude":36.20124, - "longitude":37.16117, - "cc":"SY", - "country":"Syria", - "admin1":"Aleppo", - "geo":"geoname", - "geonameid":170063 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:02", - "date":"2021-02-26T17:02:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:00", - "date":"2021-02-27T18:00:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Damascus February 2021", - "date":"2021-02-26T21:26:37.316Z", - "location":{ - "title":"Damascus, Dimashq, Syria", - "city":"Damascus", - "tzid":"Asia/Damascus", - "latitude":33.5102, - "longitude":36.29128, - "cc":"SY", - "country":"Syria", - "admin1":"Dimashq", - "geo":"geoname", - "geonameid":170654 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:08", - "date":"2021-02-26T17:08:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:05", - "date":"2021-02-27T18:05:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Mbabane February 2021", - "date":"2021-02-26T21:26:37.810Z", - "location":{ - "title":"Mbabane, Hhohho, Eswatini", - "city":"Mbabane", - "tzid":"Africa/Mbabane", - "latitude":-26.31667, - "longitude":31.13333, - "cc":"SZ", - "country":"Swaziland", - "admin1":"Hhohho", - "geo":"geoname", - "geonameid":934985 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:13", - "date":"2021-02-26T18:13:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:06", - "date":"2021-02-27T19:06:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Cockburn Town February 2021", - "date":"2021-02-26T21:26:38.274Z", - "location":{ - "title":"Cockburn Town, Turks and Caicos Islands", - "city":"Cockburn Town", - "tzid":"America/Grand_Turk", - "latitude":21.46122, - "longitude":-71.14188, - "cc":"TC", - "country":"Turks and Caicos Islands", - "geo":"geoname", - "geonameid":3576994 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:28", - "date":"2021-02-26T17:28:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:20", - "date":"2021-02-27T18:20:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal N'Djamena February 2021", - "date":"2021-02-26T21:26:38.741Z", - "location":{ - "title":"N'Djamena, Chad", - "city":"N'Djamena", - "tzid":"Africa/Ndjamena", - "latitude":12.10672, - "longitude":15.0444, - "cc":"TD", - "country":"Chad", - "admin1":"N'Djamena", - "geo":"geoname", - "geonameid":2427123 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:50", - "date":"2021-02-26T17:50:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:40", - "date":"2021-02-27T18:40:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Lomé February 2021", - "date":"2021-02-26T21:26:39.202Z", - "location":{ - "title":"Lomé, Maritime, Togo", - "city":"Lomé", - "tzid":"Africa/Lome", - "latitude":6.12874, - "longitude":1.22154, - "cc":"TG", - "country":"Togo", - "admin1":"Maritime", - "asciiname":"Lome", - "geo":"geoname", - "geonameid":2365267 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:49", - "date":"2021-02-26T17:49:00-00:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:39", - "date":"2021-02-27T18:39:00-00:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bangkok February 2021", - "date":"2021-02-26T21:26:39.662Z", - "location":{ - "title":"Bangkok, Thailand", - "city":"Bangkok", - "tzid":"Asia/Bangkok", - "latitude":13.75398, - "longitude":100.50144, - "cc":"TH", - "country":"Thailand", - "admin1":"Bangkok", - "geo":"geoname", - "geonameid":1609350 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:07", - "date":"2021-02-26T18:07:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:57", - "date":"2021-02-27T18:57:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Dushanbe February 2021", - "date":"2021-02-26T21:26:40.129Z", - "location":{ - "title":"Dushanbe, Tajikistan", - "city":"Dushanbe", - "tzid":"Asia/Dushanbe", - "latitude":38.53575, - "longitude":68.77905, - "cc":"TJ", - "country":"Tajikistan", - "admin1":"Dushanbe", - "geo":"geoname", - "geonameid":1221874 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:53", - "date":"2021-02-26T17:53:00+05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:52", - "date":"2021-02-27T18:52:00+05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ashgabat February 2021", - "date":"2021-02-26T21:26:40.591Z", - "location":{ - "title":"Ashgabat, Turkmenistan", - "city":"Ashgabat", - "tzid":"Asia/Ashgabat", - "latitude":37.95, - "longitude":58.38333, - "cc":"TM", - "country":"Turkmenistan", - "admin1":"Ashgabat", - "geo":"geoname", - "geonameid":162183 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:35", - "date":"2021-02-26T18:35:00+05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:34", - "date":"2021-02-27T19:34:00+05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tunis February 2021", - "date":"2021-02-26T21:26:41.099Z", - "location":{ - "title":"Tunis, Tunisia", - "city":"Tunis", - "tzid":"Africa/Tunis", - "latitude":36.81897, - "longitude":10.16579, - "cc":"TN", - "country":"Tunisia", - "admin1":"Tunis", - "geo":"geoname", - "geonameid":2464470 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:49", - "date":"2021-02-26T17:49:00+01:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:48", - "date":"2021-02-27T18:48:00+01:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Adana February 2021", - "date":"2021-02-26T21:26:41.583Z", - "location":{ - "title":"Adana, Turkey", - "city":"Adana", - "tzid":"Europe/Istanbul", - "latitude":36.98615, - "longitude":35.32531, - "cc":"TR", - "country":"Turkey", - "admin1":"Adana", - "geo":"geoname", - "geonameid":325363 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:09", - "date":"2021-02-26T18:09:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:07", - "date":"2021-02-27T19:07:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ankara February 2021", - "date":"2021-02-26T21:26:42.112Z", - "location":{ - "title":"Ankara, Turkey", - "city":"Ankara", - "tzid":"Europe/Istanbul", - "latitude":39.91987, - "longitude":32.85427, - "cc":"TR", - "country":"Turkey", - "admin1":"Ankara", - "geo":"geoname", - "geonameid":323786 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:15", - "date":"2021-02-26T18:15:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:15", - "date":"2021-02-27T19:15:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Bursa February 2021", - "date":"2021-02-26T21:26:42.603Z", - "location":{ - "title":"Bursa, Turkey", - "city":"Bursa", - "tzid":"Europe/Istanbul", - "latitude":40.19559, - "longitude":29.06013, - "cc":"TR", - "country":"Turkey", - "admin1":"Bursa", - "geo":"geoname", - "geonameid":750269 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:30", - "date":"2021-02-26T18:30:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:30", - "date":"2021-02-27T19:30:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Istanbul February 2021", - "date":"2021-02-26T21:26:43.085Z", - "location":{ - "title":"Istanbul, Turkey", - "city":"Istanbul", - "tzid":"Europe/Istanbul", - "latitude":41.01384, - "longitude":28.94966, - "cc":"TR", - "country":"Turkey", - "admin1":"Istanbul", - "geo":"geoname", - "geonameid":745044 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:30", - "date":"2021-02-26T18:30:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:31", - "date":"2021-02-27T19:31:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal İzmir February 2021", - "date":"2021-02-26T21:26:43.551Z", - "location":{ - "title":"İzmir, Izmir, Turkey", - "city":"İzmir", - "tzid":"Europe/Istanbul", - "latitude":38.41273, - "longitude":27.13838, - "cc":"TR", - "country":"Turkey", - "admin1":"Izmir", - "asciiname":"Izmir", - "geo":"geoname", - "geonameid":311046 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:40", - "date":"2021-02-26T18:40:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:39", - "date":"2021-02-27T19:39:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Funafuti February 2021", - "date":"2021-02-26T21:26:44.017Z", - "location":{ - "title":"Funafuti, Tuvalu", - "city":"Funafuti", - "tzid":"Pacific/Funafuti", - "latitude":-8.52425, - "longitude":179.19417, - "cc":"TV", - "country":"Tuvalu", - "admin1":"Funafuti", - "geo":"geoname", - "geonameid":2110394 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:07", - "date":"2021-02-26T18:07:00+12:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:57", - "date":"2021-02-27T18:57:00+12:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kaohsiung February 2021", - "date":"2021-02-26T21:26:44.469Z", - "location":{ - "title":"Kaohsiung, Takao, Taiwan", - "city":"Kaohsiung", - "tzid":"Asia/Taipei", - "latitude":22.61626, - "longitude":120.31333, - "cc":"TW", - "country":"Taiwan", - "admin1":"Takao", - "geo":"geoname", - "geonameid":1673820 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:41", - "date":"2021-02-26T17:41:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:34", - "date":"2021-02-27T18:34:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Taipei February 2021", - "date":"2021-02-26T21:26:44.967Z", - "location":{ - "title":"Taipei, Taiwan, Taiwan", - "city":"Taipei", - "tzid":"Asia/Taipei", - "latitude":25.04776, - "longitude":121.53185, - "cc":"TW", - "country":"Taiwan", - "admin1":"Taiwan", - "geo":"geoname", - "geonameid":1668341 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:34", - "date":"2021-02-26T17:34:00+08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:27", - "date":"2021-02-27T18:27:00+08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Dar es Salaam February 2021", - "date":"2021-02-26T21:26:45.456Z", - "location":{ - "title":"Dar es Salaam, Tanzania", - "city":"Dar es Salaam", - "tzid":"Africa/Dar_es_Salaam", - "latitude":-6.82349, - "longitude":39.26951, - "cc":"TZ", - "country":"Tanzania", - "admin1":"Dar es Salaam", - "geo":"geoname", - "geonameid":160263 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:26", - "date":"2021-02-26T18:26:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:15", - "date":"2021-02-27T19:15:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Dodoma February 2021", - "date":"2021-02-26T21:26:45.917Z", - "location":{ - "title":"Dodoma, Tanzania", - "city":"Dodoma", - "tzid":"Africa/Dar_es_Salaam", - "latitude":-6.17221, - "longitude":35.73947, - "cc":"TZ", - "country":"Tanzania", - "admin1":"Dodoma", - "geo":"geoname", - "geonameid":160196 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:39", - "date":"2021-02-26T18:39:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:29", - "date":"2021-02-27T19:29:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kharkiv February 2021", - "date":"2021-02-26T21:26:46.371Z", - "location":{ - "title":"Kharkiv, Ukraine", - "city":"Kharkiv", - "tzid":"Europe/Kiev", - "latitude":49.98081, - "longitude":36.25272, - "cc":"UA", - "country":"Ukraine", - "admin1":"Kharkiv", - "geo":"geoname", - "geonameid":706483 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 16:49", - "date":"2021-02-26T16:49:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 17:57", - "date":"2021-02-27T17:57:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kyiv February 2021", - "date":"2021-02-26T21:26:46.936Z", - "location":{ - "title":"Kyiv, Ukraine", - "city":"Kyiv", - "tzid":"Europe/Kiev", - "latitude":50.45466, - "longitude":30.5238, - "cc":"UA", - "country":"Ukraine", - "admin1":"Kyiv City", - "geo":"geoname", - "geonameid":703448 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:11", - "date":"2021-02-26T17:11:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:20", - "date":"2021-02-27T18:20:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kampala February 2021", - "date":"2021-02-26T21:26:47.405Z", - "location":{ - "title":"Kampala, Central Region, Uganda", - "city":"Kampala", - "tzid":"Africa/Kampala", - "latitude":0.31628, - "longitude":32.58219, - "cc":"UG", - "country":"Uganda", - "admin1":"Central Region", - "geo":"geoname", - "geonameid":232422 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:48", - "date":"2021-02-26T18:48:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:37", - "date":"2021-02-27T19:37:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Atlanta March 2021", - "date":"2021-03-02T12:15:27.641Z", - "location":{ - "title":"Atlanta, Georgia, USA", - "city":"Atlanta", - "tzid":"America/New_York", - "latitude":33.749, - "longitude":-84.38798, - "cc":"US", - "country":"United States", - "admin1":"Georgia", - "geo":"geoname", - "geonameid":4180439 - }, - "items":[ - { - "title":"Candle lighting: 6:19pm", - "date":"2021-03-05T18:19:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:15pm", - "date":"2021-03-06T19:15:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Austin March 2021", - "date":"2021-03-02T12:16:16.996Z", - "location":{ - "title":"Austin, Texas, USA", - "city":"Austin", - "tzid":"America/Chicago", - "latitude":30.26715, - "longitude":-97.74306, - "cc":"US", - "country":"United States", - "admin1":"Texas", - "geo":"geoname", - "geonameid":4671654 - }, - "items":[ - { - "title":"Candle lighting: 6:14pm", - "date":"2021-03-05T18:14:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:09pm", - "date":"2021-03-06T19:09:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Baltimore March 2021", - "date":"2021-03-02T12:17:51.175Z", - "location":{ - "title":"Baltimore, Maryland, USA", - "city":"Baltimore", - "tzid":"America/New_York", - "latitude":39.29038, - "longitude":-76.61219, - "cc":"US", - "country":"United States", - "admin1":"Maryland", - "geo":"geoname", - "geonameid":4347778 - }, - "items":[ - { - "title":"Candle lighting: 5:45pm", - "date":"2021-03-05T17:45:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:44pm", - "date":"2021-03-06T18:44:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Boston March 2021", - "date":"2021-03-02T12:18:42.472Z", - "location":{ - "title":"Boston, Massachusetts, USA", - "city":"Boston", - "tzid":"America/New_York", - "latitude":42.35843, - "longitude":-71.05977, - "cc":"US", - "country":"United States", - "admin1":"Massachusetts", - "geo":"geoname", - "geonameid":4930956 - }, - "items":[ - { - "title":"Candle lighting: 5:21pm", - "date":"2021-03-05T17:21:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:22pm", - "date":"2021-03-06T18:22:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Buffalo March 2021", - "date":"2021-03-02T12:19:58.512Z", - "location":{ - "title":"Buffalo, New York, USA", - "city":"Buffalo", - "tzid":"America/New_York", - "latitude":42.88645, - "longitude":-78.87837, - "cc":"US", - "country":"United States", - "admin1":"New York", - "geo":"geoname", - "geonameid":5110629 - }, - "items":[ - { - "title":"Candle lighting: 5:52pm", - "date":"2021-03-05T17:52:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:53pm", - "date":"2021-03-06T18:53:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Chicago March 2021", - "date":"2021-03-02T12:21:08.857Z", - "location":{ - "title":"Chicago, Illinois, USA", - "city":"Chicago", - "tzid":"America/Chicago", - "latitude":41.85003, - "longitude":-87.65005, - "cc":"US", - "country":"United States", - "admin1":"Illinois", - "geo":"geoname", - "geonameid":4887398 - }, - "items":[ - { - "title":"Candle lighting: 5:28pm", - "date":"2021-03-05T17:28:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:28pm", - "date":"2021-03-06T18:28:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Cincinnati March 2021", - "date":"2021-03-02T12:22:01.125Z", - "location":{ - "title":"Cincinnati, Ohio, USA", - "city":"Cincinnati", - "tzid":"America/New_York", - "latitude":39.12711, - "longitude":-84.51439, - "cc":"US", - "country":"United States", - "admin1":"Ohio", - "geo":"geoname", - "geonameid":4508722 - }, - "items":[ - { - "title":"Candle lighting: 6:17pm", - "date":"2021-03-05T18:17:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:16pm", - "date":"2021-03-06T19:16:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Cleveland March 2021", - "date":"2021-03-02T12:23:03.780Z", - "location":{ - "title":"Cleveland, Ohio, USA", - "city":"Cleveland", - "tzid":"America/New_York", - "latitude":41.4995, - "longitude":-81.69541, - "cc":"US", - "country":"United States", - "admin1":"Ohio", - "geo":"geoname", - "geonameid":5150529 - }, - "items":[ - { - "title":"Candle lighting: 6:04pm", - "date":"2021-03-05T18:04:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:05pm", - "date":"2021-03-06T19:05:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Columbus March 2021", - "date":"2021-03-02T12:24:51.008Z", - "location":{ - "title":"Columbus, Ohio, USA", - "city":"Columbus", - "tzid":"America/New_York", - "latitude":39.96118, - "longitude":-82.99879, - "cc":"US", - "country":"United States", - "admin1":"Ohio", - "geo":"geoname", - "geonameid":4509177 - }, - "items":[ - { - "title":"Candle lighting: 6:10pm", - "date":"2021-03-05T18:10:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:10pm", - "date":"2021-03-06T19:10:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Dallas March 2021", - "date":"2021-03-02T12:26:10.338Z", - "location":{ - "title":"Dallas, Texas, USA", - "city":"Dallas", - "tzid":"America/Chicago", - "latitude":32.78306, - "longitude":-96.80667, - "cc":"US", - "country":"United States", - "admin1":"Texas", - "geo":"geoname", - "geonameid":4684888 - }, - "items":[ - { - "title":"Candle lighting: 6:09pm", - "date":"2021-03-05T18:09:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:05pm", - "date":"2021-03-06T19:05:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Denver March 2021", - "date":"2021-03-02T12:28:01.731Z", - "location":{ - "title":"Denver, Colorado, USA", - "city":"Denver", - "tzid":"America/Denver", - "latitude":39.73915, - "longitude":-104.9847, - "cc":"US", - "country":"United States", - "admin1":"Colorado", - "geo":"geoname", - "geonameid":5419384 - }, - "items":[ - { - "title":"Candle lighting: 5:38pm", - "date":"2021-03-05T17:38:00-07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:38pm", - "date":"2021-03-06T18:38:00-07:00", "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Detroit March 2021", - "date":"2021-03-02T12:38:12.499Z", - "location":{ - "title":"Detroit, Michigan, USA", - "city":"Detroit", - "tzid":"America/Detroit", - "latitude":42.33143, - "longitude":-83.04575, - "cc":"US", - "country":"United States", - "admin1":"Michigan", - "geo":"geoname", - "geonameid":4990729 - }, - "items":[ - { - "title":"Candle lighting: 6:09pm", - "date":"2021-03-05T18:09:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:10pm", - "date":"2021-03-06T19:10:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Hartford March 2021", - "date":"2021-03-02T12:49:56.094Z", - "location":{ - "title":"Hartford, Connecticut, USA", - "city":"Hartford", - "tzid":"America/New_York", - "latitude":41.76371, - "longitude":-72.68509, - "cc":"US", - "country":"United States", - "admin1":"Connecticut", - "geo":"geoname", - "geonameid":4835797 - }, - "items":[ - { - "title":"Candle lighting: 5:28pm", - "date":"2021-03-05T17:28:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:29pm", - "date":"2021-03-06T18:29:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Honolulu March 2021", - "date":"2021-03-02T12:51:51.837Z", - "location":{ - "title":"Honolulu, Hawaii, USA", - "city":"Honolulu", - "tzid":"Pacific/Honolulu", - "latitude":21.30694, - "longitude":-157.85833, - "cc":"US", - "country":"United States", - "admin1":"Hawaii", - "geo":"geoname", - "geonameid":5856195 - }, - "items":[ - { - "title":"Candle lighting: 6:19pm", - "date":"2021-03-05T18:19:00-10:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:11pm", - "date":"2021-03-06T19:11:00-10:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Houston March 2021", - "date":"2021-03-02T12:53:13.771Z", - "location":{ - "title":"Houston, Texas, USA", - "city":"Houston", - "tzid":"America/Chicago", - "latitude":29.76328, - "longitude":-95.36327, - "cc":"US", - "country":"United States", - "admin1":"Texas", - "geo":"geoname", - "geonameid":4699066 - }, - "items":[ - { - "title":"Candle lighting: 6:05pm", - "date":"2021-03-05T18:05:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:00pm", - "date":"2021-03-06T19:00:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Lakewood March 2021", - "date":"2021-03-02T12:54:09.986Z", - "location":{ - "title":"Lakewood, New Jersey, USA", - "city":"Lakewood", - "tzid":"America/New_York", - "latitude":40.09789, - "longitude":-74.21764, - "cc":"US", - "country":"United States", - "admin1":"New Jersey", - "geo":"geoname", - "geonameid":5100280 - }, - "items":[ - { - "title":"Candle lighting: 5:35pm", - "date":"2021-03-05T17:35:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:35pm", - "date":"2021-03-06T18:35:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Las Vegas March 2021", - "date":"2021-03-02T12:56:50.492Z", - "location":{ - "title":"Las Vegas, Nevada, USA", - "city":"Las Vegas", - "tzid":"America/Los_Angeles", - "latitude":36.17497, - "longitude":-115.13722, - "cc":"US", - "country":"United States", - "admin1":"Nevada", - "geo":"geoname", - "geonameid":5506956 - }, - "items":[ - { - "title":"Candle lighting: 5:21pm", - "date":"2021-03-05T17:21:00-08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:18pm", - "date":"2021-03-06T18:18:00-08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Livingston March 2021", - "date":"2021-03-02T12:58:20.314Z", - "location":{ - "title":"Livingston, New Jersey, USA", - "city":"Livingston", - "tzid":"America/New_York", - "latitude":40.79593, - "longitude":-74.31487, - "cc":"US", - "country":"United States", - "admin1":"New Jersey", - "geo":"geoname", - "geonameid":5100572 - }, - "items":[ - { - "title":"Candle lighting: 5:35pm", - "date":"2021-03-05T17:35:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:35pm", - "date":"2021-03-06T18:35:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Los Angeles March 2021", - "date":"2021-03-02T13:00:50.808Z", - "location":{ - "title":"Los Angeles, California, USA", - "city":"Los Angeles", - "tzid":"America/Los_Angeles", - "latitude":34.05223, - "longitude":-118.24368, - "cc":"US", - "country":"United States", - "admin1":"California", - "geo":"geoname", - "geonameid":5368361 - }, - "items":[ - { - "title":"Candle lighting: 5:35pm", - "date":"2021-03-05T17:35:00-08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:31pm", - "date":"2021-03-06T18:31:00-08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Memphis March 2021", - "date":"2021-03-02T13:02:41.439Z", - "location":{ - "title":"Memphis, Tennessee, USA", - "city":"Memphis", - "tzid":"America/Chicago", - "latitude":35.14953, - "longitude":-90.04898, - "cc":"US", - "country":"United States", - "admin1":"Tennessee", - "geo":"geoname", - "geonameid":4641239 - }, - "items":[ - { - "title":"Candle lighting: 5:41pm", - "date":"2021-03-05T17:41:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:38pm", - "date":"2021-03-06T18:38:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Miami March 2021", - "date":"2021-03-02T13:04:28.051Z", - "location":{ - "title":"Miami, Florida, USA", - "city":"Miami", - "tzid":"America/New_York", - "latitude":25.77427, - "longitude":-80.19366, - "cc":"US", - "country":"United States", - "admin1":"Florida", - "geo":"geoname", - "geonameid":4164138 - }, - "items":[ - { - "title":"Candle lighting: 6:06pm", - "date":"2021-03-05T18:06:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:59pm", - "date":"2021-03-06T18:59:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Milwaukee March 2021", - "date":"2021-03-02T13:07:44.483Z", - "location":{ - "title":"Milwaukee, Wisconsin, USA", - "city":"Milwaukee", - "tzid":"America/Chicago", - "latitude":43.0389, - "longitude":-87.90647, - "cc":"US", - "country":"United States", - "admin1":"Wisconsin", - "geo":"geoname", - "geonameid":5263045 - }, - "items":[ - { - "title":"Candle lighting: 5:28pm", - "date":"2021-03-05T17:28:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:30pm", - "date":"2021-03-06T18:30:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Monsey March 2021", - "date":"2021-03-02T13:11:40.215Z", - "location":{ - "title":"Monsey, New York, USA", - "city":"Monsey", - "tzid":"America/New_York", - "latitude":41.11121, - "longitude":-74.06848, - "cc":"US", - "country":"United States", - "admin1":"New York", - "geo":"geoname", - "geonameid":5127315 - }, - "items":[ - { - "title":"Candle lighting: 5:34pm", - "date":"2021-03-05T17:34:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:34pm", - "date":"2021-03-06T18:34:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal New Haven March 2021", - "date":"2021-03-02T13:16:11.557Z", - "location":{ - "title":"New Haven, Connecticut, USA", - "city":"New Haven", - "tzid":"America/New_York", - "latitude":41.30815, - "longitude":-72.92816, - "cc":"US", - "country":"United States", - "admin1":"Connecticut", - "geo":"geoname", - "geonameid":4839366 - }, - "items":[ - { - "title":"Candle lighting: 5:29pm", - "date":"2021-03-05T17:29:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:30pm", - "date":"2021-03-06T18:30:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal New York City March 2021", - "date":"2021-03-02T13:20:26.505Z", - "location":{ - "title":"New York City, New York, USA", - "city":"New York City", - "tzid":"America/New_York", - "latitude":40.71427, - "longitude":-74.00597, - "cc":"US", - "country":"United States", - "admin1":"New York", - "geo":"geoname", - "geonameid":5128581 - }, - "items":[ - { - "title":"Candle lighting: 5:34pm", - "date":"2021-03-05T17:34:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:34pm", - "date":"2021-03-06T18:34:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Omaha March 2021", - "date":"2021-03-03T10:40:22.619Z", - "location":{ - "title":"Omaha, Nebraska, USA", - "city":"Omaha", - "tzid":"America/Chicago", - "latitude":41.25626, - "longitude":-95.94043, - "cc":"US", - "country":"United States", - "admin1":"Nebraska", - "geo":"geoname", - "geonameid":5074472 - }, - "items":[ - { - "title":"Candle lighting: 6:01pm", - "date":"2021-03-05T18:01:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:02pm", - "date":"2021-03-06T19:02:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Orlando March 2021", - "date":"2021-03-03T10:41:17.406Z", - "location":{ - "title":"Orlando, Florida, USA", - "city":"Orlando", - "tzid":"America/New_York", - "latitude":28.53834, - "longitude":-81.37924, - "cc":"US", - "country":"United States", - "admin1":"Florida", - "geo":"geoname", - "geonameid":4167147 - }, - "items":[ - { - "title":"Candle lighting: 6:10pm", - "date":"2021-03-05T18:10:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:04pm", - "date":"2021-03-06T19:04:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Passaic March 2021", - "date":"2021-03-03T10:42:20.346Z", - "location":{ - "title":"Passaic, New Jersey, USA", - "city":"Passaic", - "tzid":"America/New_York", - "latitude":40.85677, - "longitude":-74.12848, - "cc":"US", - "country":"United States", - "admin1":"New Jersey", - "geo":"geoname", - "geonameid":5102443 - }, - "items":[ - { - "title":"Candle lighting: 5:34pm", - "date":"2021-03-05T17:34:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:34pm", - "date":"2021-03-06T18:34:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Philadelphia March 2021", - "date":"2021-03-03T10:43:16.371Z", - "location":{ - "title":"Philadelphia, Pennsylvania, USA", - "city":"Philadelphia", - "tzid":"America/New_York", - "latitude":39.95233, - "longitude":-75.16379, - "cc":"US", - "country":"United States", - "admin1":"Pennsylvania", - "geo":"geoname", - "geonameid":4560349 - }, - "items":[ - { - "title":"Candle lighting: 5:39pm", - "date":"2021-03-05T17:39:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:38pm", - "date":"2021-03-06T18:38:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Phoenix March 2021", - "date":"2021-03-03T10:44:20.832Z", - "location":{ - "title":"Phoenix, Arizona, USA", - "city":"Phoenix", - "tzid":"America/Phoenix", - "latitude":33.44838, - "longitude":-112.07404, - "cc":"US", - "country":"United States", - "admin1":"Arizona", - "geo":"geoname", - "geonameid":5308655 - }, - "items":[ - { - "title":"Candle lighting: 6:10pm", - "date":"2021-03-05T18:10:00-07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:06pm", - "date":"2021-03-06T19:06:00-07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Pittsburgh March 2021", - "date":"2021-03-03T10:45:55.119Z", - "location":{ - "title":"Pittsburgh, Pennsylvania, USA", - "city":"Pittsburgh", - "tzid":"America/New_York", - "latitude":40.44062, - "longitude":-79.99589, - "cc":"US", - "country":"United States", - "admin1":"Pennsylvania", - "geo":"geoname", - "geonameid":5206379 - }, - "items":[ - { - "title":"Candle lighting: 5:58pm", - "date":"2021-03-05T17:58:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:58pm", - "date":"2021-03-06T18:58:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Portland March 2021", - "date":"2021-03-03T10:50:48.532Z", - "location":{ - "title":"Portland, Oregon, USA", - "city":"Portland", - "tzid":"America/Los_Angeles", - "latitude":45.52345, - "longitude":-122.67621, - "cc":"US", - "country":"United States", - "admin1":"Oregon", - "geo":"geoname", - "geonameid":5746545 - }, - "items":[ - { - "title":"Candle lighting: 5:45pm", - "date":"2021-03-05T17:45:00-08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:49pm", - "date":"2021-03-06T18:49:00-08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Providence March 2021", - "date":"2021-03-03T10:51:25.314Z", - "location":{ - "title":"Providence, Rhode Island, USA", - "city":"Providence", - "tzid":"America/New_York", - "latitude":41.82399, - "longitude":-71.41283, - "cc":"US", - "country":"United States", - "admin1":"Rhode Island", - "geo":"geoname", - "geonameid":5224151 - }, - "items":[ - { - "title":"Candle lighting: 5:23pm", - "date":"2021-03-05T17:23:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:23pm", - "date":"2021-03-06T18:23:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Richmond March 2021", - "date":"2021-03-03T10:51:54.719Z", - "location":{ - "title":"Richmond, Virginia, USA", - "city":"Richmond", - "tzid":"America/New_York", - "latitude":37.55376, - "longitude":-77.46026, - "cc":"US", - "country":"United States", - "admin1":"Virginia", - "geo":"geoname", - "geonameid":4781708 - }, - "items":[ - { - "title":"Candle lighting: 5:49pm", - "date":"2021-03-05T17:49:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:48pm", - "date":"2021-03-06T18:48:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Rochester March 2021", - "date":"2021-03-03T10:52:31.483Z", - "location":{ - "title":"Rochester, New York, USA", - "city":"Rochester", - "tzid":"America/New_York", - "latitude":43.15478, - "longitude":-77.61556, - "cc":"US", - "country":"United States", - "admin1":"New York", - "geo":"geoname", - "geonameid":5134086 - }, - "items":[ - { - "title":"Candle lighting: 5:46pm", - "date":"2021-03-05T17:46:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:48pm", - "date":"2021-03-06T18:48:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal St. Louis March 2021", - "date":"2021-03-03T10:53:01.132Z", - "location":{ - "title":"St. Louis, Missouri, USA", - "city":"St. Louis", - "tzid":"America/Chicago", - "latitude":38.62727, - "longitude":-90.19789, - "cc":"US", - "country":"United States", - "admin1":"Missouri", - "geo":"geoname", - "geonameid":4407066 - }, - "items":[ - { - "title":"Candle lighting: 5:40pm", - "date":"2021-03-05T17:40:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:39pm", - "date":"2021-03-06T18:39:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Saint Paul March 2021", - "date":"2021-03-03T10:53:32.291Z", - "location":{ - "title":"Saint Paul, Minnesota, USA", - "city":"Saint Paul", - "tzid":"America/Chicago", - "latitude":44.94441, - "longitude":-93.09327, - "cc":"US", - "country":"United States", - "admin1":"Minnesota", - "geo":"geoname", - "geonameid":5045360 - }, - "items":[ - { - "title":"Candle lighting: 5:47pm", - "date":"2021-03-05T17:47:00-06:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:50pm", - "date":"2021-03-06T18:50:00-06:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal San Diego March 2021", - "date":"2021-03-03T10:54:06.911Z", - "location":{ - "title":"San Diego, California, USA", - "city":"San Diego", - "tzid":"America/Los_Angeles", - "latitude":32.71571, - "longitude":-117.16472, - "cc":"US", - "country":"United States", - "admin1":"California", - "geo":"geoname", - "geonameid":5391811 - }, - "items":[ - { - "title":"Candle lighting: 5:31pm", - "date":"2021-03-05T17:31:00-08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:27pm", - "date":"2021-03-06T18:27:00-08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal San Francisco March 2021", - "date":"2021-03-03T10:54:44.360Z", - "location":{ - "title":"San Francisco, California, USA", - "city":"San Francisco", - "tzid":"America/Los_Angeles", - "latitude":37.77493, - "longitude":-122.41942, - "cc":"US", - "country":"United States", - "admin1":"California", - "geo":"geoname", - "geonameid":5391959 - }, - "items":[ - { - "title":"Candle lighting: 5:49pm", - "date":"2021-03-05T17:49:00-08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:48pm", - "date":"2021-03-06T18:48:00-08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Seattle March 2021", - "date":"2021-03-03T10:55:15.064Z", - "location":{ - "title":"Seattle, Washington, USA", - "city":"Seattle", - "tzid":"America/Los_Angeles", - "latitude":47.60621, - "longitude":-122.33207, - "cc":"US", - "country":"United States", - "admin1":"Washington", - "geo":"geoname", - "geonameid":5809844 - }, - "items":[ - { - "title":"Candle lighting: 5:42pm", - "date":"2021-03-05T17:42:00-08:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:48pm", - "date":"2021-03-06T18:48:00-08:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Silver Spring March 2021", - "date":"2021-03-03T10:55:43.007Z", - "location":{ - "title":"Silver Spring, Maryland, USA", - "city":"Silver Spring", - "tzid":"America/New_York", - "latitude":38.99067, - "longitude":-77.02609, - "cc":"US", - "country":"United States", - "admin1":"Maryland", - "geo":"geoname", - "geonameid":4369596 - }, - "items":[ - { - "title":"Candle lighting: 5:47pm", - "date":"2021-03-05T17:47:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:46pm", - "date":"2021-03-06T18:46:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Teaneck March 2021", - "date":"2021-03-03T10:56:11.770Z", - "location":{ - "title":"Teaneck, New Jersey, USA", - "city":"Teaneck", - "tzid":"America/New_York", - "latitude":40.8976, - "longitude":-74.01597, - "cc":"US", - "country":"United States", - "admin1":"New Jersey", - "geo":"geoname", - "geonameid":5105262 - }, - "items":[ - { - "title":"Candle lighting: 5:34pm", - "date":"2021-03-05T17:34:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:34pm", - "date":"2021-03-06T18:34:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Washington March 2021", - "date":"2021-03-03T10:56:40.756Z", - "location":{ - "title":"Washington, D.C., USA", - "city":"Washington", - "tzid":"America/New_York", - "latitude":38.89511, - "longitude":-77.03637, - "cc":"US", - "country":"United States", - "admin1":"Washington, D.C.", - "geo":"geoname", - "geonameid":4140963 - }, - "items":[ - { - "title":"Candle lighting: 5:47pm", - "date":"2021-03-05T17:47:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:46pm", - "date":"2021-03-06T18:46:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal White Plains March 2021", - "date":"2021-03-03T10:57:20.178Z", - "location":{ - "title":"White Plains, New York, USA", - "city":"White Plains", - "tzid":"America/New_York", - "latitude":41.03399, - "longitude":-73.76291, - "cc":"US", - "country":"United States", - "admin1":"New York", - "geo":"geoname", - "geonameid":5144336 - }, - "items":[ - { - "title":"Candle lighting: 5:32pm", - "date":"2021-03-05T17:32:00-05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Shabbat Parah", - "date":"2021-03-06", - "category":"holiday", - "subcat":"shabbat", - "hebrew":"שבת פרה", - "leyning":{ - "haftarah":"Ezekiel 36:16 - 36:38", - "maftir":"Numbers 19:1 - 19:22" - }, - "link":"https://www.hebcal.com/holidays/shabbat-parah-2021?utm_source=js&utm_medium=api", - "memo":"Shabbat of the Red Heifer" - }, - { - "title":"Parashat Ki Tisa", - "date":"2021-03-06", - "category":"parashat", - "hebrew":"פרשת כי תשא", - "leyning":{ - "1":"Exodus 30:11 - 31:17", - "2":"Exodus 31:18 - 33:11", - "3":"Exodus 33:12 - 33:16", - "4":"Exodus 33:17 - 33:23", - "5":"Exodus 34:1 - 34:9", - "6":"Exodus 34:10 - 34:26", - "7":"Exodus 34:27 - 34:35", - "torah":"Exodus 30:11-34:35", - "haftarah":"Ezekiel 36:16 - 36:38 | Shabbat Parah", - "haftarah_sephardic":"I Kings 18:20 - 18:39", - "maftir":"Numbers 19:1 - 19:22 | Shabbat Parah", - "triennial":{ - "1":"Exodus 31:18 - 32:6", - "2":"Exodus 32:7 - 32:11", - "3":"Exodus 32:12 - 32:14", - "4":"Exodus 32:15 - 32:24", - "5":"Exodus 32:25 - 32:29", - "6":"Exodus 32:30 - 33:6", - "7":"Exodus 33:7 - 33:11", - "maftir":"Numbers 19:1 - 19:22" - } - }, - "link":"https://www.hebcal.com/sedrot/ki-tisa-20210306?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 6:33pm", - "date":"2021-03-06T18:33:00-05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - } - ] - }, - { - "title":"Hebcal Montevideo February 2021", - "date":"2021-02-26T21:27:08.331Z", - "location":{ - "title":"Montevideo, Uruguay", - "city":"Montevideo", - "tzid":"America/Montevideo", - "latitude":-34.90328, - "longitude":-56.18816, - "cc":"UY", - "country":"Uruguay", - "admin1":"Montevideo", - "geo":"geoname", - "geonameid":3441575 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:10", - "date":"2021-02-26T19:10:00-03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 20:06", - "date":"2021-02-27T20:06:00-03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Tashkent February 2021", - "date":"2021-02-26T21:27:08.811Z", - "location":{ - "title":"Tashkent, Toshkent Shahri, Uzbekistan", - "city":"Tashkent", - "tzid":"Asia/Tashkent", - "latitude":41.26465, - "longitude":69.21627, - "cc":"UZ", - "country":"Uzbekistan", - "admin1":"Toshkent Shahri", - "geo":"geoname", - "geonameid":1512569 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:48", - "date":"2021-02-26T17:48:00+05:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:49", - "date":"2021-02-27T18:49:00+05:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Kingstown February 2021", - "date":"2021-02-26T21:27:09.326Z", - "location":{ - "title":"Kingstown, Saint George, Saint Vincent and the Grenadines", - "city":"Kingstown", - "tzid":"America/St_Vincent", - "latitude":13.15527, - "longitude":-61.22742, - "cc":"VC", - "country":"Saint Vincent and the Grenadines", - "admin1":"Saint George", - "geo":"geoname", - "geonameid":3577887 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:54", - "date":"2021-02-26T17:54:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:45", - "date":"2021-02-27T18:45:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Caracas February 2021", - "date":"2021-02-26T21:27:09.796Z", - "location":{ - "title":"Caracas, Distrito Federal, Venezuela", - "city":"Caracas", - "tzid":"America/Caracas", - "latitude":10.48801, - "longitude":-66.87919, - "cc":"VE", - "country":"Venezuela", - "admin1":"Distrito Federal", - "geo":"geoname", - "geonameid":3646738 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:19", - "date":"2021-02-26T18:19:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:09", - "date":"2021-02-27T19:09:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Maracaibo February 2021", - "date":"2021-02-26T21:27:10.294Z", - "location":{ - "title":"Maracaibo, Zulia, Venezuela", - "city":"Maracaibo", - "tzid":"America/Caracas", - "latitude":10.66663, - "longitude":-71.61245, - "cc":"VE", - "country":"Venezuela", - "admin1":"Zulia", - "geo":"geoname", - "geonameid":3633009 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:37", - "date":"2021-02-26T18:37:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:28", - "date":"2021-02-27T19:28:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Maracay February 2021", - "date":"2021-02-26T21:27:10.796Z", - "location":{ - "title":"Maracay, Aragua, Venezuela", - "city":"Maracay", - "tzid":"America/Caracas", - "latitude":10.23535, - "longitude":-67.59113, - "cc":"VE", - "country":"Venezuela", - "admin1":"Aragua", - "geo":"geoname", - "geonameid":3632998 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:22", - "date":"2021-02-26T18:22:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:12", - "date":"2021-02-27T19:12:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Valencia February 2021", - "date":"2021-02-26T21:27:11.257Z", - "location":{ - "title":"Valencia, Carabobo, Venezuela", - "city":"Valencia", - "tzid":"America/Caracas", - "latitude":10.16202, - "longitude":-68.00765, - "cc":"VE", - "country":"Venezuela", - "admin1":"Carabobo", - "geo":"geoname", - "geonameid":3625549 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:23", - "date":"2021-02-26T18:23:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:13", - "date":"2021-02-27T19:13:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Road Town February 2021", - "date":"2021-02-26T21:27:11.747Z", - "location":{ - "title":"Road Town, British Virgin Islands", - "city":"Road Town", - "tzid":"America/Tortola", - "latitude":18.42693, - "longitude":-64.62079, - "cc":"VG", - "country":"British Virgin Islands", - "geo":"geoname", - "geonameid":3577430 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:04", - "date":"2021-02-26T18:04:00-04:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:56", - "date":"2021-02-27T18:56:00-04:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Hanoi February 2021", - "date":"2021-02-26T21:27:12.214Z", - "location":{ - "title":"Hanoi, Vietnam", - "city":"Hanoi", - "tzid":"Asia/Bangkok", - "latitude":21.0245, - "longitude":105.84117, - "cc":"VN", - "country":"Vietnam", - "admin1":"Hanoi", - "geo":"geoname", - "geonameid":1581130 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:40", - "date":"2021-02-26T17:40:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:32", - "date":"2021-02-27T18:32:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Ho Chi Minh City February 2021", - "date":"2021-02-26T21:27:12.673Z", - "location":{ - "title":"Ho Chi Minh City, Ho Chi Minh, Vietnam", - "city":"Ho Chi Minh City", - "tzid":"Asia/Ho_Chi_Minh", - "latitude":10.82302, - "longitude":106.62965, - "cc":"VN", - "country":"Vietnam", - "admin1":"Ho Chi Minh", - "geo":"geoname", - "geonameid":1566083 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:44", - "date":"2021-02-26T17:44:00+07:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:35", - "date":"2021-02-27T18:35:00+07:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Apia February 2021", - "date":"2021-02-26T21:27:13.146Z", - "location":{ - "title":"Apia, Tuamasaga, Samoa", - "city":"Apia", - "tzid":"Pacific/Apia", - "latitude":-13.83333, - "longitude":-171.76666, - "cc":"WS", - "country":"Samoa", - "admin1":"Tuamasaga", - "geo":"geoname", - "geonameid":4035413 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 19:35", - "date":"2021-02-27T19:35:00+14:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 20:25", - "date":"2021-02-28T20:25:00+14:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Sanaa February 2021", - "date":"2021-02-26T21:27:13.602Z", - "location":{ - "title":"Sanaa, Yemen", - "city":"Sanaa", - "tzid":"Asia/Aden", - "latitude":15.35472, - "longitude":44.20667, - "cc":"YE", - "country":"Yemen", - "admin1":"Sanaa", - "geo":"geoname", - "geonameid":71137 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 17:51", - "date":"2021-02-26T17:51:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:42", - "date":"2021-02-27T18:42:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Mamoudzou February 2021", - "date":"2021-02-26T21:27:14.113Z", - "location":{ - "title":"Mamoudzou, Mayotte", - "city":"Mamoudzou", - "tzid":"Indian/Mayotte", - "latitude":-12.78234, - "longitude":45.22878, - "cc":"YT", - "country":"Mayotte", - "admin1":"Mamoudzou", - "geo":"geoname", - "geonameid":921815 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:06", - "date":"2021-02-26T18:06:00+03:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:56", - "date":"2021-02-27T18:56:00+03:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Cape Town February 2021", - "date":"2021-02-26T21:27:14.589Z", - "location":{ - "title":"Cape Town, Western Cape, South Africa", - "city":"Cape Town", - "tzid":"Africa/Johannesburg", - "latitude":-33.92584, - "longitude":18.42322, - "cc":"ZA", - "country":"South Africa", - "admin1":"Western Cape", - "geo":"geoname", - "geonameid":3369157 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 7:11pm", - "date":"2021-02-26T19:11:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 8:07pm", - "date":"2021-02-27T20:07:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Durban February 2021", - "date":"2021-02-26T21:27:15.052Z", - "location":{ - "title":"Durban, KwaZulu-Natal, South Africa", - "city":"Durban", - "tzid":"Africa/Johannesburg", - "latitude":-29.8579, - "longitude":31.0292, - "cc":"ZA", - "country":"South Africa", - "admin1":"KwaZulu-Natal", - "geo":"geoname", - "geonameid":1007311 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:17pm", - "date":"2021-02-26T18:17:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:11pm", - "date":"2021-02-27T19:11:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Johannesburg February 2021", - "date":"2021-02-26T21:27:15.510Z", - "location":{ - "title":"Johannesburg, Gauteng, South Africa", - "city":"Johannesburg", - "tzid":"Africa/Johannesburg", - "latitude":-26.20227, - "longitude":28.04363, - "cc":"ZA", - "country":"South Africa", - "admin1":"Gauteng", - "geo":"geoname", - "geonameid":993800 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:25pm", - "date":"2021-02-26T18:25:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:18pm", - "date":"2021-02-27T19:18:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Pretoria February 2021", - "date":"2021-02-26T21:27:15.983Z", - "location":{ - "title":"Pretoria, Gauteng, South Africa", - "city":"Pretoria", - "tzid":"Africa/Johannesburg", - "latitude":-25.74486, - "longitude":28.18783, - "cc":"ZA", - "country":"South Africa", - "admin1":"Gauteng", - "geo":"geoname", - "geonameid":964137 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 6:24pm", - "date":"2021-02-26T18:24:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 7:17pm", - "date":"2021-02-27T19:17:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Lusaka February 2021", - "date":"2021-02-26T21:27:16.466Z", - "location":{ - "title":"Lusaka, Zambia", - "city":"Lusaka", - "tzid":"Africa/Lusaka", - "latitude":-15.40669, - "longitude":28.28713, - "cc":"ZM", - "country":"Zambia", - "admin1":"Lusaka", - "geo":"geoname", - "geonameid":909137 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:16", - "date":"2021-02-26T18:16:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 19:06", - "date":"2021-02-27T19:06:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - }, - { - "title":"Hebcal Harare February 2021", - "date":"2021-02-26T21:27:16.929Z", - "location":{ - "title":"Harare, Zimbabwe", - "city":"Harare", - "tzid":"Africa/Harare", - "latitude":-17.82772, - "longitude":31.05337, - "cc":"ZW", - "country":"Zimbabwe", - "admin1":"Harare", - "geo":"geoname", - "geonameid":890299 - }, - "items":[ - { - "title":"Purim", - "date":"2021-02-26", - "category":"holiday", - "subcat":"major", - "hebrew":"פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/purim-2021?utm_source=js&utm_medium=api", - "memo":"Celebration of Jewish deliverance as told by Megilat Esther. It commemorates a time when the Jewish people living in Persia were saved from extermination" - }, - { - "title":"Candle lighting: 18:07", - "date":"2021-02-26T18:07:00+02:00", - "category":"candles", - "title_orig":"Candle lighting", - "hebrew":"הדלקת נרות" - }, - { - "title":"Parashat Tetzaveh", - "date":"2021-02-27", - "category":"parashat", - "hebrew":"פרשת תצוה", - "leyning":{ - "1":"Exodus 27:20 - 28:12", - "2":"Exodus 28:13 - 28:30", - "3":"Exodus 28:31 - 28:43", - "4":"Exodus 29:1 - 29:18", - "5":"Exodus 29:19 - 29:37", - "6":"Exodus 29:38 - 29:46", - "7":"Exodus 30:1 - 30:10", - "torah":"Exodus 27:20-30:10", - "haftarah":"Ezekiel 43:10 - 43:27", - "maftir":"Exodus 30:8 - 30:10", - "triennial":{ - "1":"Exodus 28:31 - 28:35", - "2":"Exodus 28:36 - 28:38", - "3":"Exodus 28:39 - 28:43", - "4":"Exodus 29:1 - 29:4", - "5":"Exodus 29:5 - 29:9", - "6":"Exodus 29:10 - 29:14", - "7":"Exodus 29:15 - 29:18", - "maftir":"Exodus 29:15 - 29:18" - } - }, - "link":"https://www.hebcal.com/sedrot/tetzaveh-20210227?utm_source=js&utm_medium=api" - }, - { - "title":"Havdalah: 18:57", - "date":"2021-02-27T18:57:00+02:00", - "category":"havdalah", - "title_orig":"Havdalah", - "hebrew":"הבדלה" - }, - { - "title":"Shushan Purim", - "date":"2021-02-28", - "category":"holiday", - "subcat":"minor", - "hebrew":"שושן פורים", - "leyning":{ - "1":"Exodus 17:8 - 17:10", - "2":"Exodus 17:11 - 17:13", - "3":"Exodus 17:14 - 17:16", - "torah":"Exodus 17:8-17:16" - }, - "link":"https://www.hebcal.com/holidays/shushan-purim-2021?utm_source=js&utm_medium=api", - "memo":"Purim celebrated in Jerusalem and walled cities" - } - ] - } -] \ No newline at end of file From 7313c85a7fa31cc6e63e9899c14963cc77d6ac5b Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Wed, 10 Mar 2021 22:57:37 +0200 Subject: [PATCH 36/38] fix : bugfix --- tests/test_shabbat.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/test_shabbat.py b/tests/test_shabbat.py index 79c7ef4f..3be9861e 100644 --- a/tests/test_shabbat.py +++ b/tests/test_shabbat.py @@ -29,16 +29,9 @@ }, ] } -BAD_DAY = date(2021, 2, 27) FRIDAY = date(2021, 2, 26) -def test_return_none_if_date_no_friday(): - location_by_ip = geocoder.ip('me') - result = shabbat.get_shabbat_if_date_friday(BAD_DAY, location_by_ip) - assert result is None - - def test_return_if_date_is_friday(): location_by_ip = geocoder.ip('me') result = shabbat.get_shabbat_if_date_friday(FRIDAY, location_by_ip) From 855a871580ad37da502fb479e395c19e8ff7171e Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Fri, 12 Mar 2021 01:32:53 +0200 Subject: [PATCH 37/38] fix : bugfix --- app/internal/shabbat.py | 6 ++++-- tests/test_shabbat.py | 33 ++++++++++++++++++++++++++++++--- 2 files changed, 34 insertions(+), 5 deletions(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 8ccb79ac..2c188d9f 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -1,6 +1,6 @@ import json from datetime import date, datetime -from typing import Any, Dict, Optional, Union +from typing import Any, Dict, List, Optional, Union import httpx @@ -28,7 +28,9 @@ def return_zip_code_of_user_location(location_by_ip) -> str: return location["zip_number"] -def return_shabbat_times(shabat_items) -> Dict[str, Union[date, Any]]: +def return_shabbat_times( + shabat_items: Dict[Any, List[Dict[str, str]]] +) -> Dict[str, Union[date, Any]]: """Returns the shabbat time which match to ip(of the user) location. Used the content of this is free API: 'https://www.hebcal.com/shabbat?cfg=json&geonameid=295277'. diff --git a/tests/test_shabbat.py b/tests/test_shabbat.py index 3be9861e..c8ad80e9 100644 --- a/tests/test_shabbat.py +++ b/tests/test_shabbat.py @@ -1,10 +1,12 @@ +import json from datetime import date import geocoder +import pytest from app.internal import shabbat -SHABBAT_TIME = { +FAKE_SHABBAT_DATA = { "items": [ {"title": "Fast begins"}, @@ -30,9 +32,34 @@ ] } FRIDAY = date(2021, 2, 26) +BAD_DAY = date(2021, 2, 27) -def test_return_if_date_is_friday(): +@pytest.mark.asyncio +async def test_return_if_date_is_friday(httpx_mock): location_by_ip = geocoder.ip('me') - result = shabbat.get_shabbat_if_date_friday(FRIDAY, location_by_ip) + test_data = json.dumps(FAKE_SHABBAT_DATA) + httpx_mock.add_response(method="GET", json=test_data) + result = await shabbat.get_shabbat_if_date_friday(FRIDAY, location_by_ip) + assert result + + +@pytest.mark.asyncio +async def test_return_if_date_is_not_friday(httpx_mock): + location_by_ip = geocoder.ip('me') + test_data = json.dumps(FAKE_SHABBAT_DATA) + httpx_mock.add_response(method="GET", json=test_data) + result = await shabbat.get_shabbat_if_date_friday(BAD_DAY, location_by_ip) + assert result is None + + +def test_return_shabbat_times(): + result = shabbat.return_shabbat_times(FAKE_SHABBAT_DATA) + assert result["start_hour"] == "17:15" + assert result["end_hour"] == "18:11" + + +def test_return_zip_code_of_user_location(): + location_by_ip = geocoder.ip('me') + result = shabbat.return_zip_code_of_user_location(location_by_ip) assert result From b7c80676d91188a913a495f7fbb427403d8b9248 Mon Sep 17 00:00:00 2001 From: Elor Shoshan Date: Fri, 12 Mar 2021 01:35:21 +0200 Subject: [PATCH 38/38] fix : bugfix --- app/internal/shabbat.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/internal/shabbat.py b/app/internal/shabbat.py index 2c188d9f..3f980fee 100644 --- a/app/internal/shabbat.py +++ b/app/internal/shabbat.py @@ -6,7 +6,6 @@ from app.config import RESOURCES_DIR - SHABBAT_API = 'https://www.hebcal.com/shabbat?cfg=json&geonameid='