https://github.com/code-423n4/2022-06-nested/blob/main/contracts/NestedFactory.sol#L159
It seems that Owner is allowed to set entry/exit fees to be 100% of amount. An entry fees of 100% will be impractical and will lead to all order amount to be gone in fees at NestedFactory.sol#L378
Decide a max percentage of fees say 10% which can be charged and then change the require condition accordingly. Same logic need to be applied for exit fees
require(_entryFees <= MAX_PERCENTAGE, "NF: FEES_OVERFLOW");
