You are given a list of transactions in CSV format with columns: account_name, timestamp, currency, amount. Each row represents a credit (positive amount) or debit (negative amount) to an account. Part 1: Parse the transactions, compute the final balance per account (sorted by timestamp), and return only accounts whose balance…