I want to solve the area of the region ImplicitRegion[Exp[-(y + x^3)^2] > 1/32 y^2 + Exp[Sin[y]], {x, y}] with high precision (like 100 digits). The region looks like
ContourPlot[Exp[-(y + x^3)^2] == 1/32 y^2 + Exp[Sin[y]], {x, -2, 2}, {y, -4, 0}] However, I've tried different methods to calculate the area, but these methods gave different values.
The first one is provided by Area
Area[ImplicitRegion[ Exp[-(y + x^3)^2] > 1/32 y^2 + Exp[Sin[y]], {x, y}], WorkingPrecision -> 50, PrecisionGoal -> 50] (*2.1150271808931174`*) We can see that PrecisionGoal and WorkingPrecision don't work here.
The second one is provided by NIntegrate using Boole
NIntegrate[ Boole[Exp[-(y + x^3)^2] > 1/32 y^2 + Exp[Sin[y]]], {x, -2, 2}, {y, -4, 0}, WorkingPrecision -> 50, PrecisionGoal -> 50] It gives a lot of warning and returns 1.90873735713213132056690405656577392873885897791564608027113625396018946387876505698136804341595759`100 with error 0.0007620609074285774952076996909671179060090950094015269438194254831966603709711198623965417774800435432`100, which are absolutely wrong.
The third one is provided by NIntegrate using Element
NIntegrate[1, {x, y} \[Element] ImplicitRegion[ Exp[-(y + x^3)^2] > 1/32 y^2 + Exp[Sin[y]], {{x, -2, 2}, {y, -4, 0}}], WorkingPrecision -> 50, PrecisionGoal -> 50] It returns 2.08924, and we can see that PrecisionGoal and WorkingPrecision don't work here.
The last one is using DiscretizeRegion before using Area
Area[DiscretizeRegion[ ImplicitRegion[ Exp[-(y + x^3)^2] > 1/32 y^2 + Exp[Sin[y]], {{x, -2, 2}, {y, -4, 0}}], AccuracyGoal -> 50, MaxCellMeasure -> #], AccuracyGoal -> 50, WorkingPrecision -> 50] & /@ {0.01, 0.0001, 0.00001} (*{2.0892495973037697`, 2.0892577898447136`, 2.089257792018752`}*) Again, WorkingPrecision and AccuracyGoal don't work here, and MaxCellMeasure will affect the final result.
So my question is: how to obtain a high-precision result with mathematica?

Exp[-(y + x^3)^2] > 1/32 y^2 + Exp[Sin[y]] /. {x->-1.6,y->4.1}gives True $\endgroup$