    function adminSanity(address from, address to) internal view {
@>      if (!hasRole(ADMIN, _msgSender())) { // Here msg.sender is the ADMIN so it skips paused and blacklisted(from) checks
            if (paused()) revert PausedError();
            if (isBlacklisted(from)) revert SenderBlacklistedError(from);
        }
        if (isBlacklisted(to)) revert RecipientBlacklistedError(to);
        if (to == address(this)) revert TransferToContractError();
    }

    function forceTransfer(address from, address to, uint256 amount) external onlyRole(ADMIN) {
        adminSanity(from, to);
        _update(from, to, amount);
        emit ForcedTransfer(from, to, amount);
    }
}
