Analyze the attached fictional jobs CSV. Use only rows whose status is exactly Completed. material_cost is the total cost for that row, not a per-unit cost.

For each included row, calculate net revenue = quantity * unit_price * (1 - discount_pct/100). Round each row's net revenue to two decimal places using decimal half-up rounding before adding the rows. Exclude Pending and Cancelled rows from every total.

Report: (1) number of completed jobs; (2) total net revenue; (3) total material cost; (4) revenue minus material cost; (5) job ID with the highest net revenue and its amount; (6) excluded job IDs. Show enough working to audit the calculation. State amounts in dollars. Do not count this as accounting advice; it is an arithmetic test using fictional data.
