💰 Finance

Maryland Paycheck Calculator

Free maryland paycheck calculator — get instant accurate results with step-by-step breakdown. No signup required.

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 31, 2026
🧮 Maryland Paycheck Calculator
Net Pay Per Period
$0.00
Annual Net: $0.00
function calculate() { const salary = parseFloat(document.getElementById("i1").value) || 0; const freq = document.getElementById("i2").value; const status = document.getElementById("i3").value; const fedAllow = parseInt(document.getElementById("i4").value) || 0; const mdAllow = parseInt(document.getElementById("i5").value) || 0; const preTax = parseFloat(document.getElementById("i6").value) || 0; const addWithholding = parseFloat(document.getElementById("i7").value) || 0; const periods = { weekly: 52, biweekly: 26, semimonthly: 24, monthly: 12 }; const p = periods[freq] || 26; const grossPerPeriod = salary / p; const taxablePerPeriod = Math.max(0, grossPerPeriod - preTax); // Federal tax estimation (simplified 2024 brackets) let annualFedTax = 0; let annualTaxable = salary - (fedAllow * 4300); annualTaxable = Math.max(0, annualTaxable); const fedBrackets = status === "married" ? [[0, 0.1], [22000, 0.12], [89450, 0.22], [190750, 0.24], [364200, 0.32], [462500, 0.35], [693750, 0.37]] : status === "head" ? [[0, 0.1], [15700, 0.12], [59850, 0.22], [95350, 0.24], [182100, 0.32], [231250, 0.35], [578125, 0.37]] : [[0, 0.1], [11000, 0.12], [44725, 0.22], [95375, 0.24], [182100, 0.32], [231250, 0.35], [578125, 0.37]]; let remaining = annualTaxable; for (let i = 0; i < fedBrackets.length; i++) { const [bracketMin, rate] = fedBrackets[i]; const bracketMax = i < fedBrackets.length - 1 ? fedBrackets[i+1][0] : Infinity; const bracketIncome = Math.min(Math.max(remaining, 0), bracketMax - bracketMin); annualFedTax += bracketIncome * rate; remaining -= bracketIncome; if (remaining <= 0) break; } // Maryland state tax (progressive, simplified) let annualMDTax = 0; let mdTaxable = salary - (mdAllow * 3200); mdTaxable = Math.max(0, mdTaxable); const mdBrackets = [ [0, 0.02], [1000, 0.03], [2000, 0.04], [3000, 0.0475], [100000, 0.05], [125000, 0.0525], [150000, 0.055], [250000, 0.0575] ]; let mdRemaining = mdTaxable; for (let i = 0; i < mdBrackets.length; i++) { const [bracketMin, rate] = mdBrackets[i]; const bracketMax = i < mdBrackets.length - 1 ? mdBrackets[i+1][0] : Infinity; const bracketIncome = Math.min(Math.max(mdRemaining, 0), bracketMax - bracketMin); annualMDTax += bracketIncome * rate; mdRemaining -= bracketIncome; if (mdRemaining <= 0) break; } // FICA (Social Security + Medicare) const ssWageBase = 168600; const ssTax = Math.min(salary, ssWageBase) * 0.062; const medicareTax = salary * 0.0145; const additionalMedicare = salary > 200000 ? (salary - 200000) * 0.009 : 0; const annualFICA = ssTax + medicareTax + additionalMedicare; const annualTotalTax = annualFedTax + annualMDTax + annualFICA + (addWithholding * p); const annualNet = salary - annualTotalTax; const netPerPeriod = annualNet / p; const fedPerPeriod = annualFedTax / p; const mdPerPeriod = annualMDTax / p; const ficaPerPeriod = annualFICA / p; const addWithPerPeriod = addWithholding; const totalDeductionsPerPeriod = preTax + fedPerPeriod + mdPerPeriod + ficaPerPeriod + addWithPerPeriod; // Determine color let netColor = "green"; if (netPerPeriod < 500) netColor = "red"; else if (netPerPeriod < 1000) netColor = "yellow"; let taxColor = "red"; if (annualTotalTax / salary < 0.2) taxColor = "green"; else if (annualTotalTax / salary < 0.3) taxColor = "yellow"; // Result grid const gridItems = [ { label: "Gross Pay/Period", value: "$" + grossPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "" }, { label: "Federal Tax/Period", value: "$" + fedPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: taxColor }, { label: "Maryland Tax/Period", value: "$" + mdPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: taxColor }, { label: "FICA/Period", value: "$" + ficaPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "yellow" }, { label: "Pre-Tax Deductions/Period", value: "$" + preTax.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "" }, { label: "Additional Withholding/Period", value: "$" + addWithPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: "red" }, { label: "Net Pay/Period", value: "$" + netPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}), cls: netColor } ]; // Primary result const primaryLabel = "Net Pay Per Period (" + freq.charAt(0).toUpperCase() + freq.slice(1) + ")"; const primaryValue = "$" + netPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); const primarySub = "Annual Net: $" + annualNet.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); showResult(primaryValue, primaryLabel, gridItems, primarySub); // Breakdown table let breakdownHTML = `
CategoryAnnual AmountPer Period% of Gross
Gross Salary$${salary.toLocaleString(undefined, {minimumFractionDigits: 2})}$${grossPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2})}100.00%
Federal Tax$${annualFedTax.toLocaleString(undefined, {minimumFractionDigits: 2})}$${fedPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2})}${(annualFedTax/salary*100).toFixed(2)}%
Maryland State Tax$${annualMDTax.toLocaleString(undefined, {minimumFractionDigits: 2})}$${mdPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2})}${(annualMDTax/salary*100).toFixed(2)}%
FICA (SS + Medicare)$${annualFICA.toLocaleString(undefined, {minimumFractionDigits: 2})}$${ficaPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2})}${(annualFICA/salary*100).toFixed(2)}%
Pre-Tax Deductions$${(preTax*p).toLocaleString(undefined, {minimumFractionDigits: 2})}$${preTax.toLocaleString(undefined, {minimumFractionDigits: 2})}${(preTax*p/salary*100).toFixed(2)}%
Additional Withholding$${(addWithholding*p).toLocaleString(undefined, {minimumFractionDigits: 2})}$${addWithholding.toLocaleString(undefined, {minimumFractionDigits: 2})}${(addWithholding*p/salary*100).toFixed(2)}%
Net Pay$${annualNet.toLocaleString(undefined, {minimumFractionDigits: 2})}$${netPerPeriod.toLocaleString(undefined, {minimumFractionDigits: 2})}${(annualNet/salary*100).toFixed(2)}%
`; document.getElementById("breakdown-wrap").innerHTML =
📊 Maryland Paycheck Breakdown: Gross vs Net Pay After Taxes & Deductions

What is Maryland Paycheck Calculator?

A Maryland Paycheck Calculator is a specialized financial tool designed to compute an employee's net pay after deducting all mandatory federal and state-specific taxes, including Maryland state income tax, local county taxes, FICA (Social Security and Medicare), and any voluntary deductions like retirement contributions or health insurance premiums. Unlike generic paycheck calculators, this tool incorporates the unique tax brackets, standard deductions, and local tax rates that vary across Maryland's 23 counties and Baltimore City, ensuring precise take-home pay estimates for residents and employers alike.

This calculator is essential for Maryland workers—from hourly retail employees in Baltimore to salaried professionals in Bethesda—who need to budget accurately, as well as for small business owners and HR managers who must forecast payroll expenses without guesswork. It matters because Maryland has a progressive state income tax system with rates from 2% to 5.75%, plus county-specific "piggyback" taxes that can add up to 3.2% of taxable income, making manual calculations error-prone and time-consuming.

Our free online Maryland Paycheck Calculator delivers instant, accurate results with a complete step-by-step breakdown of every deduction, requiring no signup or personal information, making it the ideal tool for anyone seeking clarity on their net earnings.

How to Use This Maryland Paycheck Calculator

Using our Maryland Paycheck Calculator is straightforward and takes less than two minutes. Simply input your gross pay, filing status, pay frequency, and a few key details about your work situation, and the tool handles the rest, applying current Maryland tax laws and federal withholding tables automatically.

  1. Enter Your Gross Pay: Input your total earnings before any deductions for the selected pay period. This can be your hourly wage multiplied by hours worked, or your fixed salary amount. The calculator accepts both hourly and salary entries, so choose the option that matches your pay structure.
  2. Select Your Pay Frequency: Choose how often you get paid—weekly, bi-weekly, semi-monthly, or monthly. This setting is critical because tax withholding tables and deduction calculations are based on the pay period length. For example, a bi-weekly paycheck will have different withholding amounts than a semi-monthly one even if the annual salary is identical.
  3. Choose Your Filing Status: Select your federal and Maryland filing status from options like Single, Married Filing Jointly, Married Filing Separately, or Head of Household. This determines which tax brackets and standard deduction amounts apply to your income, directly impacting your net pay.
  4. Enter Maryland County or Baltimore City: This is a unique and essential step for Maryland residents. Select your specific county of residence (e.g., Montgomery County, Prince George's County, Anne Arundel County) or Baltimore City. Each locality has a different local income tax rate, ranging from 1.25% in Worcester County to 3.2% in Baltimore City and Montgomery County. Getting this wrong can skew your net pay by hundreds of dollars per year.
  5. Add Optional Deductions: Include any pre-tax deductions such as 401(k) contributions, health insurance premiums, flexible spending account (FSA) contributions, or other voluntary deductions. Also, enter any post-tax deductions like wage garnishments or union dues. The calculator will subtract these from your gross pay at the correct stage of the calculation.

For best results, always use your most recent pay stub to verify your year-to-date earnings and current withholding allowances. The calculator is designed to match the official IRS and Maryland Comptroller formulas, but your employer may use slightly different rounding or cafeteria plan configurations, so treat the result as a highly accurate estimate.

Formula and Calculation Method

The Maryland Paycheck Calculator uses a multi-step formula that mirrors the actual payroll process used by employers and the Maryland Comptroller of the Treasury. The core logic combines federal withholding calculations based on IRS Publication 15-T with Maryland-specific state tax rates and local county surtaxes, all adjusted for the selected pay frequency.

Formula
Net Pay = Gross Pay – (Federal Income Tax + Social Security Tax + Medicare Tax + Maryland State Income Tax + Maryland Local County Tax + Pre-tax Deductions + Post-tax Deductions)

Each variable in this formula is calculated independently using specific rates, thresholds, and brackets that change annually. The tool automatically updates to reflect the latest tax year, so you never have to worry about outdated figures.

Understanding the Variables

Gross Pay: This is your total earnings before any deductions. For hourly workers, it is hours worked multiplied by hourly rate, including overtime if applicable. For salaried employees, it is the periodic salary amount (e.g., annual salary divided by 26 for bi-weekly).

Federal Income Tax: Calculated using the IRS percentage method based on your filing status, pay frequency, and the number of withholding allowances you claim. The calculator applies the standard deduction and then uses the progressive federal tax brackets (10%, 12%, 22%, 24%, 32%, 35%, 37%) to your taxable income.

Social Security Tax: A flat 6.2% of gross wages up to the annual wage base limit ($168,600 in 2024). Once your year-to-date earnings exceed this cap, no further Social Security tax is withheld for the remainder of the year.

Medicare Tax: A flat 1.45% of all gross wages with no cap. High earners (above $200,000 for single filers) pay an additional 0.9% Medicare surtax on wages exceeding that threshold.

Maryland State Income Tax: Maryland uses a progressive tax system with rates from 2% to 5.75%. The calculator applies the standard deduction ($2,550 for single filers, $5,100 for married filing jointly in 2024) and then taxes the remaining income according to the brackets: 2% on first $1,000, 3% on $1,001–$2,000, 4% on $2,001–$3,000, 4.75% on $3,001–$100,000 (single) or $150,000 (joint), and 5.75% over that.

Maryland Local County Tax: Each county and Baltimore City imposes a local income tax rate on your Maryland taxable income. Rates range from 1.25% (Worcester County) to 3.2% (Baltimore City, Montgomery County, and Prince George's County). This is calculated as a percentage of your state taxable income, not your gross pay.

Step-by-Step Calculation

First, the calculator determines your federal taxable income by subtracting any pre-tax deductions (like 401(k) contributions) and the federal standard deduction from your gross pay. It then applies the federal income tax brackets to compute your federal withholding. Second, Social Security and Medicare taxes are calculated as flat percentages of gross wages, with the Social Security wage cap checked against annualized earnings. Third, Maryland state taxable income is computed by subtracting pre-tax deductions and the Maryland standard deduction from gross pay. The state tax brackets are applied to this amount. Fourth, the local county tax is calculated as a percentage of your Maryland taxable income using your selected county's rate. Finally, all withholding amounts and any post-tax deductions are subtracted from gross pay to arrive at your net pay.

Example Calculation

Let's walk through a realistic scenario to see exactly how the Maryland Paycheck Calculator works in practice. We'll use a common situation for a single worker living in Montgomery County, which has one of the highest local tax rates in the state.

Example Scenario: Sarah is a single software developer living in Silver Spring, Montgomery County, Maryland. She earns an annual salary of $85,000 and is paid bi-weekly (26 pay periods per year). She contributes 5% of her salary to a traditional 401(k) and has $50 per pay period deducted for health insurance. She claims single filing status with 2 withholding allowances.

Step 1: Calculate gross pay per period. $85,000 ÷ 26 = $3,269.23 per bi-weekly paycheck.

Step 2: Subtract pre-tax deductions. 401(k): 5% of $3,269.23 = $163.46. Health insurance: $50.00. Total pre-tax deductions: $213.46. Federal taxable income: $3,269.23 – $213.46 = $3,055.77. This same amount is used for Maryland state taxable income before the state standard deduction.

Step 3: Calculate federal income tax. Using the 2024 IRS percentage method for single filers paid bi-weekly, the standard deduction for a single filer is $15,000 annually, or $576.92 per bi-weekly period. Federal taxable income after standard deduction: $3,055.77 – $576.92 = $2,478.85. The first $1,150 is taxed at 10% = $115.00. The remaining $1,328.85 is taxed at 12% = $159.46. Total federal withholding: $115.00 + $159.46 = $274.46.

Step 4: Calculate Social Security and Medicare. Social Security: 6.2% of $3,269.23 = $202.69. Medicare: 1.45% of $3,269.23 = $47.40. Total FICA: $250.09.

Step 5: Calculate Maryland state income tax. Maryland taxable income after state standard deduction ($2,550 annually ÷ 26 = $98.08 per period): $3,055.77 – $98.08 = $2,957.69. Apply Maryland brackets: First $1,000 at 2% = $20.00. Next $1,000 at 3% = $30.00. Next $957.69 at 4% = $38.31. Total Maryland state tax: $20.00 + $30.00 + $38.31 = $88.31.

Step 6: Calculate Montgomery County local tax. Montgomery County rate is 3.2%. Local tax: 3.2% of $2,957.69 = $94.65.

Step 7: Calculate net pay. Gross pay: $3,269.23 – Federal tax $274.46 – Social Security $202.69 – Medicare $47.40 – Maryland state tax $88.31 – Montgomery County tax $94.65 = $2,561.72 per bi-weekly paycheck.

Sarah's net pay of approximately $2,562 per pay period represents about 78.4% of her gross income. Over the course of a year, she would take home roughly $66,604 after all taxes and deductions.

Another Example

Consider Michael, a married teacher in Baltimore City with two children. He earns $62,000 annually, is paid semi-monthly (24 pay periods), and claims married filing jointly with 3 allowances. He contributes $100 per pay period to a dependent care FSA and has $200 per pay period for family health insurance. Baltimore City local tax rate is 3.2%. Gross per period: $62,000 ÷ 24 = $2,583.33. Pre-tax deductions: $100 FSA + $200 insurance = $300. Federal taxable income: $2,283.33. Federal standard deduction for married joint filers is $30,000 annually, or $1,250 per period. Taxable after standard deduction: $1,033.33 taxed at 10% = $103.33. FICA: Social Security $160.17, Medicare $37.46. Maryland taxable income after state standard deduction ($5,100 ÷ 24 = $212.50): $2,283.33 – $212.50 = $2,070.83. Maryland state tax: first $1,000 at 2% = $20, next $1,000 at 3% = $30, remaining $70.83 at 4% = $2.83, total $52.83. Local tax: 3.2% of $2,070.83 = $66.27. Net pay: $2,583.33 – $103.33 – $160.17 – $37.46 – $52.83 – $66.27 = $2,163.27 per semi-monthly check. This example shows how different filing statuses and deductions significantly affect net income.

Benefits of Using Maryland Paycheck Calculator

Using a dedicated Maryland Paycheck Calculator provides substantial advantages over generic calculators or manual math, especially given the state's unique county-based tax system. Here are the key benefits that make this tool indispensable for financial planning.

  • County-Specific Accuracy: Maryland is one of the few states that allows counties to impose their own income tax on top of state tax. A generic calculator cannot account for the 3.2% rate in Montgomery County versus the 1.25% rate in Worcester County. Our tool lets you select your exact county, ensuring your net pay estimate is accurate to within a few dollars, preventing budget shortfalls or surprise tax bills at year-end.
  • Time Savings and Error Reduction: Manually calculating Maryland taxes requires referencing multiple tax tables, applying the correct brackets for your pay frequency, and performing complex arithmetic. Our calculator does all of this in seconds, eliminating the risk of math errors or misapplied tax rates that could lead to over- or under-withholding. This is particularly valuable for freelancers, gig workers, and small business owners who must estimate quarterly taxes.
  • Better Budgeting and Financial Planning: Knowing your exact take-home pay allows you to create a realistic monthly budget, plan for major expenses like rent or mortgage payments, and set savings goals. The calculator's detailed breakdown shows exactly where your money goes—federal tax, state tax, local tax, FICA, and benefits—giving you full transparency to adjust withholdings or deductions if needed.
  • Payroll Compliance for Employers: Small business owners and HR professionals in Maryland can use this calculator to quickly estimate payroll costs for new hires, verify that their payroll software is calculating correctly, or project the financial impact of raises and bonuses. It helps ensure compliance with Maryland tax laws without needing to consult a tax professional for every pay period.
  • No Signup, No Data Storage: Unlike many financial tools that require creating an account or entering sensitive personal information, our calculator is completely free and anonymous. You can run unlimited calculations without any commitment, making it ideal for comparing different scenarios—like how a raise, a change in filing status, or moving to a different county would affect your net pay.

Tips and Tricks for Best Results

To get the most accurate and useful results from the Maryland Paycheck Calculator, follow these expert tips and avoid common pitfalls. Small details can make a big difference in your final net pay figure.

Pro Tips

  • Always use your most recent pay stub to verify your current year-to-date earnings and withholding allowances. The calculator assumes you are starting fresh each pay period, but if you have already exceeded the Social Security wage base ($168,600 in 2024) for the year, you should manually set the Social Security tax to $0 for the remainder of the year to avoid over-withholding.
  • If you work in a different Maryland county than where you live, select your county of residence for local tax calculations. Maryland local income tax is based on your residence, not your work location. For example, if you work in Baltimore City but live in Howard County, you pay Howard County's local tax rate (3.20% as of 2024), not Baltimore City's.
  • Use the calculator to run "what-if" scenarios before making financial decisions. For instance, if you are considering increasing your 401(k) contribution from 5% to 10%, run both numbers to see exactly how much less your net pay will be versus how much more you save for retirement. This helps you find the right balance.
  • For hourly workers with variable hours, calculate your net pay based on your average weekly hours over the past month rather than a single week. This gives a more realistic picture of your typical take-home pay and helps with budgeting for irregular income.

Common Mistakes to Avoid

  • Using the Wrong County: The most common error is selecting the wrong Maryland county or forgetting to select one at all. If you leave the county field blank or choose "None," the calculator will default to the state average, which can be off by hundreds of dollars per year. Always double-check your county of residence, especially if you recently moved.
  • Confusing Gross Pay with Net Pay: Many users input their desired net pay (what they want to take home) into the gross pay field. This reverses the calculation and yields meaningless results. Always enter your total earnings before any deductions. If you are trying to determine what gross salary you need to achieve a specific net pay, use a gross-up calculator instead.
  • Ignoring Pre-Tax vs. Post-Tax Deductions: The order of deductions matters. Pre-tax deductions (like traditional 401(k) and health insurance) reduce your taxable income for federal, state, and local taxes, lowering your overall tax burden. Post-tax deductions (like Roth 401(k) contributions or wage garnishments) do not reduce taxable income. Mixing them up or entering them in the wrong field will produce an incorrect net pay.
  • Forgetting the Additional Medicare Tax:

    Frequently Asked Questions

    The Maryland Paycheck Calculator is a specialized online tool that estimates an employee’s net take-home pay after subtracting all mandatory deductions specific to Maryland law. It calculates federal income tax, FICA (Social Security and Medicare), Maryland state income tax, and any local county taxes (such as in Baltimore City or Montgomery County). The result is a precise net paycheck amount for a given gross pay and pay frequency (weekly, biweekly, semi-monthly, or monthly).

    The calculator uses the formula: Net Pay = Gross Pay – (Federal Income Tax + Social Security (6.2%) + Medicare (1.45%) + Maryland State Income Tax + Local County Tax). Maryland state tax is computed using progressive brackets (e.g., 2% on income up to $1,000, 3% on $1,001–$2,000, up to 5.75% on income over $250,000), while local taxes range from 1.75% (Dorchester County) to 3.2% (Baltimore City). The calculator also accounts for allowances and filing status from the employee’s W-4 form.

    For a typical single filer earning $60,000 annually in Maryland, the net pay percentage usually falls between 72% and 78% of gross income, depending on county tax. For example, a resident of Baltimore City (3.2% local tax) might net around 73%, while a resident of Dorchester County (1.75% local tax) might net near 76%. Higher earners (over $250,000) may see net percentages drop to 65-68% due to the top marginal state bracket.

    The calculator is highly accurate, typically within 1-2% of an actual paycheck, provided you input correct W-4 information, pay frequency, and county code. It uses IRS and Maryland Comptroller tax tables updated annually. However, it may slightly differ if your employer uses a different rounding method or includes pre-tax deductions (like health insurance or 401k) that you didn’t account for in the tool.

    The calculator does not include pre-tax deductions such as health insurance premiums, flexible spending accounts, or 401k contributions unless you manually adjust gross pay. It also cannot account for overtime bonuses, commission structures, or employer-specific fringe benefits. Additionally, it assumes standard withholding based on your W-4 and does not handle complex tax credits like the Earned Income Tax Credit (EITC) or child tax credits in real-time.

    Professional payroll services like ADP or Paychex provide exact, compliant paychecks for employers, including all pre-tax deductions and employer-side taxes. The Maryland Paycheck Calculator is a free, consumer-facing tool that gives a close estimate but lacks the granularity of those systems. For example, ADP can handle complex scenarios like garnishments, tip credits, or multi-state withholding, while the calculator is best for simple salaried or hourly employees in Maryland only.

    No, this is a misconception. While the calculator does prompt you to select a county, many users assume it automatically uses the correct local tax rate for their zip code. In reality, the user must manually choose their county from a dropdown list (e.g., Anne Arundel County at 2.5% vs. Worcester County at 1.75%). If you select the wrong county, your net pay estimate could be off by up to 1.45% of gross income.

    A practical use is for a job candidate relocating to Maryland from a no-income-tax state like Texas. By entering a $75,000 salary with a Montgomery County selection (local tax 3.2%), the calculator shows a net monthly pay of roughly $4,650, versus $5,100 in Texas. This helps the candidate budget for housing and living expenses, revealing that Maryland’s combined state and local taxes can reduce take-home pay by over 10% compared to their previous state.

    Last updated: May 31, 2026 · Bookmark this page for quick access

    🔗 You May Also Like