Given an employee salary database below where records have been exported into a single CSV file, design a solution using pipeline technique. ID 1020 1104 Last Name Smith Jones First Name John Bob Gender M M Group# Salary ($K) 398A 50 398B 80 ... ... CSV file format: 1020, Smith, John, M, 398A, 50 1104, Jones, Bob, M, 398B, 80 Provide the pipeline by list of processing steps with description of interfaces (input and output) between each state to sort employee salaries in descending order according to their gender. Please be specific about the IPC and data format.