This week was spent implementing the original MIP solver-based algorithm for the Maximum Coverage Problem. Before jumping into the implementation of the new approach, I'll explain how the currently implemented Greedy Algorithm works.
The maximum_cover
accepts an iterator over a list of objects which implement the operation_pool::MaxCover
trait, which is defined as follows:
/// Trait for types that we can compute a maximum cover for.
///
/// Terminology:
/// * `item`: something that implements this trait
/// * `element`: something contained in a set, and covered by the covering set of an item
/// * `object`: something extracted from an item in order to comprise a solution
/// See: https://en.wikipedia.org/wiki/Maximum_coverage_problem
pub trait MaxCover: Clone {
/// The result type, of which we would eventually like a collection of maximal quality.
type Object: Clone;
/// The intermediate object type, which can be converted to `Object`.
type Intermediate: Clone;
/// The type used to represent sets.
type Set: Clone;
/// Extract the intermediate object.
fn intermediate(&self) -> &Self::Intermediate;
/// Convert the borrowed intermediate object to an owned object for the solution.
fn convert_to_object(intermediate: &Self::Intermediate) -> Self::Object;
/// Get the set of elements covered.
fn covering_set(&self) -> &Self::Set;
/// Update the set of items covered, for the inclusion of some object in the solution.
fn update_covering_set(&mut self, max_obj: &Self::Intermediate, max_set: &Self::Set);
/// The quality of this item's covering set, usually its cardinality.
fn score(&self) -> usize;
}
To calculate the maximum cover for Attestations, the trait is implemented for AttMaxCover
defined as:
pub struct AttMaxCover<'a, T: EthSpec> {
/// Underlying attestation.
pub att: AttestationRef<'a, T>,
/// Mapping of validator indices and their rewards.
pub fresh_validators_rewards: HashMap<u64, u64>,
}
For each aggregation fresh_validator_rewards
, which is unique for each
The score of fresh_validator_rewards
.
Note that a validator will receive the reward for only one attestation, therefore if it is a part of multiple attestations, it will be counted only once.
This also means that the score of two different attestations can only be added directly if there are no common attestors. If an attestor is common, it needs to be removed from one of the attestations before adding its score.
Therefore, the algorithm on a high level is:
For i in 1..128:
1. Find attestation A with the max score and add it to the result
2. Remove this attestation from the input
3. For all other attestations, remove the reward for all other attesters in A
The general mechanism of using a MIP solver is as follows:
For the problem of computing the max cover over a set of aggregated attestations, the representation is as follows:
Notice that to define the objective function, we need access to the rewards for each individual attester, however MaxCover
's score()
returns the rewards of the total aggregation. After spending a lot of time thinking about the best way to add this capability, I decided to introduce a new trait called MipMaxCover
and its implementation for the AttMaxCover
struct as follows:
pub trait MipMaxCover<'a> {
type Element: Clone + Hash + Ord;
fn covering_set(&'a self) -> &'a Vec<Self::Element>;
fn element_weight(&self, element: &Self::Element) -> Option<f64>;
}
Any struct implementing this trait should be solvable by the MIP-based approach to the Maximum Coverage Problem. I completed the implementation of a generic MIP Solver for the MCWS, tested it against the existing unit tests for the greedy solution and confirmed that the optimal solution (by coverage) is being produced by this implementation. A WIP Pull Request with the implementation can be found here.
While the implementation produces a solution that has optimal coverage, I noticed that for some inputs the solution would include redundant sets. Putting this another way, the solution contained sets which if removed, would not affect the coverage of the solution.
Looking at the objective function, this makes sense because it does not capture the idea of optimising for the smallest number of sets in any way, it simply focuses on maximising the coverage as long as the total number of sets
I was curious if this would be a concern, so I discussed this issue with @paulhauner, who confirmed that this would be an issue since we would be wasting network bandwidth trying to send redundant attestations, and also these would be a part of the blockchain permanently.
As of now, I don't have a concrete way of solving this issue. In an ideal scenario, there should be a way to include this as a constraint in the objective function. I'm not certain if it's possible to specify multiple constraints (with a preference for the primary constraint and a secondary constraint), or if there exists a single mathematical function which can account for both constraints simultaneously without interfering with the other.
A naive solution which comes to my mind would be the objective function
While I'm not at a stage where I can start thinking about how to optimise the processing time, these are some thoughts which came to my mind and I want to mention them here just as a record for the future:
[{id: 'fd153122-d35f-4918-ad61-711c70141f99',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'za',holidays: [{id: '96ef28f8-3c72-41a5-97cc-306ae86cb43b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: "New Year's Day",date_from: '2024-01-01',date_to: '2024-01-01',},{id: '43903833-c581-48c9-a9c9-07dfb2e4ef1e',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Human Rights Day',date_from: '2024-03-21',date_to: '2024-03-21',},{id: '826fbb39-35ad-48e2-a7e6-162c9b9021e7',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Good Friday',date_from: '2024-03-29',date_to: '2024-03-29',},{id: 'a1a9307d-fbb8-4ef3-b01d-8603b3177826',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Family Day',date_from: '2024-04-01',date_to: '2024-04-01',},{id: '944631af-34c6-4c44-9dd9-9623086d77d7',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Freedom Day',date_from: '2024-04-27',date_to: '2024-04-27',},{id: '1d9ae1c8-16de-438e-8f40-93def04cc7ca',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: "Workers' Day",date_from: '2024-05-01',date_to: '2024-05-01',},{id: '88ed5a33-c090-43f6-9417-27bc050b6a24',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Special Public Holiday (Elections)',date_from: '2024-05-29',date_to: '2024-05-29',},{id: '2fc6202f-9bb3-40cb-9578-38a3ea38d441',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Youth Day',date_from: '2024-06-16',date_to: '2024-06-17',},{id: 'b4fcaad4-2672-448c-a0e9-e7d58743ddc3',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: "National Women's Day",date_from: '2024-08-09',date_to: '2024-08-09',},{id: '9df3f2dd-b9f5-4c91-a504-cdae3383f28b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Heritage Day',date_from: '2024-09-24',date_to: '2024-09-24',},{id: '075c4fd8-1a8e-4475-9c5b-2fad5174e956',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Day of Reconciliation',date_from: '2024-12-16',date_to: '2024-12-16',},{id: 'f7b7428a-0ccb-4ade-aece-ff535f545010',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Christmas Day',date_from: '2024-12-25',date_to: '2024-12-25',},{id: '44ed35dc-3030-4661-b982-c65e1456d52d',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'fd153122-d35f-4918-ad61-711c70141f99',holiday_calendar_country_name: 'South Africa',name: 'Day of Goodwill',date_from: '2024-12-26',date_to: '2024-12-26',},],},{id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'ar',holidays: [{id: 'b9b93592-3bcb-446c-bfaf-52b0168efbf6',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Carnival / Shrove',date_from: '2023-02-20',date_to: '2023-02-21',},{id: '1a5f4c26-6e1e-4998-9e7b-a09709047cb6',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Memorial Day',date_from: '2023-03-24',date_to: '2023-03-24',},{id: '49fa2bb7-cd1d-4d3f-9218-8b19ce6957dd',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Day of the Veterans',date_from: '2023-04-02',date_to: '2023-04-02',},{id: '77e0b5e7-d5c8-462a-b03f-e310c24504ed',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Maundy Thursday',date_from: '2023-04-06',date_to: '2023-04-06',},{id: '7fffbc6e-5295-403f-8608-00c81e2cf3d3',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Good Friday',date_from: '2023-04-07',date_to: '2023-04-07',},{id: '7ae372ff-588a-401c-97c2-d4dfc6208f7b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Labour Day',date_from: '2023-05-01',date_to: '2023-05-01',},{id: 'd8093bf7-17b3-4bce-b7fa-cc28ba40fa69',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'National Day/May 1810 Revolution',date_from: '2023-05-25',date_to: '2023-05-25',},{id: 'e7b12da6-6655-4d12-a0d7-4129e4e8e705',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Bridge Public Holiday ',date_from: '2023-06-19',date_to: '2023-06-19',},{id: '8da02f73-0e5d-4e8a-9a3f-ff2d76b9397b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Flag Day',date_from: '2023-06-20',date_to: '2023-06-20',},{id: 'ab2c4234-0c49-48cc-98b2-4a6b0c7c5291',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Independence Day',date_from: '2023-07-09',date_to: '2023-07-09',},{id: '72f142b8-3cb0-46e1-a0ca-7a54886419cd',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'San Martin Day ',date_from: '2023-08-21',date_to: '2023-08-21',},{id: 'b477b107-6835-4163-9a3b-78ec8aa1dffc',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Bridge Public Holiday ',date_from: '2023-10-13',date_to: '2023-10-13',},{id: '023ae9d8-9070-4858-9563-d09ec31e3588',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Day of Respect for Cultural Diversity ',date_from: '2023-10-16',date_to: '2023-10-16',},{id: '7c19936e-5b5b-457c-9429-7279fc8d151f',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'National Sovereignty Day ',date_from: '2023-11-20',date_to: '2023-11-20',},{id: 'a83e0c05-68f1-46db-b79c-c75a642f5a23',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Feast of the Immaculate Conception',date_from: '2023-12-08',date_to: '2023-12-08',},{id: '8b82a7b7-bad1-46b1-ad95-9dfdbaf60f82',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Christmas Day',date_from: '2023-12-25',date_to: '2023-12-25',},{id: 'c03bad0b-9dce-4123-acae-e56dc38ad5a4',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Carnival',date_from: '2024-02-12',date_to: '2024-02-13',},{id: 'ea6e679f-98d1-4075-9b17-bfa2d4356c22',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Good Friday',date_from: '2024-03-29',date_to: '2024-03-29',},{id: '5f9b716d-1dc9-4360-9e60-ce84bb5c0639',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Malvinas Day',date_from: '2024-04-02',date_to: '2024-04-02',},{id: 'fb3294ac-2762-4e4d-9972-ed51dfeccde4',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Labour Day',date_from: '2024-05-01',date_to: '2024-05-01',},{id: 'c5c6baa7-a9b0-46e4-8e35-2e2237a9ae6d',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: "Martín Miguel de Güemes' Day",date_from: '2024-06-17',date_to: '2024-06-17',},{id: '646d9683-224b-489b-8f3a-c0f5706205bb',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Flag Day',date_from: '2024-06-20',date_to: '2024-06-20',},{id: '081f91cd-7cf5-484f-a121-b7363112ac3e',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Independence Day',date_from: '2024-07-09',date_to: '2024-07-09',},{id: '8457adba-a89b-4711-b9d9-0edc38240596',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Death of San Martin',date_from: '2024-08-19',date_to: '2024-08-19',},{id: '5fba9801-2380-44aa-97e4-f27d1f1b6f38',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'National Sovereignty Day',date_from: '2024-11-18',date_to: '2024-11-18',},{id: '037f2edc-2825-4c19-810e-ba67e76bfebc',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'cd5ed006-229f-4beb-bc88-41857f77ce98',holiday_calendar_country_name: 'Argentina',name: 'Christmas Day',date_from: '2024-12-25',date_to: '2024-12-25',},],},{id: '7b06bc00-1659-41a4-a7fe-2344a60f5806',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'ca',holidays: [{id: '2b71cb35-6f07-44c4-8719-370658cf79d2',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '7b06bc00-1659-41a4-a7fe-2344a60f5806',holiday_calendar_country_name: 'Canada',name: 'New Year’s Day',date_from: '2023-01-02',date_to: '2023-01-02',},{id: '5621cda8-83ba-4ee0-b93c-794b9d47e922',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '7b06bc00-1659-41a4-a7fe-2344a60f5806',holiday_calendar_country_name: 'Canada',name: 'Good Friday',date_from: '2023-04-07',date_to: '2023-04-07',},{id: 'c8377cd2-76be-499e-80e8-a02a65106cff',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '7b06bc00-1659-41a4-a7fe-2344a60f5806',holiday_calendar_country_name: 'Canada',name: 'Canada Day',date_from: '2023-07-01',date_to: '2023-07-01',},{id: '582475f8-4cc7-4d38-acaf-da9671e9b4fe',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '7b06bc00-1659-41a4-a7fe-2344a60f5806',holiday_calendar_country_name: 'Canada',name: 'Labour Day',date_from: '2023-09-04',date_to: '2023-09-04',},{id: '7b6f5035-4c82-4611-83be-43ec5c4fd94d',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '7b06bc00-1659-41a4-a7fe-2344a60f5806',holiday_calendar_country_name: 'Canada',name: 'Christmas Day',date_from: '2023-12-25',date_to: '2023-12-25',},],},{id: '17827375-459c-44ba-a66b-bdd23cffa536',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'in',holidays: [{id: '5fd13fd1-6d8b-4ba0-953e-66a0e7149d89',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'New Year',date_from: '2023-01-02',date_to: '2023-01-02',},{id: '8ce88eab-8d69-4909-bd04-dc7056e6237f',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Republic Day',date_from: '2023-01-26',date_to: '2023-01-26',},{id: 'a945b9a5-ba9a-4bc4-9918-d94b58c5962b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Holi',date_from: '2023-03-07',date_to: '2023-03-07',},{id: '4d7ac004-18a7-42d0-a4fe-f63a637f465c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Holi',date_from: '2023-03-08',date_to: '2023-03-08',},{id: '40458087-9b8d-4e09-b56b-5af11eeade99',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Good Friday',date_from: '2023-04-07',date_to: '2023-04-07',},{id: '1c6cc166-7970-445d-a4d9-2d9bf8043cbe',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Id-ul-Zuha(Bakrid)',date_from: '2023-06-29',date_to: '2023-06-29',},{id: 'e0ee36b0-eeeb-4314-bdbd-e685290a0f10',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Independence Day',date_from: '2023-08-15',date_to: '2023-08-15',},{id: '3628a4c1-a1fd-4cc1-bdfc-11b6e3e41bfb',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Dussehra',date_from: '2023-10-24',date_to: '2023-10-24',},{id: 'd820a818-9cd9-4542-b9e2-5e3a6e603696',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Diwali',date_from: '2023-11-13',date_to: '2023-11-13',},{id: '810a4134-d613-459c-ba9f-61e70fd8a8ec',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Bhai Duj ',date_from: '2023-11-15',date_to: '2023-11-15',},{id: '56d1d67f-1e02-480e-9388-a1794dc5a355',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: "Guru Nanak's Birthday",date_from: '2023-11-27',date_to: '2023-11-27',},{id: '08e110dc-333f-42fd-95ed-20b7aa431d92',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Christmas',date_from: '2023-12-25',date_to: '2023-12-25',},{id: '4326866c-582b-4441-8c78-a45adb099001',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Gandhi Jayanti',date_from: '2023-10-02',date_to: '2023-10-02',},{id: '3ba2d7af-44a1-4cf1-9741-3f8087204cf9',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: "New Year's Day",date_from: '2024-01-01',date_to: '2024-01-01',},{id: 'd323cf03-d79a-4350-9378-d1f103b0d3df',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Republic Day',date_from: '2024-01-26',date_to: '2024-01-26',},{id: '2fabff40-0f26-4664-b407-a7341dc0cacc',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Holi',date_from: '2024-03-25',date_to: '2024-03-25',},{id: '075120d0-99e8-48bd-b5f8-1c85eae1d945',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Good Friday',date_from: '2024-03-29',date_to: '2024-03-29',},{id: '5f205d45-1b49-44f2-99ac-84f07dc97156',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Bakrid / Eid al Adha',date_from: '2024-06-17',date_to: '2024-06-17',},{id: 'f21f9c6d-aacb-437c-b011-7e58e4dbf8a8',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Independence Day',date_from: '2024-08-15',date_to: '2024-08-15',},{id: 'b30ad553-a51e-46a0-9f7b-2ea577939e42',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Gandhi Jayanti',date_from: '2024-10-02',date_to: '2024-10-02',},{id: '2e29155a-2817-4bc3-a543-edea65ea1819',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Diwali',date_from: '2024-10-31',date_to: '2024-11-01',},{id: 'd1ab8aff-88a0-4d36-81e9-0d14b0cc9a38',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Guru Nanak Jayanti',date_from: '2024-11-15',date_to: '2024-11-15',},{id: 'efc7e118-acbe-45d2-aa8b-d44a8d587f77',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '17827375-459c-44ba-a66b-bdd23cffa536',holiday_calendar_country_name: 'India',name: 'Christmas Day',date_from: '2024-12-25',date_to: '2024-12-25',},],},{id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'sg',holidays: [{id: '16da64ec-110d-4f80-be84-d993964c5c3d',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'New Year’s Day',date_from: '2023-01-02',date_to: '2023-01-02',},{id: 'cdab849e-08db-44ff-8e38-9b9c01a5ec06',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Chinese New Year',date_from: '2023-01-23',date_to: '2023-01-24',},{id: 'a4c3909f-9bb7-4ca5-aeef-37461f59de71',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Good Friday',date_from: '2023-04-07',date_to: '2023-04-07',},{id: 'ceed4c95-6e25-4c8b-8258-67246d2a2cdb',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Hari Raya Puasa',date_from: '2023-04-22',date_to: '2023-04-22',},{id: 'b9776a47-5542-45a6-b39b-2fa78a60f837',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Labour Day',date_from: '2023-05-01',date_to: '2023-05-01',},{id: '2b652bc0-d748-4469-8b1f-579e97dd1694',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Vesak Day',date_from: '2023-06-03',date_to: '2023-06-03',},{id: '0e4d5acf-7579-42af-a812-099ca4acc3cb',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: ' Hari Raya Haji',date_from: '2023-06-29',date_to: '2023-06-29',},{id: '578f85bb-c04c-4577-a7ef-7cb2583c5546',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'National Day',date_from: '2023-08-09',date_to: '2023-08-09',},{id: '87425c9c-9b3d-4fd1-b667-bf350c3341b4',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Deepavali',date_from: '2023-11-18',date_to: '2023-11-18',},{id: 'e8a90452-ca88-41d5-a41f-316cb591bc3b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Christmas Day',date_from: '2023-12-25',date_to: '2023-12-25',},{id: 'f128644c-bedb-431c-9458-02c49afceffb',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Vesak Day',date_from: '2024-05-22',date_to: '2024-05-22',},{id: '687e3b23-8f65-45f7-9e1d-5515f982342a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: "New Year's Day",date_from: '2024-01-01',date_to: '2024-01-01',},{id: '138d341f-34c6-43f3-b343-0368e1af640b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Chinese New Year',date_from: '2024-02-10',date_to: '2024-02-12',},{id: '42560d69-6860-44a6-8335-ba2bb59dfea4',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Good Friday',date_from: '2024-03-29',date_to: '2024-03-29',},{id: 'e167312e-6aaa-4315-a3b4-10fb02fc36ff',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Hari Raya Puasa',date_from: '2024-04-10',date_to: '2024-04-10',},{id: 'cae27f91-b23a-4385-93f5-789383895c43',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Labour Day',date_from: '2024-05-01',date_to: '2024-05-01',},{id: '14652be6-64d5-47a0-ad95-11c1d1f61ad7',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Hari Raya Haji',date_from: '2024-06-17',date_to: '2024-06-17',},{id: 'd9d3120e-0c6a-4b9a-ad50-8a5e681f4320',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'National Day',date_from: '2024-08-09',date_to: '2024-08-09',},{id: '05a6b527-01c6-42f8-8be0-4af10fb414ba',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Deepavali',date_from: '2024-10-31',date_to: '2024-10-31',},{id: '18b3e28a-a2f2-4e8a-bc9c-a642b48d0fdc',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'b6286371-8442-4117-b88b-0fdf3d8fd26f',holiday_calendar_country_name: 'Singapore',name: 'Christmas Day',date_from: '2024-12-25',date_to: '2024-12-25',},],},{id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'ch',holidays: [{id: '7f65e406-25b9-4739-adfd-7c9df4ee5c66',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: "Three King's Day ",date_from: '2023-01-06',date_to: '2023-01-06',},{id: 'ff16f243-c8b9-4e9f-8467-7186c0d8c7a2',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Republic Day ',date_from: '2023-03-01',date_to: '2023-03-01',},{id: '5f7f7487-ff5b-457c-85fb-29d9482a0706',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Good Friday',date_from: '2023-04-07',date_to: '2023-04-07',},{id: 'd5e8eaf8-a3c5-444b-9e5b-5ac3bf12ef87',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Easter Monday ',date_from: '2023-04-10',date_to: '2023-04-10',},{id: 'bb37864a-9a37-4f87-9434-985f3df683ef',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Nafelser Fahrt',date_from: '2023-04-13',date_to: '2023-04-13',},{id: '92cfa5c1-f685-41d8-b8e5-e0c2ead67048',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Ascension Day ',date_from: '2023-05-18',date_to: '2023-05-18',},{id: 'a607a582-251b-4db8-b885-aca6580c3e2a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'National Day',date_from: '2023-08-01',date_to: '2023-08-01',},{id: '204d12ed-769f-4075-bfd6-6e2b7e624a0b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Christmas Day',date_from: '2023-12-25',date_to: '2023-12-25',},{id: '69a039aa-513c-42a1-b8af-70e63146d945',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: "New Year's Day",date_from: '2024-01-01',date_to: '2024-01-01',},{id: 'c4fbe89d-4be2-4d1f-afe4-d1cc6cbcbe21',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Good Friday',date_from: '2024-03-29',date_to: '2024-03-29',},{id: 'add681e9-90c1-4f98-8bb5-fb9420a0c326',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Easter Monday',date_from: '2024-04-01',date_to: '2024-04-01',},{id: '5c4cb5de-955a-4c67-bc43-fee13a6f51ab',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Labour Day',date_from: '2024-05-01',date_to: '2024-05-01',},{id: 'a60c70fc-59ee-41da-8f5f-1c9172f55d65',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Ascension Day',date_from: '2024-05-09',date_to: '2024-05-09',},{id: 'cd427725-7645-4627-912e-fa501882a64c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Whit Monday',date_from: '2024-05-20',date_to: '2024-05-20',},{id: '9062b875-3382-41e2-96f5-e021e8e9db4c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'National Day',date_from: '2024-08-01',date_to: '2024-08-01',},{id: '5321393b-f60d-49a6-ac11-22e35e1b8de7',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: 'Christmas Day',date_from: '2024-12-25',date_to: '2024-12-25',},{id: 'b597979f-cef5-4a63-a827-8e0495acfd57',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '5ef84498-d60e-4c33-93b9-aef21fb28ce6',holiday_calendar_country_name: 'Switzerland',name: "St Stephen's Day",date_from: '2024-12-26',date_to: '2024-12-26',},],},{id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: true,country_code: 'ae',holidays: [{id: '5397514a-a272-4200-ae2e-c3e1c10041c9',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "Martyrs' Day",date_from: '2022-12-01',date_to: '2022-12-01',},{id: 'dfe298c5-cf38-4517-bf34-a89acd3be901',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "New Year's Day",date_from: '2021-01-01',date_to: '2021-01-01',},{id: '89a920cb-e13a-482b-8ee1-15835314ab34',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Israa & Miaraj Night',date_from: '2021-03-11',date_to: '2021-03-11',},{id: '34912504-cb63-42cc-b544-9d4623523678',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Eid Al Fitr Holiday',date_from: '2021-05-13',date_to: '2021-05-15',},{id: 'd898be6e-f932-4dbd-ba83-86c6b8f647d0',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Arafat (Haj) Day',date_from: '2021-07-19',date_to: '2021-07-19',},{id: '7b3fa239-4bf7-4a85-b669-d97af65a8f39',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Eid Al Adha Holiday',date_from: '2021-07-20',date_to: '2021-07-22',},{id: '8e805a7b-78e8-4a91-b086-d1762fb449a5',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Hijri New Years Day',date_from: '2021-08-09',date_to: '2021-08-09',},{id: 'dc9d426a-91d8-4832-b2ca-884c1901ae84',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "Prophet Mohammed's Birthday",date_from: '2021-10-18',date_to: '2021-10-18',},{id: '525dbe4b-530e-4ea0-ad4c-66c08d4923c8',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "Martyrs' Day",date_from: '2021-12-01',date_to: '2021-12-01',},{id: 'dafe9b4b-d7c1-4f1d-ae6d-aec0d3bb91fa',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'National Day',date_from: '2021-12-02',date_to: '2021-12-03',},{id: '519c28aa-fe3f-41a6-ac0f-23dd47853afa',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "New Year's Day",date_from: '2022-01-01',date_to: '2022-01-01',},{id: '723a99d5-4a95-4bd6-9ebe-63ea4c49c454',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Israa & Miaraj Night',date_from: '2022-03-01',date_to: '2022-03-01',},{id: '502915b0-d665-4b7c-bd5e-f9f191b57577',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Eid Al Fitr Holiday',date_from: '2022-04-30',date_to: '2022-05-04',},{id: '284766b4-db5a-49f5-b967-d046f471c7a2',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Arafat (Haj) Day',date_from: '2022-07-08',date_to: '2022-07-08',},{id: 'a5416de6-4916-43f9-a4d4-381d78773c34',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Eid Al Adha Holiday',date_from: '2022-07-09',date_to: '2022-07-11',},{id: '82d606d3-0d62-4436-80f9-25d2aaa9685c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Hijri New Years Day',date_from: '2022-07-30',date_to: '2022-07-30',},{id: '37a85e8a-c82d-48a0-b097-8f33d68758b8',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "Prophet Mohammed's Birthday",date_from: '2022-10-08',date_to: '2022-10-08',},{id: '0cd47842-abf5-47a7-90cc-730cce451d01',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'National Day',date_from: '2022-12-02',date_to: '2022-12-03',},{id: '5559d037-3cc4-402b-814e-0987d3837fc8',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'National Day',date_from: '2023-12-02',date_to: '2023-12-03',},{id: '0de7facf-23ed-42b9-a620-fb7ef40bd313',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "Martyrs' Day",date_from: '2023-12-01',date_to: '2023-12-01',},{id: '3507d19f-1837-48d6-b24e-afa880da6598',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "Prophet Mohammed's Birthday",date_from: '2023-09-29',date_to: '2023-09-29',},{id: '9cff89fb-cc61-4055-a8b6-b095a914aa60',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Hijri New Years Day',date_from: '2023-07-21',date_to: '2023-07-21',},{id: 'a0bc1cae-1ed7-4886-a272-71843e776182',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Eid Al Adha Holiday',date_from: '2023-06-28',date_to: '2023-06-30',},{id: '3701b9ad-1d0a-4111-9619-b9c0127c1e43',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Arafat (Haj) Day',date_from: '2023-06-27',date_to: '2023-06-27',},{id: '6d206447-ed31-4b46-9525-8c2c0089892a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Eid Al Fitr Holiday',date_from: '2023-04-20',date_to: '2023-04-23',},{id: 'e62ab848-3a25-48e4-8174-37d0a564ec6c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "New Year's Day",date_from: '2023-01-01',date_to: '2023-01-01',},{id: '46697ca2-d6b9-44bf-aaa5-07053371e8a7',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'National Day',date_from: '2024-12-02',date_to: '2024-12-03',},{id: 'dc75b189-fdc1-4ecf-9f71-7f8d3b11bb5c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "Martyrs' Day",date_from: '2024-12-01',date_to: '2024-12-01',},{id: 'c05b666f-6d47-4977-a380-e82e66f913e0',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "Prophet Mohammed's Birthday",date_from: '2024-09-15',date_to: '2024-09-15',},{id: 'a4fdd4a0-ff5a-4c5a-b367-88917e48fe30',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Hijri New Years Day',date_from: '2024-07-07',date_to: '2024-07-07',},{id: '117ae98c-5231-4470-8934-8e1c2aafaff5',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Eid Al Adha Holiday',date_from: '2024-06-16',date_to: '2024-06-18',},{id: '0455ba09-0e18-4d48-b1c4-4b0c11da7d2c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Arafat (Haj) Day',date_from: '2024-06-15',date_to: '2024-06-15',},{id: '0271c803-bd46-44d6-b090-9722a441f605',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: 'Eid Al Fitr Holiday',date_from: '2024-04-08',date_to: '2024-04-12',},{id: '5f3e461a-126f-4eb0-91d6-bd6800cbb5e6',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '712aa693-b63c-4eec-a5da-fc0e6e83935e',holiday_calendar_country_name: 'United Arab Emirates',name: "New Year's Day",date_from: '2024-01-01',date_to: '2024-01-01',},],},{id: 'dd54bfd5-f7cf-45be-8339-d45f4410d423',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'us',holidays: [{id: '183ff04d-525e-4dcc-88a6-8660c877bc49',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'dd54bfd5-f7cf-45be-8339-d45f4410d423',holiday_calendar_country_name: 'United States',name: 'New Year’s Day',date_from: '2023-01-01',date_to: '2023-01-01',},{id: 'e194a1ea-b4e1-4c70-818b-3424be9a1cfc',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'dd54bfd5-f7cf-45be-8339-d45f4410d423',holiday_calendar_country_name: 'United States',name: 'Martin Luther King, Jr. Day',date_from: '2023-01-16',date_to: '2023-01-16',},{id: '8ef992b0-a67a-41f8-a564-8242a3dc3e29',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'dd54bfd5-f7cf-45be-8339-d45f4410d423',holiday_calendar_country_name: 'United States',name: 'Memorial Day',date_from: '2023-05-29',date_to: '2023-05-29',},{id: '393dabf6-7ec7-4fed-881f-78020282e20b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'dd54bfd5-f7cf-45be-8339-d45f4410d423',holiday_calendar_country_name: 'United States',name: 'Independence Day',date_from: '2023-07-04',date_to: '2023-07-04',},{id: '3fa70038-356c-489c-bdde-b747afc1177a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'dd54bfd5-f7cf-45be-8339-d45f4410d423',holiday_calendar_country_name: 'United States',name: 'Labor Day',date_from: '2023-09-04',date_to: '2023-09-04',},{id: 'e114b7f8-ad2e-4cb3-b754-7d39e7dd4e6c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'dd54bfd5-f7cf-45be-8339-d45f4410d423',holiday_calendar_country_name: 'United States',name: 'Thanksgiving',date_from: '2023-11-23',date_to: '2023-11-23',},{id: 'a313246d-18d3-42b1-be59-4a6366e4110a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'dd54bfd5-f7cf-45be-8339-d45f4410d423',holiday_calendar_country_name: 'United States',name: 'Christmas Day',date_from: '2023-12-25',date_to: '2023-12-25',},],},{id: '6ad2c5db-e608-4785-9c59-e29ed420a813',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'gb',holidays: [{id: 'ee539051-70c8-43cc-af44-3b5af616b7cf',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'St. Patrick’s Day',date_from: '2023-03-17',date_to: '2023-03-17',},{id: 'd91e02d6-1fd3-4241-a5a3-ae6fc2bbd6ae',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'Battle of the Boyne',date_from: '2023-07-12',date_to: '2023-07-12',},{id: '0acd20a0-74a0-42cc-b901-a7bf653c8a13',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: "New Year's Day",date_from: '2024-01-01',date_to: '2024-01-01',},{id: 'a51a02f7-d43a-448b-8681-91170919c134',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: "Saint Patrick's Day",date_from: '2024-03-17',date_to: '2024-03-18',},{id: '076ff420-f40c-4153-95cb-6b191f80459a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'Good Friday',date_from: '2024-03-29',date_to: '2024-03-29',},{id: '12f79726-5b75-4646-b3f6-dc6beff519a4',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'Easter Monday',date_from: '2024-04-01',date_to: '2024-04-01',},{id: '2667001d-2f1c-49c6-b2ad-797d718a3b55',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'May Day',date_from: '2024-05-06',date_to: '2024-05-06',},{id: 'd376c488-2946-48aa-be74-652b52ec8685',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'Late May Bank Holiday',date_from: '2024-05-27',date_to: '2024-05-27',},{id: 'd75c11b8-2d33-4c5e-88c0-59e0420036d1',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'Battle of the Boyne',date_from: '2024-07-12',date_to: '2024-07-12',},{id: 'ac20fa94-5f28-41a8-9fea-c6d4a57c5064',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'August Bank Holiday',date_from: '2024-08-26',date_to: '2024-08-26',},{id: 'a5643bd1-6bf3-41e4-9506-c9f2ea43a870',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'Christmas Day',date_from: '2024-12-25',date_to: '2024-12-25',},{id: '8acea1cd-ea9b-42fa-8734-6f8f002e283b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '6ad2c5db-e608-4785-9c59-e29ed420a813',holiday_calendar_country_name: 'United Kingdom',name: 'Boxing Day',date_from: '2024-12-26',date_to: '2024-12-26',},],},{id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'pk',holidays: [{id: 'dab7ce52-45e8-4210-8b8d-c7e1af8735e3',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Kashmir Solidarity Day',date_from: '2022-02-05',date_to: '2022-02-05',},{id: '99d95741-2654-4ced-bd27-4bb653aab06b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Resolution Day',date_from: '2022-03-23',date_to: '2022-03-23',},{id: 'af046050-d56e-49bc-a06c-4aa90d4ed9d4',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Labour day',date_from: '2022-05-01',date_to: '2022-05-01',},{id: 'ba2d8b28-c8d0-4ee1-b9c0-5527acf024ef',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Eid al-Fitr',date_from: '2022-05-02',date_to: '2022-05-05',},{id: '66366a5b-cc25-4cba-8981-c63617b7b312',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Eid al-Adha',date_from: '2022-07-08',date_to: '2022-07-12',},{id: '34a53ee5-3d66-466b-bb18-acf5a056a7be',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Ashura',date_from: '2022-08-08',date_to: '2022-08-09',},{id: 'de09a11a-91e9-45b9-b02c-4b8e6f112fde',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Independence Day',date_from: '2022-08-14',date_to: '2022-08-14',},{id: '57cdd784-9227-4f56-82e8-2a4f79297e74',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: "Prophet's Birthday",date_from: '2022-10-09',date_to: '2022-10-09',},{id: 'd36379c1-376e-43e6-93b2-03974e7d5fc1',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: "Quaid-e-Azam's Birthday",date_from: '2022-12-25',date_to: '2022-12-25',},{id: 'ca96d90f-614d-45b7-9ea0-26c141d319ee',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Kashmir Day ',date_from: '2023-02-05',date_to: '2023-02-05',},{id: 'a4aee061-0b17-4b4f-bdbf-18f4f66a0cec',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Pakistan Day ',date_from: '2023-03-23',date_to: '2023-03-23',},{id: '4a24f97e-ab0a-4800-8bb6-a4434b5483b7',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Easter Monday ',date_from: '2023-04-10',date_to: '2023-04-10',},{id: 'd63f154c-cc41-4eb6-ae6e-aced4696271d',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Eid-ul-Fitr',date_from: '2023-04-22',date_to: '2023-04-24',},{id: 'd31a86c4-659d-485c-98c9-f264d3a2bd26',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Labour Day',date_from: '2023-05-01',date_to: '2023-05-01',},{id: '43f44a1a-71ae-4545-8ea9-84cc44b05906',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Eid ul Azha ',date_from: '2023-06-29',date_to: '2023-06-30',},{id: '9d49a94d-ffcd-4c04-8474-08c675e1c753',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Independence Day',date_from: '2023-08-14',date_to: '2023-08-14',},{id: '98e249f7-ac0c-416a-ba21-919152e9b82f',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '3c6698a6-2e05-43a4-bb56-e2c4b65c71d8',holiday_calendar_country_name: 'Pakistan',name: 'Christmas Day',date_from: '2023-12-25',date_to: '2023-12-25',},],},{id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'pt',holidays: [{id: 'cbb9cf66-02d1-4fe7-ad13-a1089bd4f899',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Assumption Day',date_from: '2023-08-15',date_to: '2023-08-15',},{id: '231d45e3-44aa-4a42-bbd2-ec845d6c0e09',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Republic Day ',date_from: '2023-10-05',date_to: '2023-10-05',},{id: '67e4c1c3-0a49-4a7f-8695-9155208020a9',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: "All Saints' Day",date_from: '2023-11-01',date_to: '2023-11-01',},{id: 'd15b9c06-12df-41ea-9441-ed603e78c6f5',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Good Friday',date_from: '2023-04-07',date_to: '2023-04-07',},{id: '205b6c39-e29f-4dcb-81ef-83607ca57462',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Easter Sunday',date_from: '2023-04-09',date_to: '2023-04-09',},{id: '0347d154-9922-4723-a02f-1bfd1cd75f58',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Liberation Day ',date_from: '2023-04-25',date_to: '2023-04-25',},{id: 'bd07e04b-dc77-4977-984f-45e21a387a6a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Labour Day',date_from: '2023-05-01',date_to: '2023-05-01',},{id: 'bafc688c-5525-4db9-a2da-45070b64e25d',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Corpus Christi',date_from: '2023-06-08',date_to: '2023-06-08',},{id: '7b9737f3-087a-44e0-960d-c6a88bc3dc07',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'National Day',date_from: '2023-06-10',date_to: '2023-06-10',},{id: 'e6d383d8-c06c-4752-b564-98bb3194fd79',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Independence Restoration Day',date_from: '2023-12-01',date_to: '2023-12-01',},{id: 'f0e1bd69-e065-47a6-a615-e8b69ce4568a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Immaculate Conception ',date_from: '2023-12-08',date_to: '2023-12-08',},{id: '8f5cddc4-c953-4c32-9232-52f6efc2cee4',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Christmas Day',date_from: '2023-12-25',date_to: '2023-12-25',},{id: '5154bc9d-5f6f-4afd-864d-3669c291a23c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: "New Year's Day",date_from: '2024-01-01',date_to: '2024-01-01',},{id: 'ce05204b-eb5b-4b05-9b1b-9787557cdd2c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Good Friday',date_from: '2024-03-29',date_to: '2024-03-29',},{id: 'b7aac363-e552-4dec-9782-7961b29dd0e0',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Liberation Day',date_from: '2024-04-25',date_to: '2024-04-25',},{id: '9669653e-b007-4dc2-bd58-615de2090fce',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Labour Day',date_from: '2024-05-01',date_to: '2024-05-01',},{id: '12b0382d-e3d4-4e4a-860f-cec3a6c0d95b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Corpus Christi',date_from: '2024-05-30',date_to: '2024-05-30',},{id: '36bf964a-8b8a-4c49-8ff1-d1852ab7e7d8',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'National Day',date_from: '2024-06-10',date_to: '2024-06-10',},{id: '7476c0d7-c12f-44dd-9131-f24063ce4a63',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Assumption Day',date_from: '2024-08-15',date_to: '2024-08-15',},{id: 'c002a32d-2147-4e92-b752-bf295cd48e1a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: "All Saints' Day",date_from: '2024-11-01',date_to: '2024-11-01',},{id: 'd648d300-917b-47ff-aa94-cd3a405a4d9b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Christmas Day',date_from: '2024-12-25',date_to: '2024-12-25',},{id: '6462d79b-120a-4a84-afe6-e446ced4ec3e',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: "St. John's Day",date_from: '2024-06-24',date_to: '2024-06-24',},{id: '3c901821-ad23-47b6-8fc1-410652144ad6',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'faec4ec8-d72b-4c15-bac4-388d858adf41',holiday_calendar_country_name: 'Portugal',name: 'Bank Holiday',date_from: '2024-02-13',date_to: '2024-02-13',},],},{id: 'f11b9389-7288-48ae-bec6-81487cb89698',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'fr',holidays: [{id: '62f3d0b6-8c9b-476d-a81f-7eb25d7a3cdf',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: "New Year's Day",date_from: '2024-01-01',date_to: '2024-01-01',},{id: '15f08cac-f0dc-4589-b174-1db7f3cae16a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: 'Good Friday',date_from: '2024-03-29',date_to: '2024-03-29',},{id: '8462141a-4646-4fb5-8a1a-2bf43caa5175',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: 'Easter Monday',date_from: '2024-04-01',date_to: '2024-04-01',},{id: '3b1ce336-9248-43ba-8cb0-75d28ce93136',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: 'Labour Day',date_from: '2024-05-01',date_to: '2024-05-01',},{id: '69840492-1dc1-4ba6-9cad-ae529d7b79aa',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: 'Victory Day',date_from: '2024-05-08',date_to: '2024-05-08',},{id: '2dfd2ef3-88e3-4e03-86a8-217c6a7bf614',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: 'Ascension Day',date_from: '2024-05-09',date_to: '2024-05-09',},{id: '9e35e6e4-7f11-41b7-861a-446098e7963c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: 'Whit Monday',date_from: '2024-05-20',date_to: '2024-05-20',},{id: 'bc34e6e7-2cf8-4d05-a135-9d5a47b9c259',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: 'Assumption Day',date_from: '2024-08-15',date_to: '2024-08-15',},{id: '7c7fe5bb-2c07-4e7d-a6a1-6b9b4946b97e',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: "All Saints' Day",date_from: '2024-11-01',date_to: '2024-11-01',},{id: 'bb034271-de7f-4922-835a-20853f5fa48b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: 'Armistice Day',date_from: '2024-11-11',date_to: '2024-11-11',},{id: 'e2f66acb-8436-4eef-be1a-86a58a4eb5dc',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: 'Christmas Day',date_from: '2024-12-25',date_to: '2024-12-25',},{id: 'fa4bcf52-2818-4d3d-954a-b029b474993e',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'f11b9389-7288-48ae-bec6-81487cb89698',holiday_calendar_country_name: 'France',name: "St Stephen's Day",date_from: '2024-12-26',date_to: '2024-12-26',},],},{id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'de',holidays: [{id: '07858f7c-16dc-4d0e-be8f-343af528cefe',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: 'May Day Holiday',date_from: '2023-05-01',date_to: '2023-05-01',},{id: 'ac287f1e-5ce9-454d-a1f4-dc91efa1588c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: 'Greek National Day / Ochi Day',date_from: '2023-10-28',date_to: '2023-10-28',},{id: 'faf2e2e6-a45a-48d9-b77c-01e838067742',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: 'Christmas Day',date_from: '2023-12-25',date_to: '2023-12-25',},{id: 'd14c02c5-0a5e-4c5d-b068-1f0ad722ec3e',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: 'Ascension Day (Christi Himmelfahrt)',date_from: '2023-05-18',date_to: '2023-05-18',},{id: '5e9d680a-3e97-4985-9a92-371d5df7e505',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: 'Whit Monday (Pfingstmontag)',date_from: '2023-05-29',date_to: '2023-05-29',},{id: '8c73e57b-63e9-4ea4-8203-1fdac036602e',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: 'Germany Unity Day (Tag der Deutschen Einheit)',date_from: '2023-10-03',date_to: '2023-10-03',},{id: 'fc856a88-1d75-4cd7-aab6-898711febf66',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: 'International Women’s Day (Frauentag)',date_from: '2023-03-08',date_to: '2023-03-08',},{id: '28c40ba5-4d1b-4501-baa9-dfec34723a8c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: 'Good Friday (Karfreitag)',date_from: '2023-04-07',date_to: '2023-04-07',},{id: 'b2f1bc44-a4b2-4fd9-90fd-5a5808a3f6cc',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: 'St. Stephen’s Day (Zweiter Weihnachtsfeiertag)',date_from: '2023-12-26',date_to: '2023-12-26',},{id: '482e35ce-45a8-43e2-9bfb-8a4dd751c375',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '57b388c1-ac74-4d16-99c7-f4af6fde5f0c',holiday_calendar_country_name: 'Germany',name: "New Year's Day",date_from: '2023-01-01',date_to: '2023-01-01',},],},{id: '27fcd998-4096-46ed-8156-cbe367432aac',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'gr',holidays: [{id: 'aa339b89-1589-4e4e-87c3-352c460a9801',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'May Day Holiday',date_from: '2023-05-01',date_to: '2023-05-01',},{id: '8692d345-d5a2-48e5-8514-5931c800ac5c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Assumption Day',date_from: '2023-08-15',date_to: '2023-08-15',},{id: '5936f505-70e0-450b-bf23-8d9a6caa440a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: "New Year's Day",date_from: '2023-01-01',date_to: '2023-01-01',},{id: 'f12592c8-b477-4de5-8fe0-9c5bc138a290',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Greek National Day / Ochi Day',date_from: '2023-10-28',date_to: '2023-10-28',},{id: '05638f71-69d8-4357-ba35-2284dd99342b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Epiphany',date_from: '2023-01-06',date_to: '2023-01-06',},{id: '0eab0f16-77ad-4a47-ae85-2d49c079124b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Christmas Day',date_from: '2023-12-25',date_to: '2023-12-25',},{id: '929fa415-b9e6-4085-96e1-57cedbdbe8d0',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Orthodox Ash Monday',date_from: '2023-04-27',date_to: '2023-04-27',},{id: 'ce9af3c6-c2e1-44cd-af7e-6aa9df07d8ad',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Second Day of Christmas',date_from: '2023-12-26',date_to: '2023-12-26',},{id: 'e306ecd3-e6e7-4124-ad9e-067eefc17334',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Greece Independence Day',date_from: '2023-03-25',date_to: '2023-03-25',},{id: 'd0c5f45e-d8c4-4438-aa84-125e0ce2e4a4',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Orthodox Good Friday',date_from: '2023-04-14',date_to: '2023-04-14',},{id: 'b1f49ddb-67ee-44e6-a98b-04d64f07feb5',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Orthodox Easter Sunday',date_from: '2023-04-16',date_to: '2023-04-16',},{id: 'd1c8b98f-7fc1-4ef2-a5fb-de23e76bdd38',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Orthodox Easter Monday',date_from: '2023-04-17',date_to: '2023-04-17',},{id: '0ea0cf98-6ebf-4bc7-b12c-2af18f53c9f4',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: "New Year's Day",date_from: '2024-01-01',date_to: '2024-01-01',},{id: '8360e3f4-27d9-4635-a072-bed4080b828f',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Epiphany',date_from: '2024-01-06',date_to: '2024-01-06',},{id: 'a2a0b5a1-987c-4a5b-8f28-7d49d9850bba',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Orthodox Ash Monday',date_from: '2024-03-18',date_to: '2024-03-18',},{id: '05d13d37-218e-4374-b1c7-91104fcd3f2d',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Independence Day',date_from: '2024-03-25',date_to: '2024-03-25',},{id: 'c4a7a380-da40-4fa7-9060-ec36ecee2535',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Labour Day',date_from: '2024-05-01',date_to: '2024-05-01',},{id: 'ba4be7fe-dfb6-43d5-b045-0047c72bd834',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Orthodox Good Friday',date_from: '2024-05-03',date_to: '2024-05-06',},{id: 'fb10e948-dd67-4af4-adea-afcd55cef932',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Orthodox Whit Monday',date_from: '2024-06-24',date_to: '2024-06-24',},{id: 'd9df553f-8e8e-48a2-b620-3739c7576afc',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Assumption Day',date_from: '2024-08-15',date_to: '2024-08-15',},{id: '24889db5-89aa-4e0b-8d97-f87b5a5c50ef',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Ochi Day',date_from: '2024-10-28',date_to: '2024-10-28',},{id: 'fc16b961-0e92-4e4d-9fd9-639e7dbad1ec',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: '27fcd998-4096-46ed-8156-cbe367432aac',holiday_calendar_country_name: 'Greece',name: 'Christmas Day',date_from: '2024-12-25',date_to: '2024-12-26',},],},{id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',built_in: false,country_code: 'ru',holidays: [{id: '0109376e-98af-4ba0-8484-91e1c3ee6617',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'Defence of the Fatherland Day',date_from: '2023-02-23',date_to: '2023-02-24',},{id: 'ff893fb9-df39-4250-8b27-e569cbe8771b',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'Orthodox Easter Day',date_from: '2023-04-16',date_to: '2023-04-16',},{id: '5b84ae9c-7dc0-4611-9bb2-9ce6526e5a6a',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'Day of Spring and Labor',date_from: '2023-05-01',date_to: '2023-05-01',},{id: '17cabfa9-37d7-4ef1-81a9-b36bd3e95dc1',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'Victory Day',date_from: '2023-05-08',date_to: '2023-05-09',},{id: '670cdd1b-a2dc-46a5-a0c3-5de05631922e',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'Russia Day',date_from: '2023-06-12',date_to: '2023-06-12',},{id: '8a1fba17-e6dd-44fb-90a2-8c5b0d2aa58c',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'Day of Unity',date_from: '2023-11-06',date_to: '2023-11-06',},{id: '16897149-9da7-4c9e-a345-0ff02175f13d',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'New Year Holidays ',date_from: '2024-01-01',date_to: '2024-01-05',},{id: '164a55ee-5574-4178-86cc-395bb63fb7cd',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'Christmas Day',date_from: '2024-01-08',date_to: '2024-01-08',},{id: 'f91ba6b7-7729-44ab-b3a7-c33a6a9410dd',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'Defence of the Fatherland Day',date_from: '2024-02-23',date_to: '2024-02-23',},{id: '4a251a84-0ca0-49a9-8478-4d53e7952ccc',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: "Women's Day",date_from: '2024-03-08',date_to: '2024-03-08',},{id: '6aae6f02-6e80-4f67-b45c-730bb01802c8',company_id: '6e351967-b6e0-4188-9a7b-b41c10cc404b',holiday_calendar_id: 'a7c13729-6edb-4fda-90c0-9e79f140049c',holiday_calendar_country_name: 'Russia',name: 'Spring and Labour Day',date_from: '2024-05-01',date_to: '
May 1, 2024Optimal Attestation Packing in Lighthouse
Aug 7, 2023The attestations aggreagtion problem can be broken down into two parts:
Jul 31, 2023https://github.com/ankurdubey521/rust-advent-of-code-2022
Jul 24, 2023or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up