`quantAMMSwapFeeTake` is a % of the total swap fee, and `adminFee` should be calculated by multiplying `hookFee` by `quantAMMSwapFeeTake`.
However, in `UpliftOnlyExample.sol`, `quantAMMFeeTake` was used for division, which resulted in over-calculation of fees.
```solidity
uint256 adminFee = hookFee / (1e18 / quantAMMFeeTake);
```
`adminFee` is overcalculated and `ownerFee` is reduced accordingly.
```solidity
uint256 adminFee = hookFee * quantAMMFeeTake / 1e18;
```
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.