├── .gitignore ├── LICENSE ├── README.md ├── agent ├── .gitignore ├── Agent │ ├── AtomicAction.py │ ├── __init__.py │ ├── agent.py │ ├── constants.py │ └── xwAPI.py ├── SheetCopilot_example_logs │ ├── 102_Invoices │ │ ├── 102_Invoices_1.xlsx │ │ ├── 102_Invoices_log.yaml │ │ └── 102_Invoices_source.xlsx │ ├── 136_PricingTable │ │ ├── 136_PricingTable_1.xlsx │ │ ├── 136_PricingTable_log.yaml │ │ └── 136_PricingTable_source.xlsx │ ├── 13_DemographicProfile │ │ ├── 13_DemographicProfile_1.xlsx │ │ ├── 13_DemographicProfile_log.yaml │ │ └── 13_DemographicProfile_source.xlsx │ ├── 140_PricingTable │ │ ├── 140_PricingTable_1.xlsx │ │ ├── 140_PricingTable_log.yaml │ │ └── 140_PricingTable_source.xlsx │ ├── 15_DemographicProfile │ │ ├── 15_DemographicProfile_1.xlsx │ │ ├── 15_DemographicProfile_log.yaml │ │ └── 15_DemographicProfile_source.xlsx │ ├── 1_BoomerangSales │ │ ├── 1_BoomerangSales_1.xlsx │ │ ├── 1_BoomerangSales_log.yaml │ │ └── 1_BoomerangSales_source.xlsx │ ├── 212_XYScatterPlot │ │ ├── 212_XYScatterPlot_1.xlsx │ │ ├── 212_XYScatterPlot_log.yaml │ │ └── 212_XYScatterPlot_source.xlsx │ ├── 215_XYScatterPlot │ │ ├── 215_XYScatterPlot_1.xlsx │ │ ├── 215_XYScatterPlot_log.yaml │ │ └── 215_XYScatterPlot_source.xlsx │ ├── 25_EasyGDPBreakdown │ │ ├── 25_EasyGDPBreakdown_1.xlsx │ │ ├── 25_EasyGDPBreakdown_log.yaml │ │ └── 25_EasyGDPBreakdown_source.xlsx │ ├── 27_EasyGDPBreakdown │ │ ├── 27_EasyGDPBreakdown_1.xlsx │ │ ├── 27_EasyGDPBreakdown_log.yaml │ │ └── 27_EasyGDPBreakdown_source.xlsx │ ├── 2_BoomerangSales │ │ ├── 2_BoomerangSales_1.xlsx │ │ ├── 2_BoomerangSales_log.yaml │ │ └── 2_BoomerangSales_source.xlsx │ ├── 98_Invoices │ │ ├── 98_Invoices_1.xlsx │ │ ├── 98_Invoices_log.yaml │ │ └── 98_Invoices_source.xlsx │ └── eval_result.yaml ├── config │ ├── API_document.yaml │ ├── config.yaml │ └── prompt.yaml ├── evaluation.py ├── interaction.py ├── main.py ├── requirement.txt ├── utils │ ├── ChatGPT.py │ ├── StateMachine.py │ ├── __init__.py │ ├── compare_sheets.py │ ├── construct_prompt.py │ └── eval.py └── vba_baseline.py ├── assets ├── CatePropAndVerbNoun.png ├── DemoCover.png ├── EasyGDP_Demo.mp4 ├── GoogleSheets_demo.png ├── Instruc&ActDistributions.png ├── InteractionDemo.gif ├── SheetCopilot-teaser.png ├── StateMachine.jpg ├── example_result.png ├── icon.png ├── install_on_google_sheets.png ├── poster_small.png └── two_clouds.png ├── dataset ├── collecting_scripts │ ├── README.md │ ├── __pycache__ │ │ └── utils.cpython-310.pyc │ ├── adapt_superuser_tasks.py │ ├── atomic_actions.xlsx │ ├── check_task_feasibility.py │ ├── naturalize_SU_adaptations.py │ ├── pick_samples_forall_seed_tasks.py │ ├── seed_tasks.jsonl │ ├── seed_tasks.xlsx │ └── utils.py ├── dataset.xlsx ├── dataset_20Samples.xlsx ├── task_sheet_answers │ ├── BoomerangSales │ │ ├── 1_BoomerangSales │ │ │ ├── 1_BoomerangSales_gt1.xlsx │ │ │ └── 1_BoomerangSales_gt1_check.yaml │ │ ├── 2_BoomerangSales │ │ │ ├── 2_BoomerangSales_gt1.xlsx │ │ │ └── 2_BoomerangSales_gt1_check.yaml │ │ ├── 3_BoomerangSales │ │ │ ├── 3_BoomerangSales_gt1.xlsx │ │ │ ├── 3_BoomerangSales_gt1_check.yaml │ │ │ ├── 3_BoomerangSales_gt2.xlsx │ │ │ ├── 3_BoomerangSales_gt2_check.yaml │ │ │ ├── 3_BoomerangSales_gt3.xlsx │ │ │ └── 3_BoomerangSales_gt3_check.yaml │ │ ├── 4_BoomerangSales │ │ │ ├── 4_BoomerangSales_gt1.xlsx │ │ │ └── 4_BoomerangSales_gt1_check.yaml │ │ ├── 5_BoomerangSales │ │ │ ├── 5_BoomerangSales_gt1.xlsx │ │ │ └── 5_BoomerangSales_gt1_check.yaml │ │ ├── 6_BoomerangSales │ │ │ ├── 6_BoomerangSales_gt1.xlsx │ │ │ ├── 6_BoomerangSales_gt1_check.yaml │ │ │ ├── 6_BoomerangSales_gt2.xlsx │ │ │ └── 6_BoomerangSales_gt2_check.yaml │ │ ├── 7_BoomerangSales │ │ │ ├── 7_BoomerangSales_gt1.xlsx │ │ │ └── 7_BoomerangSales_gt1_check.yaml │ │ ├── 8_BoomerangSales │ │ │ ├── 8_BoomerangSales_gt1.xlsx │ │ │ ├── 8_BoomerangSales_gt1_check.yaml │ │ │ ├── 8_BoomerangSales_gt2.xlsx │ │ │ └── 8_BoomerangSales_gt2_check.yaml │ │ └── 9_BoomerangSales │ │ │ ├── 9_BoomerangSales_gt1.xlsx │ │ │ └── 9_BoomerangSales_gt1_check.yaml │ ├── DemographicProfile │ │ ├── 1_DemographicProfile │ │ │ ├── 1_DemographicProfile_gt1.xlsx │ │ │ └── 1_DemographicProfile_gt1_check.yaml │ │ ├── 2_DemographicProfile │ │ │ ├── 2_DemographicProfile_gt1.xlsx │ │ │ ├── 2_DemographicProfile_gt1_check.yaml │ │ │ ├── 2_DemographicProfile_gt2.xlsx │ │ │ └── 2_DemographicProfile_gt2_check.yaml │ │ ├── 3_DemographicProfile │ │ │ ├── 3_DemographicProfile_gt1.xlsx │ │ │ ├── 3_DemographicProfile_gt1_check.yaml │ │ │ ├── 3_DemographicProfile_gt2.xlsx │ │ │ ├── 3_DemographicProfile_gt2_check.yaml │ │ │ ├── 3_DemographicProfile_gt3.xlsx │ │ │ ├── 3_DemographicProfile_gt3_check.yaml │ │ │ ├── 3_DemographicProfile_gt4.xlsx │ │ │ ├── 3_DemographicProfile_gt4_check.yaml │ │ │ ├── 3_DemographicProfile_gt5.xlsx │ │ │ └── 3_DemographicProfile_gt5_check.yaml │ │ ├── 4_DemographicProfile │ │ │ ├── 4_DemographicProfile_gt1.xlsx │ │ │ ├── 4_DemographicProfile_gt1_check.yaml │ │ │ ├── 4_DemographicProfile_gt2.xlsx │ │ │ ├── 4_DemographicProfile_gt2_check.yaml │ │ │ ├── 4_DemographicProfile_gt3.xlsx │ │ │ └── 4_DemographicProfile_gt3_check.yaml │ │ ├── 5_DemographicProfile │ │ │ ├── 5_DemographicProfile_gt1.xlsx │ │ │ ├── 5_DemographicProfile_gt1_check.yaml │ │ │ ├── 5_DemographicProfile_gt2.xlsx │ │ │ └── 5_DemographicProfile_gt2_check.yaml │ │ ├── 6_DemographicProfile │ │ │ ├── 6_DemographicProfile_gt1.xlsx │ │ │ ├── 6_DemographicProfile_gt1_check.yaml │ │ │ ├── 6_DemographicProfile_gt2.xlsx │ │ │ └── 6_DemographicProfile_gt2_check.yaml │ │ └── 7_DemographicProfile │ │ │ ├── 7_DemographicProfile_gt1.xlsx │ │ │ └── 7_DemographicProfile_gt1_check.yaml │ ├── Dragging │ │ ├── 1_Dragging │ │ │ ├── 1_Dragging_gt1.xlsx │ │ │ └── 1_Dragging_gt1_check.yaml │ │ ├── 2_Dragging │ │ │ ├── 2_Dragging_gt1.xlsx │ │ │ └── 2_Dragging_gt1_check.yaml │ │ ├── 3_Dragging │ │ │ ├── 3_Dragging_gt1.xlsx │ │ │ ├── 3_Dragging_gt1_check.yaml │ │ │ ├── 3_Dragging_gt2.xlsx │ │ │ └── 3_Dragging_gt2_check.yaml │ │ ├── 4_Dragging │ │ │ ├── 4_Dragging_gt1.xlsx │ │ │ └── 4_Dragging_gt1_check.yaml │ │ ├── 5_Dragging │ │ │ ├── 5_Dragging_gt1.xlsx │ │ │ └── 5_Dragging_gt1_check.yaml │ │ ├── 6_Dragging │ │ │ ├── 6_Dragging_gt1.xlsx │ │ │ └── 6_Dragging_gt1_check.yaml │ │ ├── 7_Dragging │ │ │ ├── 7_Dragging_gt1.xlsx │ │ │ └── 7_Dragging_gt1_check.yaml │ │ └── 8_Dragging │ │ │ ├── 8_Dragging_gt1.xlsx │ │ │ └── 8_Dragging_gt1_check.yaml │ ├── EasyGDPBreakdown │ │ ├── 10_EasyGDPBreakdown │ │ │ ├── 10_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 10_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 1_EasyGDPBreakdown │ │ │ ├── 1_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 1_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 2_EasyGDPBreakdown │ │ │ ├── 2_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 2_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 3_EasyGDPBreakdown │ │ │ ├── 3_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 3_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 4_EasyGDPBreakdown │ │ │ ├── 4_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 4_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 5_EasyGDPBreakdown │ │ │ ├── 5_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 5_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 6_EasyGDPBreakdown │ │ │ ├── 6_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 6_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 7_EasyGDPBreakdown │ │ │ ├── 7_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 7_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 8_EasyGDPBreakdown │ │ │ ├── 8_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 8_EasyGDPBreakdown_gt1_check.yaml │ │ └── 9_EasyGDPBreakdown │ │ │ ├── 9_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 9_EasyGDPBreakdown_gt1_check.yaml │ ├── EntireShippingCosts │ │ ├── 10_EntireShippingCosts │ │ │ ├── 10_EntireShippingCosts_gt1.xlsx │ │ │ ├── 10_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 10_EntireShippingCosts_gt2.xlsx │ │ │ └── 10_EntireShippingCosts_gt2_check.yaml │ │ ├── 11_EntireShippingCosts │ │ │ ├── 11_EntireShippingCosts_gt1.xlsx │ │ │ └── 11_EntireShippingCosts_gt1_check.yaml │ │ ├── 12_EntireShippingCosts │ │ │ ├── 12_EntireShippingCosts_gt1.xlsx │ │ │ └── 12_EntireShippingCosts_gt1_check.yaml │ │ ├── 13_EntireShippingCosts │ │ │ ├── 13_EntireShippingCosts_gt1.xlsx │ │ │ └── 13_EntireShippingCosts_gt1_check.yaml │ │ ├── 14_EntireShippingCosts │ │ │ ├── 14_EntireShippingCosts_gt1.xlsx │ │ │ └── 14_EntireShippingCosts_gt1_check.yaml │ │ ├── 15_EntireShippingCosts │ │ │ ├── 15_EntireShippingCosts_gt1.xlsx │ │ │ └── 15_EntireShippingCosts_gt1_check.yaml │ │ ├── 16_EntireShippingCosts │ │ │ ├── 16_EntireShippingCosts_gt1.xlsx │ │ │ └── 16_EntireShippingCosts_gt1_check.yaml │ │ ├── 1_EntireShippingCosts │ │ │ ├── 1_EntireShippingCosts_gt1.xlsx │ │ │ └── 1_EntireShippingCosts_gt1_check.yaml │ │ ├── 2_EntireShippingCosts │ │ │ ├── 2_EntireShippingCosts_gt1.xlsx │ │ │ └── 2_EntireShippingCosts_gt1_check.yaml │ │ ├── 3_EntireShippingCosts │ │ │ ├── 3_EntireShippingCosts_gt1.xlsx │ │ │ └── 3_EntireShippingCosts_gt1_check.yaml │ │ ├── 4_EntireShippingCosts │ │ │ ├── 4_EntireShippingCosts_gt1.xlsx │ │ │ └── 4_EntireShippingCosts_gt1_check.yaml │ │ ├── 5_EntireShippingCosts │ │ │ ├── 5_EntireShippingCosts_gt1.xlsx │ │ │ └── 5_EntireShippingCosts_gt1_check.yaml │ │ ├── 6_EntireShippingCosts │ │ │ ├── 6_EntireShippingCosts_gt1.xlsx │ │ │ └── 6_EntireShippingCosts_gt1_check.yaml │ │ ├── 7_EntireShippingCosts │ │ │ ├── 7_EntireShippingCosts_gt1.xlsx │ │ │ └── 7_EntireShippingCosts_gt1_check.yaml │ │ ├── 8_EntireShippingCosts │ │ │ ├── 8_EntireShippingCosts_gt1.xlsx │ │ │ └── 8_EntireShippingCosts_gt1_check.yaml │ │ └── 9_EntireShippingCosts │ │ │ ├── 9_EntireShippingCosts_gt1.xlsx │ │ │ ├── 9_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 9_EntireShippingCosts_gt2.xlsx │ │ │ └── 9_EntireShippingCosts_gt2_check.yaml │ ├── EntireSummerSales │ │ ├── 10_EntireSummerSales │ │ │ ├── 10_EntireSummerSales_gt1.xlsx │ │ │ └── 10_EntireSummerSales_gt1_check.yaml │ │ ├── 11_EntireSummerSales │ │ │ ├── 11_EntireSummerSales_gt1.xlsx │ │ │ └── 11_EntireSummerSales_gt1_check.yaml │ │ ├── 12_EntireSummerSales │ │ │ ├── 12_EntireSummerSales_gt1.xlsx │ │ │ └── 12_EntireSummerSales_gt1_check.yaml │ │ ├── 13_EntireSummerSales │ │ │ ├── 13_EntireSummerSales_gt1.xlsx │ │ │ └── 13_EntireSummerSales_gt1_check.yaml │ │ ├── 1_EntireSummerSales │ │ │ ├── 1_EntireSummerSales_gt1.xlsx │ │ │ ├── 1_EntireSummerSales_gt1_check.yaml │ │ │ ├── 1_EntireSummerSales_gt2.xlsx │ │ │ └── 1_EntireSummerSales_gt2_check.yaml │ │ ├── 2_EntireSummerSales │ │ │ ├── 2_EntireSummerSales_gt1.xlsx │ │ │ └── 2_EntireSummerSales_gt1_check.yaml │ │ ├── 3_EntireSummerSales │ │ │ ├── 3_EntireSummerSales_gt1.xlsx │ │ │ ├── 3_EntireSummerSales_gt1_check.yaml │ │ │ ├── 3_EntireSummerSales_gt2.xlsx │ │ │ └── 3_EntireSummerSales_gt2_check.yaml │ │ ├── 4_EntireSummerSales │ │ │ ├── 4_EntireSummerSales_gt1.xlsx │ │ │ └── 4_EntireSummerSales_gt1_check.yaml │ │ ├── 5_EntireSummerSales │ │ │ ├── 5_EntireSummerSales_gt1.xlsx │ │ │ └── 5_EntireSummerSales_gt1_check.yaml │ │ ├── 6_EntireSummerSales │ │ │ ├── 6_EntireSummerSales_gt1.xlsx │ │ │ └── 6_EntireSummerSales_gt1_check.yaml │ │ ├── 7_EntireSummerSales │ │ │ ├── 7_EntireSummerSales_gt1.xlsx │ │ │ └── 7_EntireSummerSales_gt1_check.yaml │ │ ├── 8_EntireSummerSales │ │ │ ├── 8_EntireSummerSales_gt1.xlsx │ │ │ └── 8_EntireSummerSales_gt1_check.yaml │ │ └── 9_EntireSummerSales │ │ │ ├── 9_EntireSummerSales_gt1.xlsx │ │ │ └── 9_EntireSummerSales_gt1_check.yaml │ ├── ExpenseReport │ │ ├── 1_ExpenseReport │ │ │ ├── 1_ExpenseReport_gt1.xlsx │ │ │ └── 1_ExpenseReport_gt1_check.yaml │ │ ├── 2_ExpenseReport │ │ │ ├── 2_ExpenseReport_gt1.xlsx │ │ │ └── 2_ExpenseReport_gt1_check.yaml │ │ ├── 3_ExpenseReport │ │ │ ├── 3_ExpenseReport_gt1.xlsx │ │ │ └── 3_ExpenseReport_gt1_check.yaml │ │ ├── 4_ExpenseReport │ │ │ ├── 4_ExpenseReport_gt1.xlsx │ │ │ └── 4_ExpenseReport_gt1_check.yaml │ │ ├── 5_ExpenseReport │ │ │ ├── 5_ExpenseReport_gt1.xlsx │ │ │ └── 5_ExpenseReport_gt1_check.yaml │ │ └── 6_ExpenseReport │ │ │ ├── 6_ExpenseReport_gt1.xlsx │ │ │ └── 6_ExpenseReport_gt1_check.yaml │ ├── FutureValue │ │ ├── 1_FutureValue │ │ │ ├── 1_FutureValue_gt1.xlsx │ │ │ └── 1_FutureValue_gt1_check.yaml │ │ ├── 2_FutureValue │ │ │ ├── 2_FutureValue_gt1.xlsx │ │ │ └── 2_FutureValue_gt1_check.yaml │ │ ├── 3_FutureValue │ │ │ ├── 3_FutureValue_gt1.xlsx │ │ │ └── 3_FutureValue_gt1_check.yaml │ │ ├── 4_FutureValue │ │ │ ├── 4_FutureValue_gt1.xlsx │ │ │ └── 4_FutureValue_gt1_check.yaml │ │ ├── 5_FutureValue │ │ │ ├── 5_FutureValue_gt1.xlsx │ │ │ └── 5_FutureValue_gt1_check.yaml │ │ ├── 6_FutureValue │ │ │ ├── 6_FutureValue_gt1.xlsx │ │ │ └── 6_FutureValue_gt1_check.yaml │ │ └── 7_FutureValue │ │ │ ├── 7_FutureValue_gt1.xlsx │ │ │ └── 7_FutureValue_gt1_check.yaml │ ├── GDPBreakdown │ │ ├── 1_GDPBreakdown │ │ │ ├── 1_GDPBreakdown_gt1.xlsx │ │ │ └── 1_GDPBreakdown_gt1_check.yaml │ │ ├── 2_GDPBreakdown │ │ │ ├── 2_GDPBreakdown_gt1.xlsx │ │ │ └── 2_GDPBreakdown_gt1_check.yaml │ │ ├── 3_GDPBreakdown │ │ │ ├── 3_GDPBreakdown_gt1.xlsx │ │ │ └── 3_GDPBreakdown_gt1_check.yaml │ │ ├── 4_GDPBreakdown │ │ │ ├── 4_GDPBreakdown_gt1.xlsx │ │ │ └── 4_GDPBreakdown_gt1_check.yaml │ │ ├── 5_GDPBreakdown │ │ │ ├── 5_GDPBreakdown_gt1.xlsx │ │ │ └── 5_GDPBreakdown_gt1_check.yaml │ │ ├── 6_GDPBreakdown │ │ │ ├── 6_GDPBreakdown_gt1.xlsx │ │ │ └── 6_GDPBreakdown_gt1_check.yaml │ │ └── 7_GDPBreakdown │ │ │ ├── 7_GDPBreakdown_gt1.xlsx │ │ │ └── 7_GDPBreakdown_gt1_check.yaml │ ├── IncomeStatement │ │ ├── 1_IncomeStatement │ │ │ ├── 1_IncomeStatement_gt1.xlsx │ │ │ └── 1_IncomeStatement_gt1_check.yaml │ │ ├── 2_IncomeStatement │ │ │ ├── 2_IncomeStatement_gt1.xlsx │ │ │ ├── 2_IncomeStatement_gt1_check.yaml │ │ │ ├── 2_IncomeStatement_gt2.xlsx │ │ │ └── 2_IncomeStatement_gt2_check.yaml │ │ ├── 3_IncomeStatement │ │ │ ├── 3_IncomeStatement_gt1.xlsx │ │ │ └── 3_IncomeStatement_gt1_check.yaml │ │ ├── 4_IncomeStatement │ │ │ ├── 4_IncomeStatement_gt1.xlsx │ │ │ ├── 4_IncomeStatement_gt1_check.yaml │ │ │ ├── 4_IncomeStatement_gt2.xlsx │ │ │ └── 4_IncomeStatement_gt2_check.yaml │ │ └── 5_IncomeStatement │ │ │ ├── 5_IncomeStatement_gt1.xlsx │ │ │ └── 5_IncomeStatement_gt1_check.yaml │ ├── IncomeStatement2 │ │ ├── 1_IncomeStatement2 │ │ │ ├── 1_IncomeStatement2_gt1.xlsx │ │ │ └── 1_IncomeStatement2_gt1_check.yaml │ │ ├── 2_IncomeStatement2 │ │ │ ├── 2_IncomeStatement2_gt1.xlsx │ │ │ └── 2_IncomeStatement2_gt1_check.yaml │ │ ├── 3_IncomeStatement2 │ │ │ ├── 3_IncomeStatement2_gt1.xlsx │ │ │ └── 3_IncomeStatement2_gt1_check.yaml │ │ ├── 4_IncomeStatement2 │ │ │ ├── 4_IncomeStatement2_gt1.xlsx │ │ │ └── 4_IncomeStatement2_gt1_check.yaml │ │ ├── 5_IncomeStatement2 │ │ │ ├── 5_IncomeStatement2_gt1.xlsx │ │ │ └── 5_IncomeStatement2_gt1_check.yaml │ │ ├── 6_IncomeStatement2 │ │ │ ├── 6_IncomeStatement2_gt1.xlsx │ │ │ └── 6_IncomeStatement2_gt1_check.yaml │ │ ├── 7_IncomeStatement2 │ │ │ ├── 7_IncomeStatement2_gt1.xlsx │ │ │ └── 7_IncomeStatement2_gt1_check.yaml │ │ ├── 8_IncomeStatement2 │ │ │ ├── 8_IncomeStatement2_gt1.xlsx │ │ │ └── 8_IncomeStatement2_gt1_check.yaml │ │ └── 9_IncomeStatement2 │ │ │ ├── 9_IncomeStatement2_gt1.xlsx │ │ │ └── 9_IncomeStatement2_gt1_check.yaml │ ├── Invoices │ │ ├── 10_Invoices │ │ │ ├── 10_Invoices_gt1.xlsx │ │ │ ├── 10_Invoices_gt1_check.yaml │ │ │ ├── 10_Invoices_gt2.xlsx │ │ │ └── 10_Invoices_gt2_check.yaml │ │ ├── 11_Invoices │ │ │ ├── 11_Invoices_gt1.xlsx │ │ │ └── 11_Invoices_gt1_check.yaml │ │ ├── 12_Invoices │ │ │ ├── 12_Invoices_gt1.xlsx │ │ │ └── 12_Invoices_gt1_check.yaml │ │ ├── 13_Invoices │ │ │ ├── 13_Invoices_gt1.xlsx │ │ │ └── 13_Invoices_gt1_check.yaml │ │ ├── 14_Invoices │ │ │ ├── 14_Invoices_gt1.xlsx │ │ │ └── 14_Invoices_gt1_check.yaml │ │ ├── 15_Invoices │ │ │ ├── 15_Invoices_gt1.xlsx │ │ │ └── 15_Invoices_gt1_check.yaml │ │ ├── 16_Invoices │ │ │ ├── 16_Invoices_gt1.xlsx │ │ │ └── 16_Invoices_gt1_check.yaml │ │ ├── 1_Invoices │ │ │ ├── 1_Invoices_gt1.xlsx │ │ │ └── 1_Invoices_gt1_check.yaml │ │ ├── 2_Invoices │ │ │ ├── 2_Invoices_gt1.xlsx │ │ │ └── 2_Invoices_gt1_check.yaml │ │ ├── 3_Invoices │ │ │ ├── 3_Invoices_gt1.xlsx │ │ │ └── 3_Invoices_gt1_check.yaml │ │ ├── 4_Invoices │ │ │ ├── 4_Invoices_gt1.xlsx │ │ │ └── 4_Invoices_gt1_check.yaml │ │ ├── 5_Invoices │ │ │ ├── 5_Invoices_gt1.xlsx │ │ │ └── 5_Invoices_gt1_check.yaml │ │ ├── 6_Invoices │ │ │ ├── 6_Invoices_gt1.xlsx │ │ │ └── 6_Invoices_gt1_check.yaml │ │ ├── 7_Invoices │ │ │ ├── 7_Invoices_gt1.xlsx │ │ │ └── 7_Invoices_gt1_check.yaml │ │ ├── 8_Invoices │ │ │ ├── 8_Invoices_gt1.xlsx │ │ │ └── 8_Invoices_gt1_check.yaml │ │ └── 9_Invoices │ │ │ ├── 9_Invoices_gt1.xlsx │ │ │ └── 9_Invoices_gt1_check.yaml │ ├── MaturityDate │ │ ├── 1_MaturityDate │ │ │ ├── 1_MaturityDate_gt1.xlsx │ │ │ └── 1_MaturityDate_gt1_check.yaml │ │ ├── 2_MaturityDate │ │ │ ├── 2_MaturityDate_gt1.xlsx │ │ │ └── 2_MaturityDate_gt1_check.yaml │ │ ├── 3_MaturityDate │ │ │ ├── 3_MaturityDate_gt1.xlsx │ │ │ └── 3_MaturityDate_gt1_check.yaml │ │ ├── 4_MaturityDate │ │ │ ├── 4_MaturityDate_gt1.xlsx │ │ │ └── 4_MaturityDate_gt1_check.yaml │ │ ├── 5_MaturityDate │ │ │ ├── 5_MaturityDate_gt1.xlsx │ │ │ └── 5_MaturityDate_gt1_check.yaml │ │ ├── 6_MaturityDate │ │ │ ├── 6_MaturityDate_gt1.xlsx │ │ │ └── 6_MaturityDate_gt1_check.yaml │ │ ├── 7_MaturityDate │ │ │ ├── 7_MaturityDate_gt1.xlsx │ │ │ └── 7_MaturityDate_gt1_check.yaml │ │ └── 8_MaturityDate │ │ │ ├── 8_MaturityDate_gt1.xlsx │ │ │ └── 8_MaturityDate_gt1_check.yaml │ ├── NetIncome │ │ ├── 1_NetIncome │ │ │ ├── 1_NetIncome_gt1.xlsx │ │ │ └── 1_NetIncome_gt1_check.yaml │ │ ├── 2_NetIncome │ │ │ ├── 2_NetIncome_gt1.xlsx │ │ │ └── 2_NetIncome_gt1_check.yaml │ │ └── 3_NetIncome │ │ │ ├── 3_NetIncome_gt1.xlsx │ │ │ └── 3_NetIncome_gt1_check.yaml │ ├── PeriodRate │ │ ├── 1_PeriodRate │ │ │ ├── 1_PeriodRate_gt1.xlsx │ │ │ ├── 1_PeriodRate_gt1_check.yaml │ │ │ ├── 1_PeriodRate_gt2.xlsx │ │ │ └── 1_PeriodRate_gt2_check.yaml │ │ ├── 2_PeriodRate │ │ │ ├── 2_PeriodRate_gt1.xlsx │ │ │ └── 2_PeriodRate_gt1_check.yaml │ │ ├── 3_PeriodRate │ │ │ ├── 3_PeriodRate_gt1.xlsx │ │ │ └── 3_PeriodRate_gt1_check.yaml │ │ ├── 4_PeriodRate │ │ │ ├── 4_PeriodRate_gt1.xlsx │ │ │ └── 4_PeriodRate_gt1_check.yaml │ │ └── 5_PeriodRate │ │ │ ├── 5_PeriodRate_gt1.xlsx │ │ │ └── 5_PeriodRate_gt1_check.yaml │ ├── PresentValue │ │ ├── 1_PresentValue │ │ │ ├── 1_PresentValue_gt1.xlsx │ │ │ └── 1_PresentValue_gt1_check.yaml │ │ ├── 2_PresentValue │ │ │ ├── 2_PresentValue_gt1.xlsx │ │ │ └── 2_PresentValue_gt1_check.yaml │ │ ├── 3_PresentValue │ │ │ ├── 3_PresentValue_gt1.xlsx │ │ │ └── 3_PresentValue_gt1_check.yaml │ │ ├── 4_PresentValue │ │ │ ├── 4_PresentValue_gt1.xlsx │ │ │ └── 4_PresentValue_gt1_check.yaml │ │ ├── 5_PresentValue │ │ │ ├── 5_PresentValue_gt1.xlsx │ │ │ ├── 5_PresentValue_gt1_check.yaml │ │ │ ├── 5_PresentValue_gt2.xlsx │ │ │ └── 5_PresentValue_gt2_check.yaml │ │ └── 6_PresentValue │ │ │ ├── 6_PresentValue_gt1.xlsx │ │ │ └── 6_PresentValue_gt1_check.yaml │ ├── PricingTable │ │ ├── 10_PricingTable │ │ │ ├── 10_PricingTable_gt1.xlsx │ │ │ └── 10_PricingTable_gt1_check.yaml │ │ ├── 1_PricingTable │ │ │ ├── 1_PricingTable_gt1.xlsx │ │ │ └── 1_PricingTable_gt1_check.yaml │ │ ├── 2_PricingTable │ │ │ ├── 2_PricingTable_gt1.xlsx │ │ │ └── 2_PricingTable_gt1_check.yaml │ │ ├── 3_PricingTable │ │ │ ├── 3_PricingTable_gt1.xlsx │ │ │ └── 3_PricingTable_gt1_check.yaml │ │ ├── 4_PricingTable │ │ │ ├── 4_PricingTable_gt1.xlsx │ │ │ └── 4_PricingTable_gt1_check.yaml │ │ ├── 5_PricingTable │ │ │ ├── 5_PricingTable_gt1.xlsx │ │ │ └── 5_PricingTable_gt1_check.yaml │ │ ├── 6_PricingTable │ │ │ ├── 6_PricingTable_gt1.xlsx │ │ │ └── 6_PricingTable_gt1_check.yaml │ │ ├── 7_PricingTable │ │ │ ├── 7_PricingTable_gt1.xlsx │ │ │ └── 7_PricingTable_gt1_check.yaml │ │ ├── 8_PricingTable │ │ │ ├── 8_PricingTable_gt1.xlsx │ │ │ └── 8_PricingTable_gt1_check.yaml │ │ └── 9_PricingTable │ │ │ ├── 9_PricingTable_gt1.xlsx │ │ │ └── 9_PricingTable_gt1_check.yaml │ ├── RampUpAndDown │ │ ├── 1_RampUpAndDown │ │ │ ├── 1_RampUpAndDown_gt1.xlsx │ │ │ └── 1_RampUpAndDown_gt1_check.yaml │ │ ├── 2_RampUpAndDown │ │ │ ├── 2_RampUpAndDown_gt1.xlsx │ │ │ └── 2_RampUpAndDown_gt1_check.yaml │ │ ├── 3_RampUpAndDown │ │ │ ├── 3_RampUpAndDown_gt1.xlsx │ │ │ └── 3_RampUpAndDown_gt1_check.yaml │ │ ├── 4_RampUpAndDown │ │ │ ├── 4_RampUpAndDown_gt1.xlsx │ │ │ └── 4_RampUpAndDown_gt1_check.yaml │ │ └── 5_RampUpAndDown │ │ │ ├── 5_RampUpAndDown_gt1.xlsx │ │ │ └── 5_RampUpAndDown_gt1_check.yaml │ ├── SalesRep │ │ ├── 1_SalesRep │ │ │ ├── 1_SalesRep_gt1.xlsx │ │ │ └── 1_SalesRep_gt1_check.yaml │ │ ├── 2_SalesRep │ │ │ ├── 2_SalesRep_gt1.xlsx │ │ │ └── 2_SalesRep_gt1_check.yaml │ │ ├── 3_SalesRep │ │ │ ├── 3_SalesRep_gt1.xlsx │ │ │ └── 3_SalesRep_gt1_check.yaml │ │ ├── 4_SalesRep │ │ │ ├── 4_SalesRep_gt1.xlsx │ │ │ └── 4_SalesRep_gt1_check.yaml │ │ ├── 5_SalesRep │ │ │ ├── 5_SalesRep_gt1.xlsx │ │ │ └── 5_SalesRep_gt1_check.yaml │ │ └── 6_SalesRep │ │ │ ├── 6_SalesRep_gt1.xlsx │ │ │ └── 6_SalesRep_gt1_check.yaml │ ├── ShippingCosts │ │ ├── 1_ShippingCosts │ │ │ ├── 1_ShippingCosts_gt1.xlsx │ │ │ └── 1_ShippingCosts_gt1_check.yaml │ │ ├── 2_ShippingCosts │ │ │ ├── 2_ShippingCosts_gt1.xlsx │ │ │ └── 2_ShippingCosts_gt1_check.yaml │ │ ├── 3_ShippingCosts │ │ │ ├── 3_ShippingCosts_gt1.xlsx │ │ │ └── 3_ShippingCosts_gt1_check.yaml │ │ ├── 4_ShippingCosts │ │ │ ├── 4_ShippingCosts_gt1.xlsx │ │ │ └── 4_ShippingCosts_gt1_check.yaml │ │ ├── 5_ShippingCosts │ │ │ ├── 5_ShippingCosts_gt1.xlsx │ │ │ └── 5_ShippingCosts_gt1_check.yaml │ │ ├── 6_ShippingCosts │ │ │ ├── 6_ShippingCosts_gt1.xlsx │ │ │ └── 6_ShippingCosts_gt1_check.yaml │ │ └── 7_ShippingCosts │ │ │ ├── 7_ShippingCosts_gt1.xlsx │ │ │ └── 7_ShippingCosts_gt1_check.yaml │ ├── SimpleCompoundInterest │ │ ├── 1_SimpleCompoundInterest │ │ │ ├── 1_SimpleCompoundInterest_gt1.xlsx │ │ │ ├── 1_SimpleCompoundInterest_gt1_check.yaml │ │ │ ├── 1_SimpleCompoundInterest_gt2.xlsx │ │ │ └── 1_SimpleCompoundInterest_gt2_check.yaml │ │ └── 2_SimpleCompoundInterest │ │ │ ├── 2_SimpleCompoundInterest_gt1.xlsx │ │ │ └── 2_SimpleCompoundInterest_gt1_check.yaml │ ├── SmallBalanceSheet │ │ ├── 1_SmallBalanceSheet │ │ │ ├── 1_SmallBalanceSheet_gt1.xlsx │ │ │ └── 1_SmallBalanceSheet_gt1_check.yaml │ │ ├── 2_SmallBalanceSheet │ │ │ ├── 2_SmallBalanceSheet_gt1.xlsx │ │ │ └── 2_SmallBalanceSheet_gt1_check.yaml │ │ ├── 3_SmallBalanceSheet │ │ │ ├── 3_SmallBalanceSheet_gt1.xlsx │ │ │ └── 3_SmallBalanceSheet_gt1_check.yaml │ │ ├── 4_SmallBalanceSheet │ │ │ ├── 4_SmallBalanceSheet_gt1.xlsx │ │ │ └── 4_SmallBalanceSheet_gt1_check.yaml │ │ ├── 5_SmallBalanceSheet │ │ │ ├── 5_SmallBalanceSheet_gt1.xlsx │ │ │ └── 5_SmallBalanceSheet_gt1_check.yaml │ │ ├── 6_SmallBalanceSheet │ │ │ ├── 6_SmallBalanceSheet_gt1.xlsx │ │ │ └── 6_SmallBalanceSheet_gt1_check.yaml │ │ └── 7_SmallBalanceSheet │ │ │ ├── 7_SmallBalanceSheet_gt1.xlsx │ │ │ └── 7_SmallBalanceSheet_gt1_check.yaml │ ├── StockChange │ │ ├── 1_StockChange │ │ │ ├── 1_StockChange_gt1.xlsx │ │ │ └── 1_StockChange_gt1_check.yaml │ │ ├── 2_StockChange │ │ │ ├── 2_StockChange_gt1.xlsx │ │ │ └── 2_StockChange_gt1_check.yaml │ │ ├── 3_StockChange │ │ │ ├── 3_StockChange_gt1.xlsx │ │ │ ├── 3_StockChange_gt1_check.yaml │ │ │ ├── 3_StockChange_gt2.xlsx │ │ │ └── 3_StockChange_gt2_check.yaml │ │ └── 4_StockChange │ │ │ ├── 4_StockChange_gt1.xlsx │ │ │ ├── 4_StockChange_gt1_check.yaml │ │ │ ├── 4_StockChange_gt2.xlsx │ │ │ └── 4_StockChange_gt2_check.yaml │ ├── SummerSales │ │ ├── 1_SummerSales │ │ │ ├── 1_SummerSales_gt1.xlsx │ │ │ └── 1_SummerSales_gt1_check.yaml │ │ ├── 2_SummerSales │ │ │ ├── 2_SummerSales_gt1.xlsx │ │ │ └── 2_SummerSales_gt1_check.yaml │ │ ├── 3_SummerSales │ │ │ ├── 3_SummerSales_gt1.xlsx │ │ │ └── 3_SummerSales_gt1_check.yaml │ │ ├── 4_SummerSales │ │ │ ├── 4_SummerSales_gt1.xlsx │ │ │ └── 4_SummerSales_gt1_check.yaml │ │ ├── 5_SummerSales │ │ │ ├── 5_SummerSales_gt1.xlsx │ │ │ └── 5_SummerSales_gt1_check.yaml │ │ ├── 6_SummerSales │ │ │ ├── 6_SummerSales_gt1.xlsx │ │ │ └── 6_SummerSales_gt1_check.yaml │ │ ├── 7_SummerSales │ │ │ ├── 7_SummerSales_gt1.xlsx │ │ │ └── 7_SummerSales_gt1_check.yaml │ │ ├── 8_SummerSales │ │ │ ├── 8_SummerSales_gt1.xlsx │ │ │ └── 8_SummerSales_gt1_check.yaml │ │ └── 9_SummerSales │ │ │ ├── 9_SummerSales_gt1.xlsx │ │ │ └── 9_SummerSales_gt1_check.yaml │ ├── Tax │ │ ├── 1_Tax │ │ │ ├── 1_Tax_gt1.xlsx │ │ │ └── 1_Tax_gt1_check.yaml │ │ ├── 2_Tax │ │ │ ├── 2_Tax_gt1.xlsx │ │ │ └── 2_Tax_gt1_check.yaml │ │ ├── 3_Tax │ │ │ ├── 3_Tax_gt1.xlsx │ │ │ └── 3_Tax_gt1_check.yaml │ │ ├── 4_Tax │ │ │ ├── 4_Tax_gt1.xlsx │ │ │ └── 4_Tax_gt1_check.yaml │ │ ├── 5_Tax │ │ │ ├── 5_Tax_gt1.xlsx │ │ │ ├── 5_Tax_gt1_check.yaml │ │ │ ├── 5_Tax_gt2.xlsx │ │ │ └── 5_Tax_gt2_check.yaml │ │ └── 6_Tax │ │ │ ├── 6_Tax_gt1.xlsx │ │ │ └── 6_Tax_gt1_check.yaml │ ├── VelocityDisplacement │ │ ├── 1_VelocityDisplacement │ │ │ ├── 1_VelocityDisplacement_gt1.xlsx │ │ │ └── 1_VelocityDisplacement_gt1_check.yaml │ │ ├── 2_VelocityDisplacement │ │ │ ├── 2_VelocityDisplacement_gt1.xlsx │ │ │ └── 2_VelocityDisplacement_gt1_check.yaml │ │ ├── 3_VelocityDisplacement │ │ │ ├── 3_VelocityDisplacement_gt1.xlsx │ │ │ └── 3_VelocityDisplacement_gt1_check.yaml │ │ ├── 4_VelocityDisplacement │ │ │ ├── 4_VelocityDisplacement_gt1.xlsx │ │ │ └── 4_VelocityDisplacement_gt1_check.yaml │ │ ├── 5_VelocityDisplacement │ │ │ ├── 5_VelocityDisplacement_gt1.xlsx │ │ │ ├── 5_VelocityDisplacement_gt1_check.yaml │ │ │ ├── 5_VelocityDisplacement_gt2.xlsx │ │ │ └── 5_VelocityDisplacement_gt2_check.yaml │ │ ├── 6_VelocityDisplacement │ │ │ ├── 6_VelocityDisplacement_gt1.xlsx │ │ │ └── 6_VelocityDisplacement_gt1_check.yaml │ │ └── 7_VelocityDisplacement │ │ │ ├── 7_VelocityDisplacement_gt1.xlsx │ │ │ └── 7_VelocityDisplacement_gt1_check.yaml │ ├── WeeklySales │ │ ├── 10_WeeklySales │ │ │ ├── 10_WeeklySales_gt1.xlsx │ │ │ └── 10_WeeklySales_gt1_check.yaml │ │ ├── 11_WeeklySales │ │ │ ├── 11_WeeklySales_gt1.xlsx │ │ │ └── 11_WeeklySales_gt1_check.yaml │ │ ├── 12_WeeklySales │ │ │ ├── 12_WeeklySales_gt1.xlsx │ │ │ └── 12_WeeklySales_gt1_check.yaml │ │ ├── 13_WeeklySales │ │ │ ├── 13_WeeklySales_gt1.xlsx │ │ │ └── 13_WeeklySales_gt1_check.yaml │ │ ├── 1_WeeklySales │ │ │ ├── 1_WeeklySales_gt1.xlsx │ │ │ └── 1_WeeklySales_gt1_check.yaml │ │ ├── 2_WeeklySales │ │ │ ├── 2_WeeklySales_gt1.xlsx │ │ │ └── 2_WeeklySales_gt1_check.yaml │ │ ├── 3_WeeklySales │ │ │ ├── 3_WeeklySales_gt1.xlsx │ │ │ ├── 3_WeeklySales_gt1_check.yaml │ │ │ ├── 3_WeeklySales_gt2.xlsx │ │ │ └── 3_WeeklySales_gt2_check.yaml │ │ ├── 4_WeeklySales │ │ │ ├── 4_WeeklySales_gt1.xlsx │ │ │ └── 4_WeeklySales_gt1_check.yaml │ │ ├── 5_WeeklySales │ │ │ ├── 5_WeeklySales_gt1.xlsx │ │ │ └── 5_WeeklySales_gt1_check.yaml │ │ ├── 6_WeeklySales │ │ │ ├── 6_WeeklySales_gt1.xlsx │ │ │ └── 6_WeeklySales_gt1_check.yaml │ │ ├── 7_WeeklySales │ │ │ ├── 7_WeeklySales_gt1.xlsx │ │ │ └── 7_WeeklySales_gt1_check.yaml │ │ ├── 8_WeeklySales │ │ │ ├── 8_WeeklySales_gt1.xlsx │ │ │ └── 8_WeeklySales_gt1_check.yaml │ │ └── 9_WeeklySales │ │ │ ├── 9_WeeklySales_gt1.xlsx │ │ │ └── 9_WeeklySales_gt1_check.yaml │ └── XYScatterPlot │ │ ├── 10_XYScatterPlot │ │ ├── 10_XYScatterPlot_gt1.xlsx │ │ └── 10_XYScatterPlot_gt1_check.yaml │ │ ├── 1_XYScatterPlot │ │ ├── 1_XYScatterPlot_gt1.xlsx │ │ └── 1_XYScatterPlot_gt1_check.yaml │ │ ├── 2_XYScatterPlot │ │ ├── 2_XYScatterPlot_gt1.xlsx │ │ └── 2_XYScatterPlot_gt1_check.yaml │ │ ├── 3_XYScatterPlot │ │ ├── 3_XYScatterPlot_gt1.xlsx │ │ └── 3_XYScatterPlot_gt1_check.yaml │ │ ├── 4_XYScatterPlot │ │ ├── 4_XYScatterPlot_gt1.xlsx │ │ └── 4_XYScatterPlot_gt1_check.yaml │ │ ├── 5_XYScatterPlot │ │ ├── 5_XYScatterPlot_gt1.xlsx │ │ ├── 5_XYScatterPlot_gt1_check.yaml │ │ ├── 5_XYScatterPlot_gt2.xlsx │ │ └── 5_XYScatterPlot_gt2_check.yaml │ │ ├── 6_XYScatterPlot │ │ ├── 6_XYScatterPlot_gt1.xlsx │ │ └── 6_XYScatterPlot_gt1_check.yaml │ │ ├── 7_XYScatterPlot │ │ ├── 7_XYScatterPlot_gt1.xlsx │ │ └── 7_XYScatterPlot_gt1_check.yaml │ │ ├── 8_XYScatterPlot │ │ ├── 8_XYScatterPlot_gt1.xlsx │ │ ├── 8_XYScatterPlot_gt1_check.yaml │ │ ├── 8_XYScatterPlot_gt2.xlsx │ │ ├── 8_XYScatterPlot_gt2_check.yaml │ │ ├── 8_XYScatterPlot_gt3.xlsx │ │ └── 8_XYScatterPlot_gt3_check.yaml │ │ └── 9_XYScatterPlot │ │ ├── 9_XYScatterPlot_gt1.xlsx │ │ └── 9_XYScatterPlot_gt1_check.yaml ├── task_sheet_answers_v2 │ ├── BoomerangSales │ │ ├── 1_BoomerangSales │ │ │ ├── 1_BoomerangSales_gt1.xlsx │ │ │ ├── 1_BoomerangSales_gt1_check.yaml │ │ │ ├── 1_BoomerangSales_gt2.xlsx │ │ │ └── 1_BoomerangSales_gt2_check.yaml │ │ ├── 2_BoomerangSales │ │ │ ├── 2_BoomerangSales_gt1.xlsx │ │ │ └── 2_BoomerangSales_gt1_check.yaml │ │ ├── 3_BoomerangSales │ │ │ ├── 3_BoomerangSales_gt1.xlsx │ │ │ ├── 3_BoomerangSales_gt1_check.yaml │ │ │ ├── 3_BoomerangSales_gt2.xlsx │ │ │ ├── 3_BoomerangSales_gt2_check.yaml │ │ │ ├── 3_BoomerangSales_gt3.xlsx │ │ │ └── 3_BoomerangSales_gt3_check.yaml │ │ ├── 4_BoomerangSales │ │ │ ├── 4_BoomerangSales_gt1.xlsx │ │ │ ├── 4_BoomerangSales_gt1_check.yaml │ │ │ ├── 4_BoomerangSales_gt2.xlsx │ │ │ ├── 4_BoomerangSales_gt2_check.yaml │ │ │ ├── 4_BoomerangSales_gt3.xlsx │ │ │ ├── 4_BoomerangSales_gt3_check.yaml │ │ │ ├── 4_BoomerangSales_gt4.xlsx │ │ │ └── 4_BoomerangSales_gt4_check.yaml │ │ ├── 5_BoomerangSales │ │ │ ├── 5_BoomerangSales_gt1.xlsx │ │ │ ├── 5_BoomerangSales_gt1_check.yaml │ │ │ ├── 5_BoomerangSales_gt2.xlsx │ │ │ └── 5_BoomerangSales_gt2_check.yaml │ │ ├── 6_BoomerangSales │ │ │ ├── 6_BoomerangSales_gt1.xlsx │ │ │ ├── 6_BoomerangSales_gt1_check.yaml │ │ │ ├── 6_BoomerangSales_gt2.xlsx │ │ │ └── 6_BoomerangSales_gt2_check.yaml │ │ ├── 7_BoomerangSales │ │ │ ├── 7_BoomerangSales_gt1.xlsx │ │ │ └── 7_BoomerangSales_gt1_check.yaml │ │ ├── 8_BoomerangSales │ │ │ ├── 8_BoomerangSales_gt1.xlsx │ │ │ ├── 8_BoomerangSales_gt1_check.yaml │ │ │ ├── 8_BoomerangSales_gt2.xlsx │ │ │ └── 8_BoomerangSales_gt2_check.yaml │ │ └── 9_BoomerangSales │ │ │ ├── 9_BoomerangSales_gt1.xlsx │ │ │ └── 9_BoomerangSales_gt1_check.yaml │ ├── DemographicProfile │ │ ├── 1_DemographicProfile │ │ │ ├── 1_DemographicProfile_gt1.xlsx │ │ │ └── 1_DemographicProfile_gt1_check.yaml │ │ ├── 2_DemographicProfile │ │ │ ├── 2_DemographicProfile_gt1.xlsx │ │ │ ├── 2_DemographicProfile_gt1_check.yaml │ │ │ ├── 2_DemographicProfile_gt2.xlsx │ │ │ └── 2_DemographicProfile_gt2_check.yaml │ │ ├── 3_DemographicProfile │ │ │ ├── 3_DemographicProfile_gt1.xlsx │ │ │ ├── 3_DemographicProfile_gt1_check.yaml │ │ │ ├── 3_DemographicProfile_gt2.xlsx │ │ │ ├── 3_DemographicProfile_gt2_check.yaml │ │ │ ├── 3_DemographicProfile_gt3.xlsx │ │ │ ├── 3_DemographicProfile_gt3_check.yaml │ │ │ ├── 3_DemographicProfile_gt4.xlsx │ │ │ ├── 3_DemographicProfile_gt4_check.yaml │ │ │ ├── 3_DemographicProfile_gt5.xlsx │ │ │ └── 3_DemographicProfile_gt5_check.yaml │ │ ├── 4_DemographicProfile │ │ │ ├── 4_DemographicProfile_gt1.xlsx │ │ │ ├── 4_DemographicProfile_gt1_check.yaml │ │ │ ├── 4_DemographicProfile_gt2.xlsx │ │ │ ├── 4_DemographicProfile_gt2_check.yaml │ │ │ ├── 4_DemographicProfile_gt3.xlsx │ │ │ └── 4_DemographicProfile_gt3_check.yaml │ │ ├── 5_DemographicProfile │ │ │ ├── 5_DemographicProfile_gt1.xlsx │ │ │ ├── 5_DemographicProfile_gt1_check.yaml │ │ │ ├── 5_DemographicProfile_gt2.xlsx │ │ │ └── 5_DemographicProfile_gt2_check.yaml │ │ ├── 6_DemographicProfile │ │ │ ├── 6_DemographicProfile_gt1.xlsx │ │ │ ├── 6_DemographicProfile_gt1_check.yaml │ │ │ ├── 6_DemographicProfile_gt2.xlsx │ │ │ └── 6_DemographicProfile_gt2_check.yaml │ │ └── 7_DemographicProfile │ │ │ ├── 7_DemographicProfile_gt1.xlsx │ │ │ └── 7_DemographicProfile_gt1_check.yaml │ ├── Dragging │ │ ├── 1_Dragging │ │ │ ├── 1_Dragging_gt1.xlsx │ │ │ ├── 1_Dragging_gt1_check.yaml │ │ │ ├── 1_Dragging_gt2.xlsx │ │ │ └── 1_Dragging_gt2_check.yaml │ │ ├── 2_Dragging │ │ │ ├── 2_Dragging_gt1.xlsx │ │ │ ├── 2_Dragging_gt1_check.yaml │ │ │ ├── 2_Dragging_gt2.xlsx │ │ │ ├── 2_Dragging_gt2_check.yaml │ │ │ ├── 2_Dragging_gt3.xlsx │ │ │ ├── 2_Dragging_gt3_check.yaml │ │ │ ├── 2_Dragging_gt4.xlsx │ │ │ └── 2_Dragging_gt4_check.yaml │ │ ├── 3_Dragging │ │ │ ├── 3_Dragging_gt1.xlsx │ │ │ ├── 3_Dragging_gt1_check.yaml │ │ │ ├── 3_Dragging_gt2.xlsx │ │ │ └── 3_Dragging_gt2_check.yaml │ │ ├── 4_Dragging │ │ │ ├── 4_Dragging_gt1.xlsx │ │ │ └── 4_Dragging_gt1_check.yaml │ │ ├── 5_Dragging │ │ │ ├── 5_Dragging_gt1.xlsx │ │ │ └── 5_Dragging_gt1_check.yaml │ │ ├── 6_Dragging │ │ │ ├── 6_Dragging_gt1.xlsx │ │ │ └── 6_Dragging_gt1_check.yaml │ │ ├── 7_Dragging │ │ │ ├── 7_Dragging_gt1.xlsx │ │ │ ├── 7_Dragging_gt1_check.yaml │ │ │ ├── 7_Dragging_gt2.xlsx │ │ │ └── 7_Dragging_gt2_check.yaml │ │ └── 8_Dragging │ │ │ ├── 8_Dragging_gt1.xlsx │ │ │ └── 8_Dragging_gt1_check.yaml │ ├── EasyGDPBreakdown │ │ ├── 10_EasyGDPBreakdown │ │ │ ├── 10_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 10_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 1_EasyGDPBreakdown │ │ │ ├── 1_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 1_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 2_EasyGDPBreakdown │ │ │ ├── 2_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 2_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 3_EasyGDPBreakdown │ │ │ ├── 3_EasyGDPBreakdown_gt1.xlsx │ │ │ ├── 3_EasyGDPBreakdown_gt1_check.yaml │ │ │ ├── 3_EasyGDPBreakdown_gt2.xlsx │ │ │ └── 3_EasyGDPBreakdown_gt2_check.yaml │ │ ├── 4_EasyGDPBreakdown │ │ │ ├── 4_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 4_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 5_EasyGDPBreakdown │ │ │ ├── 5_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 5_EasyGDPBreakdown_gt1_check.yaml │ │ ├── 6_EasyGDPBreakdown │ │ │ ├── 6_EasyGDPBreakdown_gt1.xlsx │ │ │ ├── 6_EasyGDPBreakdown_gt1_check.yaml │ │ │ ├── 6_EasyGDPBreakdown_gt2.xlsx │ │ │ └── 6_EasyGDPBreakdown_gt2_check.yaml │ │ ├── 7_EasyGDPBreakdown │ │ │ ├── 7_EasyGDPBreakdown_gt1.xlsx │ │ │ ├── 7_EasyGDPBreakdown_gt1_check.yaml │ │ │ ├── 7_EasyGDPBreakdown_gt2.xlsx │ │ │ └── 7_EasyGDPBreakdown_gt2_check.yaml │ │ ├── 8_EasyGDPBreakdown │ │ │ ├── 8_EasyGDPBreakdown_gt1.xlsx │ │ │ ├── 8_EasyGDPBreakdown_gt1_check.yaml │ │ │ ├── 8_EasyGDPBreakdown_gt2.xlsx │ │ │ └── 8_EasyGDPBreakdown_gt2_check.yaml │ │ └── 9_EasyGDPBreakdown │ │ │ ├── 9_EasyGDPBreakdown_gt1.xlsx │ │ │ └── 9_EasyGDPBreakdown_gt1_check.yaml │ ├── EntireShippingCosts │ │ ├── 10_EntireShippingCosts │ │ │ ├── 10_EntireShippingCosts_gt1.xlsx │ │ │ ├── 10_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 10_EntireShippingCosts_gt2.xlsx │ │ │ └── 10_EntireShippingCosts_gt2_check.yaml │ │ ├── 11_EntireShippingCosts │ │ │ ├── 11_EntireShippingCosts_gt1.xlsx │ │ │ ├── 11_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 11_EntireShippingCosts_gt2.xlsx │ │ │ ├── 11_EntireShippingCosts_gt2_check.yaml │ │ │ ├── 11_EntireShippingCosts_gt3.xlsx │ │ │ └── 11_EntireShippingCosts_gt3_check.yaml │ │ ├── 12_EntireShippingCosts │ │ │ ├── 12_EntireShippingCosts_gt1.xlsx │ │ │ ├── 12_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 12_EntireShippingCosts_gt2.xlsx │ │ │ └── 12_EntireShippingCosts_gt2_check.yaml │ │ ├── 13_EntireShippingCosts │ │ │ ├── 13_EntireShippingCosts_gt1.xlsx │ │ │ └── 13_EntireShippingCosts_gt1_check.yaml │ │ ├── 14_EntireShippingCosts │ │ │ ├── 14_EntireShippingCosts_gt1.xlsx │ │ │ └── 14_EntireShippingCosts_gt1_check.yaml │ │ ├── 15_EntireShippingCosts │ │ │ ├── 15_EntireShippingCosts_gt1.xlsx │ │ │ └── 15_EntireShippingCosts_gt1_check.yaml │ │ ├── 16_EntireShippingCosts │ │ │ ├── 16_EntireShippingCosts_gt1.xlsx │ │ │ └── 16_EntireShippingCosts_gt1_check.yaml │ │ ├── 1_EntireShippingCosts │ │ │ ├── 1_EntireShippingCosts_gt1.xlsx │ │ │ └── 1_EntireShippingCosts_gt1_check.yaml │ │ ├── 2_EntireShippingCosts │ │ │ ├── 2_EntireShippingCosts_gt1.xlsx │ │ │ └── 2_EntireShippingCosts_gt1_check.yaml │ │ ├── 3_EntireShippingCosts │ │ │ ├── 3_EntireShippingCosts_gt1.xlsx │ │ │ └── 3_EntireShippingCosts_gt1_check.yaml │ │ ├── 4_EntireShippingCosts │ │ │ ├── 4_EntireShippingCosts_gt1.xlsx │ │ │ ├── 4_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 4_EntireShippingCosts_gt2.xlsx │ │ │ └── 4_EntireShippingCosts_gt2_check.yaml │ │ ├── 5_EntireShippingCosts │ │ │ ├── 5_EntireShippingCosts_gt1.xlsx │ │ │ └── 5_EntireShippingCosts_gt1_check.yaml │ │ ├── 6_EntireShippingCosts │ │ │ ├── 6_EntireShippingCosts_gt1.xlsx │ │ │ ├── 6_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 6_EntireShippingCosts_gt2.xlsx │ │ │ └── 6_EntireShippingCosts_gt2_check.yaml │ │ ├── 7_EntireShippingCosts │ │ │ ├── 7_EntireShippingCosts_gt1.xlsx │ │ │ ├── 7_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 7_EntireShippingCosts_gt2.xlsx │ │ │ └── 7_EntireShippingCosts_gt2_check.yaml │ │ ├── 8_EntireShippingCosts │ │ │ ├── 8_EntireShippingCosts_gt1.xlsx │ │ │ ├── 8_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 8_EntireShippingCosts_gt2.xlsx │ │ │ ├── 8_EntireShippingCosts_gt2_check.yaml │ │ │ ├── 8_EntireShippingCosts_gt3.xlsx │ │ │ └── 8_EntireShippingCosts_gt3_check.yaml │ │ └── 9_EntireShippingCosts │ │ │ ├── 9_EntireShippingCosts_gt1.xlsx │ │ │ ├── 9_EntireShippingCosts_gt1_check.yaml │ │ │ ├── 9_EntireShippingCosts_gt2.xlsx │ │ │ ├── 9_EntireShippingCosts_gt2_check.yaml │ │ │ ├── 9_EntireShippingCosts_gt3.xlsx │ │ │ └── 9_EntireShippingCosts_gt3_check.yaml │ ├── EntireSummerSales │ │ ├── 10_EntireSummerSales │ │ │ ├── 10_EntireSummerSales_gt1.xlsx │ │ │ ├── 10_EntireSummerSales_gt1_check.yaml │ │ │ ├── 10_EntireSummerSales_gt2.xlsx │ │ │ └── 10_EntireSummerSales_gt2_check.yaml │ │ ├── 11_EntireSummerSales │ │ │ ├── 11_EntireSummerSales_gt1.xlsx │ │ │ └── 11_EntireSummerSales_gt1_check.yaml │ │ ├── 12_EntireSummerSales │ │ │ ├── 12_EntireSummerSales_gt1.xlsx │ │ │ └── 12_EntireSummerSales_gt1_check.yaml │ │ ├── 13_EntireSummerSales │ │ │ ├── 13_EntireSummerSales_gt1.xlsx │ │ │ ├── 13_EntireSummerSales_gt1_check.yaml │ │ │ ├── 13_EntireSummerSales_gt2.xlsx │ │ │ └── 13_EntireSummerSales_gt2_check.yaml │ │ ├── 1_EntireSummerSales │ │ │ ├── 1_EntireSummerSales_gt1.xlsx │ │ │ ├── 1_EntireSummerSales_gt1_check.yaml │ │ │ ├── 1_EntireSummerSales_gt2.xlsx │ │ │ └── 1_EntireSummerSales_gt2_check.yaml │ │ ├── 2_EntireSummerSales │ │ │ ├── 2_EntireSummerSales_gt1.xlsx │ │ │ └── 2_EntireSummerSales_gt1_check.yaml │ │ ├── 3_EntireSummerSales │ │ │ ├── 3_EntireSummerSales_gt1.xlsx │ │ │ ├── 3_EntireSummerSales_gt1_check.yaml │ │ │ ├── 3_EntireSummerSales_gt2.xlsx │ │ │ └── 3_EntireSummerSales_gt2_check.yaml │ │ ├── 4_EntireSummerSales │ │ │ ├── 4_EntireSummerSales_gt1.xlsx │ │ │ ├── 4_EntireSummerSales_gt1_check.yaml │ │ │ ├── 4_EntireSummerSales_gt2.xlsx │ │ │ └── 4_EntireSummerSales_gt2_check.yaml │ │ ├── 5_EntireSummerSales │ │ │ ├── 5_EntireSummerSales_gt1.xlsx │ │ │ └── 5_EntireSummerSales_gt1_check.yaml │ │ ├── 6_EntireSummerSales │ │ │ ├── 6_EntireSummerSales_gt1.xlsx │ │ │ ├── 6_EntireSummerSales_gt1_check.yaml │ │ │ ├── 6_EntireSummerSales_gt2.xlsx │ │ │ └── 6_EntireSummerSales_gt2_check.yaml │ │ ├── 7_EntireSummerSales │ │ │ ├── 7_EntireSummerSales_gt1.xlsx │ │ │ ├── 7_EntireSummerSales_gt1_check.yaml │ │ │ ├── 7_EntireSummerSales_gt2.xlsx │ │ │ └── 7_EntireSummerSales_gt2_check.yaml │ │ ├── 8_EntireSummerSales │ │ │ ├── 8_EntireSummerSales_gt1.xlsx │ │ │ ├── 8_EntireSummerSales_gt1_check.yaml │ │ │ ├── 8_EntireSummerSales_gt2.xlsx │ │ │ ├── 8_EntireSummerSales_gt2_check.yaml │ │ │ ├── 8_EntireSummerSales_gt3.xlsx │ │ │ ├── 8_EntireSummerSales_gt3_check.yaml │ │ │ ├── 8_EntireSummerSales_gt4.xlsx │ │ │ ├── 8_EntireSummerSales_gt4_check.yaml │ │ │ ├── 8_EntireSummerSales_gt5.xlsx │ │ │ └── 8_EntireSummerSales_gt5_check.yaml │ │ └── 9_EntireSummerSales │ │ │ ├── 9_EntireSummerSales_gt1.xlsx │ │ │ └── 9_EntireSummerSales_gt1_check.yaml │ ├── ExpenseReport │ │ ├── 1_ExpenseReport │ │ │ ├── 1_ExpenseReport_gt1.xlsx │ │ │ └── 1_ExpenseReport_gt1_check.yaml │ │ ├── 2_ExpenseReport │ │ │ ├── 2_ExpenseReport_gt1.xlsx │ │ │ ├── 2_ExpenseReport_gt1_check.yaml │ │ │ ├── 2_ExpenseReport_gt2.xlsx │ │ │ └── 2_ExpenseReport_gt2_check.yaml │ │ ├── 3_ExpenseReport │ │ │ ├── 3_ExpenseReport_gt1.xlsx │ │ │ └── 3_ExpenseReport_gt1_check.yaml │ │ ├── 4_ExpenseReport │ │ │ ├── 4_ExpenseReport_gt1.xlsx │ │ │ ├── 4_ExpenseReport_gt1_check.yaml │ │ │ ├── 4_ExpenseReport_gt2.xlsx │ │ │ ├── 4_ExpenseReport_gt2_check.yaml │ │ │ ├── 4_ExpenseReport_gt3.xlsx │ │ │ ├── 4_ExpenseReport_gt3_check.yaml │ │ │ ├── 4_ExpenseReport_gt4.xlsx │ │ │ └── 4_ExpenseReport_gt4_check.yaml │ │ ├── 5_ExpenseReport │ │ │ ├── 5_ExpenseReport_gt1.xlsx │ │ │ └── 5_ExpenseReport_gt1_check.yaml │ │ └── 6_ExpenseReport │ │ │ ├── 6_ExpenseReport_gt1.xlsx │ │ │ ├── 6_ExpenseReport_gt1_check.yaml │ │ │ ├── 6_ExpenseReport_gt2.xlsx │ │ │ └── 6_ExpenseReport_gt2_check.yaml │ ├── FutureValue │ │ ├── 1_FutureValue │ │ │ ├── 1_FutureValue_gt1.xlsx │ │ │ ├── 1_FutureValue_gt1_check.yaml │ │ │ ├── 1_FutureValue_gt2.xlsx │ │ │ └── 1_FutureValue_gt2_check.yaml │ │ ├── 2_FutureValue │ │ │ ├── 2_FutureValue_gt1.xlsx │ │ │ ├── 2_FutureValue_gt1_check.yaml │ │ │ ├── 2_FutureValue_gt2.xlsx │ │ │ └── 2_FutureValue_gt2_check.yaml │ │ ├── 3_FutureValue │ │ │ ├── 3_FutureValue_gt1.xlsx │ │ │ ├── 3_FutureValue_gt1_check.yaml │ │ │ ├── 3_FutureValue_gt2.xlsx │ │ │ ├── 3_FutureValue_gt2_check.yaml │ │ │ ├── 3_FutureValue_gt3.xlsx │ │ │ └── 3_FutureValue_gt3_check.yaml │ │ ├── 4_FutureValue │ │ │ ├── 4_FutureValue_gt1.xlsx │ │ │ ├── 4_FutureValue_gt1_check.yaml │ │ │ ├── 4_FutureValue_gt2.xlsx │ │ │ └── 4_FutureValue_gt2_check.yaml │ │ ├── 5_FutureValue │ │ │ ├── 5_FutureValue_gt1.xlsx │ │ │ ├── 5_FutureValue_gt1_check.yaml │ │ │ ├── 5_FutureValue_gt2.xlsx │ │ │ ├── 5_FutureValue_gt2_check.yaml │ │ │ ├── 5_FutureValue_gt3.xlsx │ │ │ └── 5_FutureValue_gt3_check.yaml │ │ ├── 6_FutureValue │ │ │ ├── 6_FutureValue_gt1.xlsx │ │ │ └── 6_FutureValue_gt1_check.yaml │ │ └── 7_FutureValue │ │ │ ├── 7_FutureValue_gt1.xlsx │ │ │ └── 7_FutureValue_gt1_check.yaml │ ├── GDPBreakdown │ │ ├── 1_GDPBreakdown │ │ │ ├── 1_GDPBreakdown_gt1.xlsx │ │ │ └── 1_GDPBreakdown_gt1_check.yaml │ │ ├── 2_GDPBreakdown │ │ │ ├── 2_GDPBreakdown_gt1.xlsx │ │ │ ├── 2_GDPBreakdown_gt1_check.yaml │ │ │ ├── 2_GDPBreakdown_gt2.xlsx │ │ │ └── 2_GDPBreakdown_gt2_check.yaml │ │ ├── 3_GDPBreakdown │ │ │ ├── 3_GDPBreakdown_gt1.xlsx │ │ │ ├── 3_GDPBreakdown_gt1_check.yaml │ │ │ ├── 3_GDPBreakdown_gt2.xlsx │ │ │ └── 3_GDPBreakdown_gt2_check.yaml │ │ ├── 4_GDPBreakdown │ │ │ ├── 4_GDPBreakdown_gt1.xlsx │ │ │ ├── 4_GDPBreakdown_gt1_check.yaml │ │ │ ├── 4_GDPBreakdown_gt2.xlsx │ │ │ └── 4_GDPBreakdown_gt2_check.yaml │ │ ├── 5_GDPBreakdown │ │ │ ├── 5_GDPBreakdown_gt1.xlsx │ │ │ ├── 5_GDPBreakdown_gt1_check.yaml │ │ │ ├── 5_GDPBreakdown_gt2.xlsx │ │ │ └── 5_GDPBreakdown_gt2_check.yaml │ │ ├── 6_GDPBreakdown │ │ │ ├── 6_GDPBreakdown_gt1.xlsx │ │ │ └── 6_GDPBreakdown_gt1_check.yaml │ │ └── 7_GDPBreakdown │ │ │ ├── 7_GDPBreakdown_gt1.xlsx │ │ │ └── 7_GDPBreakdown_gt1_check.yaml │ ├── IncomeStatement │ │ ├── 1_IncomeStatement │ │ │ ├── 1_IncomeStatement_gt1.xlsx │ │ │ └── 1_IncomeStatement_gt1_check.yaml │ │ ├── 2_IncomeStatement │ │ │ ├── 2_IncomeStatement_gt1.xlsx │ │ │ ├── 2_IncomeStatement_gt1_check.yaml │ │ │ ├── 2_IncomeStatement_gt2.xlsx │ │ │ ├── 2_IncomeStatement_gt2_check.yaml │ │ │ ├── 2_IncomeStatement_gt3.xlsx │ │ │ ├── 2_IncomeStatement_gt3_check.yaml │ │ │ ├── 2_IncomeStatement_gt4.xlsx │ │ │ └── 2_IncomeStatement_gt4_check.yaml │ │ ├── 3_IncomeStatement │ │ │ ├── 3_IncomeStatement_gt1.xlsx │ │ │ ├── 3_IncomeStatement_gt1_check.yaml │ │ │ ├── 3_IncomeStatement_gt2.xlsx │ │ │ └── 3_IncomeStatement_gt2_check.yaml │ │ ├── 4_IncomeStatement │ │ │ ├── 4_IncomeStatement_gt1.xlsx │ │ │ ├── 4_IncomeStatement_gt1_check.yaml │ │ │ ├── 4_IncomeStatement_gt2.xlsx │ │ │ └── 4_IncomeStatement_gt2_check.yaml │ │ └── 5_IncomeStatement │ │ │ ├── 5_IncomeStatement_gt1.xlsx │ │ │ └── 5_IncomeStatement_gt1_check.yaml │ ├── IncomeStatement2 │ │ ├── 1_IncomeStatement2 │ │ │ ├── 1_IncomeStatement2_gt1.xlsx │ │ │ └── 1_IncomeStatement2_gt1_check.yaml │ │ ├── 2_IncomeStatement2 │ │ │ ├── 2_IncomeStatement2_gt1.xlsx │ │ │ └── 2_IncomeStatement2_gt1_check.yaml │ │ ├── 3_IncomeStatement2 │ │ │ ├── 3_IncomeStatement2_gt1.xlsx │ │ │ └── 3_IncomeStatement2_gt1_check.yaml │ │ ├── 4_IncomeStatement2 │ │ │ ├── 4_IncomeStatement2_gt1.xlsx │ │ │ ├── 4_IncomeStatement2_gt1_check.yaml │ │ │ ├── 4_IncomeStatement2_gt2.xlsx │ │ │ └── 4_IncomeStatement2_gt2_check.yaml │ │ ├── 5_IncomeStatement2 │ │ │ ├── 5_IncomeStatement2_gt1.xlsx │ │ │ └── 5_IncomeStatement2_gt1_check.yaml │ │ ├── 6_IncomeStatement2 │ │ │ ├── 6_IncomeStatement2_gt1.xlsx │ │ │ ├── 6_IncomeStatement2_gt1_check.yaml │ │ │ ├── 6_IncomeStatement2_gt2.xlsx │ │ │ ├── 6_IncomeStatement2_gt2_check.yaml │ │ │ ├── 6_IncomeStatement2_gt3.xlsx │ │ │ └── 6_IncomeStatement2_gt3_check.yaml │ │ ├── 7_IncomeStatement2 │ │ │ ├── 7_IncomeStatement2_gt1.xlsx │ │ │ └── 7_IncomeStatement2_gt1_check.yaml │ │ ├── 8_IncomeStatement2 │ │ │ ├── 8_IncomeStatement2_gt1.xlsx │ │ │ ├── 8_IncomeStatement2_gt1_check.yaml │ │ │ ├── 8_IncomeStatement2_gt2.xlsx │ │ │ └── 8_IncomeStatement2_gt2_check.yaml │ │ └── 9_IncomeStatement2 │ │ │ ├── 9_IncomeStatement2_gt1.xlsx │ │ │ └── 9_IncomeStatement2_gt1_check.yaml │ ├── Invoices │ │ ├── 10_Invoices │ │ │ ├── 10_Invoices_gt1.xlsx │ │ │ ├── 10_Invoices_gt1_check.yaml │ │ │ ├── 10_Invoices_gt2.xlsx │ │ │ └── 10_Invoices_gt2_check.yaml │ │ ├── 11_Invoices │ │ │ ├── 11_Invoices_gt1.xlsx │ │ │ ├── 11_Invoices_gt1_check.yaml │ │ │ ├── 11_Invoices_gt2.xlsx │ │ │ └── 11_Invoices_gt2_check.yaml │ │ ├── 12_Invoices │ │ │ ├── 12_Invoices_gt1.xlsx │ │ │ ├── 12_Invoices_gt1_check.yaml │ │ │ ├── 12_Invoices_gt2.xlsx │ │ │ └── 12_Invoices_gt2_check.yaml │ │ ├── 13_Invoices │ │ │ ├── 13_Invoices_gt1.xlsx │ │ │ └── 13_Invoices_gt1_check.yaml │ │ ├── 14_Invoices │ │ │ ├── 14_Invoices_gt1.xlsx │ │ │ ├── 14_Invoices_gt1_check.yaml │ │ │ ├── 14_Invoices_gt2.xlsx │ │ │ └── 14_Invoices_gt2_check.yaml │ │ ├── 15_Invoices │ │ │ ├── 15_Invoices_gt1.xlsx │ │ │ ├── 15_Invoices_gt1_check.yaml │ │ │ ├── 15_Invoices_gt2.xlsx │ │ │ ├── 15_Invoices_gt2_check.yaml │ │ │ ├── 15_Invoices_gt3.xlsx │ │ │ ├── 15_Invoices_gt3_check.yaml │ │ │ ├── 15_Invoices_gt4.xlsx │ │ │ └── 15_Invoices_gt4_check.yaml │ │ ├── 16_Invoices │ │ │ ├── 16_Invoices_gt1.xlsx │ │ │ └── 16_Invoices_gt1_check.yaml │ │ ├── 1_Invoices │ │ │ ├── 1_Invoices_gt1.xlsx │ │ │ ├── 1_Invoices_gt1_check.yaml │ │ │ ├── 1_Invoices_gt2.xlsx │ │ │ ├── 1_Invoices_gt2_check.yaml │ │ │ ├── 1_Invoices_gt3.xlsx │ │ │ ├── 1_Invoices_gt3_check.yaml │ │ │ ├── 1_Invoices_gt4.xlsx │ │ │ ├── 1_Invoices_gt4_check.yaml │ │ │ ├── 1_Invoices_gt5.xlsx │ │ │ └── 1_Invoices_gt5_check.yaml │ │ ├── 2_Invoices │ │ │ ├── 2_Invoices_gt1.xlsx │ │ │ ├── 2_Invoices_gt1_check.yaml │ │ │ ├── 2_Invoices_gt2.xlsx │ │ │ ├── 2_Invoices_gt2_check.yaml │ │ │ ├── 2_Invoices_gt3.xlsx │ │ │ ├── 2_Invoices_gt3_check.yaml │ │ │ ├── 2_Invoices_gt4.xlsx │ │ │ ├── 2_Invoices_gt4_check.yaml │ │ │ ├── 2_Invoices_gt5.xlsx │ │ │ └── 2_Invoices_gt5_check.yaml │ │ ├── 3_Invoices │ │ │ ├── 3_Invoices_gt1.xlsx │ │ │ ├── 3_Invoices_gt1_check.yaml │ │ │ ├── 3_Invoices_gt2.xlsx │ │ │ ├── 3_Invoices_gt2_check.yaml │ │ │ ├── 3_Invoices_gt3.xlsx │ │ │ ├── 3_Invoices_gt3_check.yaml │ │ │ ├── 3_Invoices_gt4.xlsx │ │ │ └── 3_Invoices_gt4_check.yaml │ │ ├── 4_Invoices │ │ │ ├── 4_Invoices_gt1.xlsx │ │ │ ├── 4_Invoices_gt1_check.yaml │ │ │ ├── 4_Invoices_gt2.xlsx │ │ │ ├── 4_Invoices_gt2_check.yaml │ │ │ ├── 4_Invoices_gt3.xlsx │ │ │ ├── 4_Invoices_gt3_check.yaml │ │ │ ├── 4_Invoices_gt4.xlsx │ │ │ └── 4_Invoices_gt4_check.yaml │ │ ├── 5_Invoices │ │ │ ├── 5_Invoices_gt1.xlsx │ │ │ ├── 5_Invoices_gt1_check.yaml │ │ │ ├── 5_Invoices_gt2.xlsx │ │ │ ├── 5_Invoices_gt2_check.yaml │ │ │ ├── 5_Invoices_gt3.xlsx │ │ │ └── 5_Invoices_gt3_check.yaml │ │ ├── 6_Invoices │ │ │ ├── 6_Invoices_gt1.xlsx │ │ │ ├── 6_Invoices_gt1_check.yaml │ │ │ ├── 6_Invoices_gt2.xlsx │ │ │ ├── 6_Invoices_gt2_check.yaml │ │ │ ├── 6_Invoices_gt3.xlsx │ │ │ ├── 6_Invoices_gt3_check.yaml │ │ │ ├── 6_Invoices_gt4.xlsx │ │ │ └── 6_Invoices_gt4_check.yaml │ │ ├── 7_Invoices │ │ │ ├── 7_Invoices_gt1.xlsx │ │ │ ├── 7_Invoices_gt1_check.yaml │ │ │ ├── 7_Invoices_gt2.xlsx │ │ │ └── 7_Invoices_gt2_check.yaml │ │ ├── 8_Invoices │ │ │ ├── 8_Invoices_gt1.xlsx │ │ │ └── 8_Invoices_gt1_check.yaml │ │ └── 9_Invoices │ │ │ ├── 9_Invoices_gt1.xlsx │ │ │ ├── 9_Invoices_gt1_check.yaml │ │ │ ├── 9_Invoices_gt2.xlsx │ │ │ └── 9_Invoices_gt2_check.yaml │ ├── MaturityDate │ │ ├── 1_MaturityDate │ │ │ ├── 1_MaturityDate_gt1.xlsx │ │ │ └── 1_MaturityDate_gt1_check.yaml │ │ ├── 2_MaturityDate │ │ │ ├── 2_MaturityDate_gt1.xlsx │ │ │ └── 2_MaturityDate_gt1_check.yaml │ │ ├── 3_MaturityDate │ │ │ ├── 3_MaturityDate_gt1.xlsx │ │ │ ├── 3_MaturityDate_gt1_check.yaml │ │ │ ├── 3_MaturityDate_gt2.xlsx │ │ │ └── 3_MaturityDate_gt2_check.yaml │ │ ├── 4_MaturityDate │ │ │ ├── 4_MaturityDate_gt1.xlsx │ │ │ ├── 4_MaturityDate_gt1_check.yaml │ │ │ ├── 4_MaturityDate_gt2.xlsx │ │ │ ├── 4_MaturityDate_gt2_check.yaml │ │ │ ├── 4_MaturityDate_gt3.xlsx │ │ │ ├── 4_MaturityDate_gt3_check.yaml │ │ │ ├── 4_MaturityDate_gt4.xlsx │ │ │ ├── 4_MaturityDate_gt4_check.yaml │ │ │ ├── 4_MaturityDate_gt5.xlsx │ │ │ ├── 4_MaturityDate_gt5_check.yaml │ │ │ ├── 4_MaturityDate_gt6.xlsx │ │ │ ├── 4_MaturityDate_gt6_check.yaml │ │ │ ├── 4_MaturityDate_gt7.xlsx │ │ │ └── 4_MaturityDate_gt7_check.yaml │ │ ├── 5_MaturityDate │ │ │ ├── 5_MaturityDate_gt1.xlsx │ │ │ └── 5_MaturityDate_gt1_check.yaml │ │ ├── 6_MaturityDate │ │ │ ├── 6_MaturityDate_gt1.xlsx │ │ │ └── 6_MaturityDate_gt1_check.yaml │ │ ├── 7_MaturityDate │ │ │ ├── 7_MaturityDate_gt1.xlsx │ │ │ ├── 7_MaturityDate_gt1_check.yaml │ │ │ ├── 7_MaturityDate_gt2.xlsx │ │ │ └── 7_MaturityDate_gt2_check.yaml │ │ └── 8_MaturityDate │ │ │ ├── 8_MaturityDate_gt1.xlsx │ │ │ └── 8_MaturityDate_gt1_check.yaml │ ├── NetIncome │ │ ├── 1_NetIncome │ │ │ ├── 1_NetIncome_gt1.xlsx │ │ │ ├── 1_NetIncome_gt1_check.yaml │ │ │ ├── 1_NetIncome_gt2.xlsx │ │ │ └── 1_NetIncome_gt2_check.yaml │ │ ├── 2_NetIncome │ │ │ ├── 2_NetIncome_gt1.xlsx │ │ │ ├── 2_NetIncome_gt1_check.yaml │ │ │ ├── 2_NetIncome_gt2.xlsx │ │ │ └── 2_NetIncome_gt2_check.yaml │ │ └── 3_NetIncome │ │ │ ├── 3_NetIncome_gt1.xlsx │ │ │ └── 3_NetIncome_gt1_check.yaml │ ├── PeriodRate │ │ ├── 1_PeriodRate │ │ │ ├── 1_PeriodRate_gt1.xlsx │ │ │ ├── 1_PeriodRate_gt1_check.yaml │ │ │ ├── 1_PeriodRate_gt2.xlsx │ │ │ ├── 1_PeriodRate_gt2_check.yaml │ │ │ ├── 1_PeriodRate_gt3.xlsx │ │ │ ├── 1_PeriodRate_gt3_check.yaml │ │ │ ├── 1_PeriodRate_gt4.xlsx │ │ │ └── 1_PeriodRate_gt4_check.yaml │ │ ├── 2_PeriodRate │ │ │ ├── 2_PeriodRate_gt1.xlsx │ │ │ └── 2_PeriodRate_gt1_check.yaml │ │ ├── 3_PeriodRate │ │ │ ├── 3_PeriodRate_gt1.xlsx │ │ │ └── 3_PeriodRate_gt1_check.yaml │ │ ├── 4_PeriodRate │ │ │ ├── 4_PeriodRate_gt1.xlsx │ │ │ ├── 4_PeriodRate_gt1_check.yaml │ │ │ ├── 4_PeriodRate_gt2.xlsx │ │ │ └── 4_PeriodRate_gt2_check.yaml │ │ └── 5_PeriodRate │ │ │ ├── 5_PeriodRate_gt1.xlsx │ │ │ ├── 5_PeriodRate_gt1_check.yaml │ │ │ ├── 5_PeriodRate_gt2.xlsx │ │ │ └── 5_PeriodRate_gt2_check.yaml │ ├── PresentValue │ │ ├── 1_PresentValue │ │ │ ├── 1_PresentValue_gt1.xlsx │ │ │ └── 1_PresentValue_gt1_check.yaml │ │ ├── 2_PresentValue │ │ │ ├── 2_PresentValue_gt1.xlsx │ │ │ └── 2_PresentValue_gt1_check.yaml │ │ ├── 3_PresentValue │ │ │ ├── 3_PresentValue_gt1.xlsx │ │ │ ├── 3_PresentValue_gt1_check.yaml │ │ │ ├── 3_PresentValue_gt2.xlsx │ │ │ ├── 3_PresentValue_gt2_check.yaml │ │ │ ├── 3_PresentValue_gt3.xlsx │ │ │ └── 3_PresentValue_gt3_check.yaml │ │ ├── 4_PresentValue │ │ │ ├── 4_PresentValue_gt1.xlsx │ │ │ └── 4_PresentValue_gt1_check.yaml │ │ ├── 5_PresentValue │ │ │ ├── 5_PresentValue_gt1.xlsx │ │ │ ├── 5_PresentValue_gt1_check.yaml │ │ │ ├── 5_PresentValue_gt2.xlsx │ │ │ ├── 5_PresentValue_gt2_check.yaml │ │ │ ├── 5_PresentValue_gt3.xlsx │ │ │ └── 5_PresentValue_gt3_check.yaml │ │ └── 6_PresentValue │ │ │ ├── 6_PresentValue_gt1.xlsx │ │ │ └── 6_PresentValue_gt1_check.yaml │ ├── PricingTable │ │ ├── 10_PricingTable │ │ │ ├── 10_PricingTable_gt1.xlsx │ │ │ └── 10_PricingTable_gt1_check.yaml │ │ ├── 1_PricingTable │ │ │ ├── 1_PricingTable_gt1.xlsx │ │ │ └── 1_PricingTable_gt1_check.yaml │ │ ├── 2_PricingTable │ │ │ ├── 2_PricingTable_gt1.xlsx │ │ │ └── 2_PricingTable_gt1_check.yaml │ │ ├── 3_PricingTable │ │ │ ├── 3_PricingTable_gt1.xlsx │ │ │ └── 3_PricingTable_gt1_check.yaml │ │ ├── 4_PricingTable │ │ │ ├── 4_PricingTable_gt1.xlsx │ │ │ └── 4_PricingTable_gt1_check.yaml │ │ ├── 5_PricingTable │ │ │ ├── 5_PricingTable_gt1.xlsx │ │ │ ├── 5_PricingTable_gt1_check.yaml │ │ │ ├── 5_PricingTable_gt2.xlsx │ │ │ └── 5_PricingTable_gt2_check.yaml │ │ ├── 6_PricingTable │ │ │ ├── 6_PricingTable_gt1.xlsx │ │ │ └── 6_PricingTable_gt1_check.yaml │ │ ├── 7_PricingTable │ │ │ ├── 7_PricingTable_gt1.xlsx │ │ │ └── 7_PricingTable_gt1_check.yaml │ │ ├── 8_PricingTable │ │ │ ├── 8_PricingTable_gt1.xlsx │ │ │ ├── 8_PricingTable_gt1_check.yaml │ │ │ ├── 8_PricingTable_gt2.xlsx │ │ │ └── 8_PricingTable_gt2_check.yaml │ │ └── 9_PricingTable │ │ │ ├── 9_PricingTable_gt1.xlsx │ │ │ └── 9_PricingTable_gt1_check.yaml │ ├── RampUpAndDown │ │ ├── 1_RampUpAndDown │ │ │ ├── 1_RampUpAndDown_gt1.xlsx │ │ │ └── 1_RampUpAndDown_gt1_check.yaml │ │ ├── 2_RampUpAndDown │ │ │ ├── 2_RampUpAndDown_gt1.xlsx │ │ │ ├── 2_RampUpAndDown_gt1_check.yaml │ │ │ ├── 2_RampUpAndDown_gt2.xlsx │ │ │ └── 2_RampUpAndDown_gt2_check.yaml │ │ ├── 3_RampUpAndDown │ │ │ ├── 3_RampUpAndDown_gt1.xlsx │ │ │ └── 3_RampUpAndDown_gt1_check.yaml │ │ ├── 4_RampUpAndDown │ │ │ ├── 4_RampUpAndDown_gt1.xlsx │ │ │ └── 4_RampUpAndDown_gt1_check.yaml │ │ └── 5_RampUpAndDown │ │ │ ├── 5_RampUpAndDown_gt1.xlsx │ │ │ └── 5_RampUpAndDown_gt1_check.yaml │ ├── SalesRep │ │ ├── 1_SalesRep │ │ │ ├── 1_SalesRep_gt1.xlsx │ │ │ ├── 1_SalesRep_gt1_check.yaml │ │ │ ├── 1_SalesRep_gt2.xlsx │ │ │ └── 1_SalesRep_gt2_check.yaml │ │ ├── 2_SalesRep │ │ │ ├── 2_SalesRep_gt1.xlsx │ │ │ └── 2_SalesRep_gt1_check.yaml │ │ ├── 3_SalesRep │ │ │ ├── 3_SalesRep_gt1.xlsx │ │ │ └── 3_SalesRep_gt1_check.yaml │ │ ├── 4_SalesRep │ │ │ ├── 4_SalesRep_gt1.xlsx │ │ │ └── 4_SalesRep_gt1_check.yaml │ │ ├── 5_SalesRep │ │ │ ├── 5_SalesRep_gt1.xlsx │ │ │ └── 5_SalesRep_gt1_check.yaml │ │ └── 6_SalesRep │ │ │ ├── 6_SalesRep_gt1.xlsx │ │ │ └── 6_SalesRep_gt1_check.yaml │ ├── ShippingCosts │ │ ├── 1_ShippingCosts │ │ │ ├── 1_ShippingCosts_gt1.xlsx │ │ │ ├── 1_ShippingCosts_gt1_check.yaml │ │ │ ├── 1_ShippingCosts_gt2.xlsx │ │ │ └── 1_ShippingCosts_gt2_check.yaml │ │ ├── 2_ShippingCosts │ │ │ ├── 2_ShippingCosts_gt1.xlsx │ │ │ └── 2_ShippingCosts_gt1_check.yaml │ │ ├── 3_ShippingCosts │ │ │ ├── 3_ShippingCosts_gt1.xlsx │ │ │ ├── 3_ShippingCosts_gt1_check.yaml │ │ │ ├── 3_ShippingCosts_gt2.xlsx │ │ │ └── 3_ShippingCosts_gt2_check.yaml │ │ ├── 4_ShippingCosts │ │ │ ├── 4_ShippingCosts_gt1.xlsx │ │ │ └── 4_ShippingCosts_gt1_check.yaml │ │ ├── 5_ShippingCosts │ │ │ ├── 5_ShippingCosts_gt1.xlsx │ │ │ ├── 5_ShippingCosts_gt1_check.yaml │ │ │ ├── 5_ShippingCosts_gt2.xlsx │ │ │ └── 5_ShippingCosts_gt2_check.yaml │ │ ├── 6_ShippingCosts │ │ │ ├── 6_ShippingCosts_gt1.xlsx │ │ │ └── 6_ShippingCosts_gt1_check.yaml │ │ └── 7_ShippingCosts │ │ │ ├── 7_ShippingCosts_gt1.xlsx │ │ │ └── 7_ShippingCosts_gt1_check.yaml │ ├── SimpleCompoundInterest │ │ ├── 1_SimpleCompoundInterest │ │ │ ├── 1_SimpleCompoundInterest_gt1.xlsx │ │ │ ├── 1_SimpleCompoundInterest_gt1_check.yaml │ │ │ ├── 1_SimpleCompoundInterest_gt2.xlsx │ │ │ └── 1_SimpleCompoundInterest_gt2_check.yaml │ │ └── 2_SimpleCompoundInterest │ │ │ ├── 2_SimpleCompoundInterest_gt1.xlsx │ │ │ ├── 2_SimpleCompoundInterest_gt1_check.yaml │ │ │ ├── 2_SimpleCompoundInterest_gt2.xlsx │ │ │ └── 2_SimpleCompoundInterest_gt2_check.yaml │ ├── SmallBalanceSheet │ │ ├── 1_SmallBalanceSheet │ │ │ ├── 1_SmallBalanceSheet_gt1.xlsx │ │ │ └── 1_SmallBalanceSheet_gt1_check.yaml │ │ ├── 2_SmallBalanceSheet │ │ │ ├── 2_SmallBalanceSheet_gt1.xlsx │ │ │ └── 2_SmallBalanceSheet_gt1_check.yaml │ │ ├── 3_SmallBalanceSheet │ │ │ ├── 3_SmallBalanceSheet_gt1.xlsx │ │ │ └── 3_SmallBalanceSheet_gt1_check.yaml │ │ ├── 4_SmallBalanceSheet │ │ │ ├── 4_SmallBalanceSheet_gt1.xlsx │ │ │ └── 4_SmallBalanceSheet_gt1_check.yaml │ │ ├── 5_SmallBalanceSheet │ │ │ ├── 5_SmallBalanceSheet_gt1.xlsx │ │ │ ├── 5_SmallBalanceSheet_gt1_check.yaml │ │ │ ├── 5_SmallBalanceSheet_gt2.xlsx │ │ │ └── 5_SmallBalanceSheet_gt2_check.yaml │ │ ├── 6_SmallBalanceSheet │ │ │ ├── 6_SmallBalanceSheet_gt1.xlsx │ │ │ ├── 6_SmallBalanceSheet_gt1_check.yaml │ │ │ ├── 6_SmallBalanceSheet_gt2.xlsx │ │ │ └── 6_SmallBalanceSheet_gt2_check.yaml │ │ └── 7_SmallBalanceSheet │ │ │ ├── 7_SmallBalanceSheet_gt1.xlsx │ │ │ └── 7_SmallBalanceSheet_gt1_check.yaml │ ├── StockChange │ │ ├── 1_StockChange │ │ │ ├── 1_StockChange_gt1.xlsx │ │ │ └── 1_StockChange_gt1_check.yaml │ │ ├── 2_StockChange │ │ │ ├── 2_StockChange_gt1.xlsx │ │ │ ├── 2_StockChange_gt1_check.yaml │ │ │ ├── 2_StockChange_gt2.xlsx │ │ │ └── 2_StockChange_gt2_check.yaml │ │ ├── 3_StockChange │ │ │ ├── 3_StockChange_gt1.xlsx │ │ │ ├── 3_StockChange_gt1_check.yaml │ │ │ ├── 3_StockChange_gt2.xlsx │ │ │ ├── 3_StockChange_gt2_check.yaml │ │ │ ├── 3_StockChange_gt3.xlsx │ │ │ └── 3_StockChange_gt3_check.yaml │ │ └── 4_StockChange │ │ │ ├── 4_StockChange_gt1.xlsx │ │ │ ├── 4_StockChange_gt1_check.yaml │ │ │ ├── 4_StockChange_gt2.xlsx │ │ │ ├── 4_StockChange_gt2_check.yaml │ │ │ ├── 4_StockChange_gt3.xlsx │ │ │ └── 4_StockChange_gt3_check.yaml │ ├── SummerSales │ │ ├── 1_SummerSales │ │ │ ├── 1_SummerSales_gt1.xlsx │ │ │ ├── 1_SummerSales_gt1_check.yaml │ │ │ ├── 1_SummerSales_gt2.xlsx │ │ │ └── 1_SummerSales_gt2_check.yaml │ │ ├── 2_SummerSales │ │ │ ├── 2_SummerSales_gt1.xlsx │ │ │ └── 2_SummerSales_gt1_check.yaml │ │ ├── 3_SummerSales │ │ │ ├── 3_SummerSales_gt1.xlsx │ │ │ └── 3_SummerSales_gt1_check.yaml │ │ ├── 4_SummerSales │ │ │ ├── 4_SummerSales_gt1.xlsx │ │ │ ├── 4_SummerSales_gt1_check.yaml │ │ │ ├── 4_SummerSales_gt2.xlsx │ │ │ └── 4_SummerSales_gt2_check.yaml │ │ ├── 5_SummerSales │ │ │ ├── 5_SummerSales_gt1.xlsx │ │ │ └── 5_SummerSales_gt1_check.yaml │ │ ├── 6_SummerSales │ │ │ ├── 6_SummerSales_gt1.xlsx │ │ │ ├── 6_SummerSales_gt1_check.yaml │ │ │ ├── 6_SummerSales_gt2.xlsx │ │ │ └── 6_SummerSales_gt2_check.yaml │ │ ├── 7_SummerSales │ │ │ ├── 7_SummerSales_gt1.xlsx │ │ │ └── 7_SummerSales_gt1_check.yaml │ │ ├── 8_SummerSales │ │ │ ├── 8_SummerSales_gt1.xlsx │ │ │ ├── 8_SummerSales_gt1_check.yaml │ │ │ ├── 8_SummerSales_gt2.xlsx │ │ │ └── 8_SummerSales_gt2_check.yaml │ │ └── 9_SummerSales │ │ │ ├── 9_SummerSales_gt1.xlsx │ │ │ └── 9_SummerSales_gt1_check.yaml │ ├── Tax │ │ ├── 1_Tax │ │ │ ├── 1_Tax_gt1.xlsx │ │ │ ├── 1_Tax_gt1_check.yaml │ │ │ ├── 1_Tax_gt2.xlsx │ │ │ └── 1_Tax_gt2_check.yaml │ │ ├── 2_Tax │ │ │ ├── 2_Tax_gt1.xlsx │ │ │ ├── 2_Tax_gt1_check.yaml │ │ │ ├── 2_Tax_gt2.xlsx │ │ │ └── 2_Tax_gt2_check.yaml │ │ ├── 3_Tax │ │ │ ├── 3_Tax_gt1.xlsx │ │ │ └── 3_Tax_gt1_check.yaml │ │ ├── 4_Tax │ │ │ ├── 4_Tax_gt1.xlsx │ │ │ └── 4_Tax_gt1_check.yaml │ │ ├── 5_Tax │ │ │ ├── 5_Tax_gt1.xlsx │ │ │ ├── 5_Tax_gt1_check.yaml │ │ │ ├── 5_Tax_gt2.xlsx │ │ │ └── 5_Tax_gt2_check.yaml │ │ └── 6_Tax │ │ │ ├── 6_Tax_gt1.xlsx │ │ │ └── 6_Tax_gt1_check.yaml │ ├── VelocityDisplacement │ │ ├── 1_VelocityDisplacement │ │ │ ├── 1_VelocityDisplacement_gt1.xlsx │ │ │ ├── 1_VelocityDisplacement_gt1_check.yaml │ │ │ ├── 1_VelocityDisplacement_gt2.xlsx │ │ │ └── 1_VelocityDisplacement_gt2_check.yaml │ │ ├── 2_VelocityDisplacement │ │ │ ├── 2_VelocityDisplacement_gt1.xlsx │ │ │ ├── 2_VelocityDisplacement_gt1_check.yaml │ │ │ ├── 2_VelocityDisplacement_gt2.xlsx │ │ │ └── 2_VelocityDisplacement_gt2_check.yaml │ │ ├── 3_VelocityDisplacement │ │ │ ├── 3_VelocityDisplacement_gt1.xlsx │ │ │ ├── 3_VelocityDisplacement_gt1_check.yaml │ │ │ ├── 3_VelocityDisplacement_gt2.xlsx │ │ │ └── 3_VelocityDisplacement_gt2_check.yaml │ │ ├── 4_VelocityDisplacement │ │ │ ├── 4_VelocityDisplacement_gt1.xlsx │ │ │ └── 4_VelocityDisplacement_gt1_check.yaml │ │ ├── 5_VelocityDisplacement │ │ │ ├── 5_VelocityDisplacement_gt1.xlsx │ │ │ ├── 5_VelocityDisplacement_gt1_check.yaml │ │ │ ├── 5_VelocityDisplacement_gt2.xlsx │ │ │ ├── 5_VelocityDisplacement_gt2_check.yaml │ │ │ ├── 5_VelocityDisplacement_gt3.xlsx │ │ │ └── 5_VelocityDisplacement_gt3_check.yaml │ │ ├── 6_VelocityDisplacement │ │ │ ├── 6_VelocityDisplacement_gt1.xlsx │ │ │ └── 6_VelocityDisplacement_gt1_check.yaml │ │ └── 7_VelocityDisplacement │ │ │ ├── 7_VelocityDisplacement_gt1.xlsx │ │ │ └── 7_VelocityDisplacement_gt1_check.yaml │ ├── WeeklySales │ │ ├── 10_WeeklySales │ │ │ ├── 10_WeeklySales_gt1.xlsx │ │ │ └── 10_WeeklySales_gt1_check.yaml │ │ ├── 11_WeeklySales │ │ │ ├── 11_WeeklySales_gt1.xlsx │ │ │ ├── 11_WeeklySales_gt1_check.yaml │ │ │ ├── 11_WeeklySales_gt2.xlsx │ │ │ └── 11_WeeklySales_gt2_check.yaml │ │ ├── 12_WeeklySales │ │ │ ├── 12_WeeklySales_gt1.xlsx │ │ │ └── 12_WeeklySales_gt1_check.yaml │ │ ├── 13_WeeklySales │ │ │ ├── 13_WeeklySales_gt1.xlsx │ │ │ ├── 13_WeeklySales_gt1_check.yaml │ │ │ ├── 13_WeeklySales_gt2.xlsx │ │ │ └── 13_WeeklySales_gt2_check.yaml │ │ ├── 1_WeeklySales │ │ │ ├── 1_WeeklySales_gt1.xlsx │ │ │ ├── 1_WeeklySales_gt1_check.yaml │ │ │ ├── 1_WeeklySales_gt2.xlsx │ │ │ └── 1_WeeklySales_gt2_check.yaml │ │ ├── 2_WeeklySales │ │ │ ├── 2_WeeklySales_gt1.xlsx │ │ │ ├── 2_WeeklySales_gt1_check.yaml │ │ │ ├── 2_WeeklySales_gt2.xlsx │ │ │ └── 2_WeeklySales_gt2_check.yaml │ │ ├── 3_WeeklySales │ │ │ ├── 3_WeeklySales_gt1.xlsx │ │ │ ├── 3_WeeklySales_gt1_check.yaml │ │ │ ├── 3_WeeklySales_gt2.xlsx │ │ │ ├── 3_WeeklySales_gt2_check.yaml │ │ │ ├── 3_WeeklySales_gt3.xlsx │ │ │ └── 3_WeeklySales_gt3_check.yaml │ │ ├── 4_WeeklySales │ │ │ ├── 4_WeeklySales_gt1.xlsx │ │ │ └── 4_WeeklySales_gt1_check.yaml │ │ ├── 5_WeeklySales │ │ │ ├── 5_WeeklySales_gt1.xlsx │ │ │ └── 5_WeeklySales_gt1_check.yaml │ │ ├── 6_WeeklySales │ │ │ ├── 6_WeeklySales_gt1.xlsx │ │ │ ├── 6_WeeklySales_gt1_check.yaml │ │ │ ├── 6_WeeklySales_gt2.xlsx │ │ │ └── 6_WeeklySales_gt2_check.yaml │ │ ├── 7_WeeklySales │ │ │ ├── 7_WeeklySales_gt1.xlsx │ │ │ └── 7_WeeklySales_gt1_check.yaml │ │ ├── 8_WeeklySales │ │ │ ├── 8_WeeklySales_gt1.xlsx │ │ │ ├── 8_WeeklySales_gt1_check.yaml │ │ │ ├── 8_WeeklySales_gt2.xlsx │ │ │ └── 8_WeeklySales_gt2_check.yaml │ │ └── 9_WeeklySales │ │ │ ├── 9_WeeklySales_gt1.xlsx │ │ │ ├── 9_WeeklySales_gt1_check.yaml │ │ │ ├── 9_WeeklySales_gt2.xlsx │ │ │ └── 9_WeeklySales_gt2_check.yaml │ └── XYScatterPlot │ │ ├── 10_XYScatterPlot │ │ ├── 10_XYScatterPlot_gt1.xlsx │ │ └── 10_XYScatterPlot_gt1_check.yaml │ │ ├── 1_XYScatterPlot │ │ ├── 1_XYScatterPlot_gt1.xlsx │ │ ├── 1_XYScatterPlot_gt1_check.yaml │ │ ├── 1_XYScatterPlot_gt2.xlsx │ │ └── 1_XYScatterPlot_gt2_check.yaml │ │ ├── 2_XYScatterPlot │ │ ├── 2_XYScatterPlot_gt1.xlsx │ │ ├── 2_XYScatterPlot_gt1_check.yaml │ │ ├── 2_XYScatterPlot_gt2.xlsx │ │ └── 2_XYScatterPlot_gt2_check.yaml │ │ ├── 3_XYScatterPlot │ │ ├── 3_XYScatterPlot_gt1.xlsx │ │ ├── 3_XYScatterPlot_gt1_check.yaml │ │ ├── 3_XYScatterPlot_gt2.xlsx │ │ ├── 3_XYScatterPlot_gt2_check.yaml │ │ ├── 3_XYScatterPlot_gt3.xlsx │ │ ├── 3_XYScatterPlot_gt3_check.yaml │ │ ├── 3_XYScatterPlot_gt4.xlsx │ │ └── 3_XYScatterPlot_gt4_check.yaml │ │ ├── 4_XYScatterPlot │ │ ├── 4_XYScatterPlot_gt1.xlsx │ │ └── 4_XYScatterPlot_gt1_check.yaml │ │ ├── 5_XYScatterPlot │ │ ├── 5_XYScatterPlot_gt1.xlsx │ │ ├── 5_XYScatterPlot_gt1_check.yaml │ │ ├── 5_XYScatterPlot_gt2.xlsx │ │ ├── 5_XYScatterPlot_gt2_check.yaml │ │ ├── 5_XYScatterPlot_gt3.xlsx │ │ └── 5_XYScatterPlot_gt3_check.yaml │ │ ├── 6_XYScatterPlot │ │ ├── 6_XYScatterPlot_gt1.xlsx │ │ └── 6_XYScatterPlot_gt1_check.yaml │ │ ├── 7_XYScatterPlot │ │ ├── 7_XYScatterPlot_gt1.xlsx │ │ └── 7_XYScatterPlot_gt1_check.yaml │ │ ├── 8_XYScatterPlot │ │ ├── 8_XYScatterPlot_gt1.xlsx │ │ ├── 8_XYScatterPlot_gt1_check.yaml │ │ ├── 8_XYScatterPlot_gt2.xlsx │ │ ├── 8_XYScatterPlot_gt2_check.yaml │ │ ├── 8_XYScatterPlot_gt3.xlsx │ │ └── 8_XYScatterPlot_gt3_check.yaml │ │ └── 9_XYScatterPlot │ │ ├── 9_XYScatterPlot_gt1.xlsx │ │ ├── 9_XYScatterPlot_gt1_check.yaml │ │ ├── 9_XYScatterPlot_gt2.xlsx │ │ └── 9_XYScatterPlot_gt2_check.yaml └── task_sheets │ ├── BoomerangSales.xlsx │ ├── BoomerangSales_Ans.xlsx │ ├── DemographicProfile.xlsx │ ├── DemographicProfile_Ans.xlsx │ ├── Dragging.xlsx │ ├── Dragging_Ans.xlsx │ ├── EasyGDPBreakdown.xlsx │ ├── EasyGDPBreakdown_Ans.xlsx │ ├── EntireShippingCosts.xlsx │ ├── EntireShippingCosts_Ans.xlsx │ ├── EntireSummerSales.xlsx │ ├── EntireSummerSales_Ans.xlsx │ ├── ExpenseReport.xlsx │ ├── ExpenseReport_Ans.xlsx │ ├── FutureValue.xlsx │ ├── FutureValue_Ans.xlsx │ ├── GDPBreakdown.xlsx │ ├── GDPBreakdown_Ans.xlsx │ ├── IncomeStatement.xlsx │ ├── IncomeStatement2.xlsx │ ├── IncomeStatement2_Ans.xlsx │ ├── IncomeStatement_Ans.xlsx │ ├── Invoices.xlsx │ ├── Invoices_Ans.xlsx │ ├── MaturityDate.xlsx │ ├── MaturityDate_Ans.xlsx │ ├── NetIncome.xlsx │ ├── NetIncome_Ans.xlsx │ ├── PeriodRate.xlsx │ ├── PeriodRate_Ans.xlsx │ ├── PresentValue.xlsx │ ├── PresentValue_Ans.xlsx │ ├── PricingTable.xlsx │ ├── PricingTable_Ans.xlsx │ ├── RampUpAndDown.xlsx │ ├── RampUpAndDown_Ans.xlsx │ ├── SalesRep.xlsx │ ├── SalesRep_Ans.xlsx │ ├── ShippingCosts.xlsx │ ├── ShippingCosts_Ans.xlsx │ ├── SimpleCompoundInterest.xlsx │ ├── SimpleCompoundInterest_Ans.xlsx │ ├── SmallBalanceSheet.xlsx │ ├── SmallBalanceSheet_Ans.xlsx │ ├── StockChange.xlsx │ ├── StockChange_Ans.xlsx │ ├── SummerSales.xlsx │ ├── SummerSales_Ans.xlsx │ ├── Tax.xlsx │ ├── Tax_Ans.xlsx │ ├── VelocityDisplacement.xlsx │ ├── VelocityDisplacement_Ans.xlsx │ ├── WeeklySales.xlsx │ ├── WeeklySales_Ans.xlsx │ ├── XYScatterPlot.xlsx │ ├── XYScatterPlot_Ans.xlsx │ └── task_instructions.xlsx └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/README.md -------------------------------------------------------------------------------- /agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/.gitignore -------------------------------------------------------------------------------- /agent/Agent/AtomicAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/Agent/AtomicAction.py -------------------------------------------------------------------------------- /agent/Agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/Agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/Agent/agent.py -------------------------------------------------------------------------------- /agent/Agent/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/Agent/constants.py -------------------------------------------------------------------------------- /agent/Agent/xwAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/Agent/xwAPI.py -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/102_Invoices/102_Invoices_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/102_Invoices/102_Invoices_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/102_Invoices/102_Invoices_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/102_Invoices/102_Invoices_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/102_Invoices/102_Invoices_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/102_Invoices/102_Invoices_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/136_PricingTable/136_PricingTable_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/136_PricingTable/136_PricingTable_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/136_PricingTable/136_PricingTable_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/136_PricingTable/136_PricingTable_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/136_PricingTable/136_PricingTable_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/136_PricingTable/136_PricingTable_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/13_DemographicProfile/13_DemographicProfile_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/13_DemographicProfile/13_DemographicProfile_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/13_DemographicProfile/13_DemographicProfile_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/13_DemographicProfile/13_DemographicProfile_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/140_PricingTable/140_PricingTable_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/140_PricingTable/140_PricingTable_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/140_PricingTable/140_PricingTable_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/140_PricingTable/140_PricingTable_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/140_PricingTable/140_PricingTable_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/140_PricingTable/140_PricingTable_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/15_DemographicProfile/15_DemographicProfile_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/15_DemographicProfile/15_DemographicProfile_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/15_DemographicProfile/15_DemographicProfile_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/15_DemographicProfile/15_DemographicProfile_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/1_BoomerangSales/1_BoomerangSales_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/1_BoomerangSales/1_BoomerangSales_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/1_BoomerangSales/1_BoomerangSales_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/1_BoomerangSales/1_BoomerangSales_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/1_BoomerangSales/1_BoomerangSales_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/1_BoomerangSales/1_BoomerangSales_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/212_XYScatterPlot/212_XYScatterPlot_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/212_XYScatterPlot/212_XYScatterPlot_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/212_XYScatterPlot/212_XYScatterPlot_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/212_XYScatterPlot/212_XYScatterPlot_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/212_XYScatterPlot/212_XYScatterPlot_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/212_XYScatterPlot/212_XYScatterPlot_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/215_XYScatterPlot/215_XYScatterPlot_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/215_XYScatterPlot/215_XYScatterPlot_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/215_XYScatterPlot/215_XYScatterPlot_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/215_XYScatterPlot/215_XYScatterPlot_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/215_XYScatterPlot/215_XYScatterPlot_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/215_XYScatterPlot/215_XYScatterPlot_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/25_EasyGDPBreakdown/25_EasyGDPBreakdown_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/25_EasyGDPBreakdown/25_EasyGDPBreakdown_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/25_EasyGDPBreakdown/25_EasyGDPBreakdown_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/25_EasyGDPBreakdown/25_EasyGDPBreakdown_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/25_EasyGDPBreakdown/25_EasyGDPBreakdown_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/25_EasyGDPBreakdown/25_EasyGDPBreakdown_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/27_EasyGDPBreakdown/27_EasyGDPBreakdown_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/27_EasyGDPBreakdown/27_EasyGDPBreakdown_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/27_EasyGDPBreakdown/27_EasyGDPBreakdown_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/27_EasyGDPBreakdown/27_EasyGDPBreakdown_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/27_EasyGDPBreakdown/27_EasyGDPBreakdown_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/27_EasyGDPBreakdown/27_EasyGDPBreakdown_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/2_BoomerangSales/2_BoomerangSales_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/2_BoomerangSales/2_BoomerangSales_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/2_BoomerangSales/2_BoomerangSales_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/2_BoomerangSales/2_BoomerangSales_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/2_BoomerangSales/2_BoomerangSales_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/2_BoomerangSales/2_BoomerangSales_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/98_Invoices/98_Invoices_1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/98_Invoices/98_Invoices_1.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/98_Invoices/98_Invoices_log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/98_Invoices/98_Invoices_log.yaml -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/98_Invoices/98_Invoices_source.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/98_Invoices/98_Invoices_source.xlsx -------------------------------------------------------------------------------- /agent/SheetCopilot_example_logs/eval_result.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/SheetCopilot_example_logs/eval_result.yaml -------------------------------------------------------------------------------- /agent/config/API_document.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/config/API_document.yaml -------------------------------------------------------------------------------- /agent/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/config/config.yaml -------------------------------------------------------------------------------- /agent/config/prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/config/prompt.yaml -------------------------------------------------------------------------------- /agent/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/evaluation.py -------------------------------------------------------------------------------- /agent/interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/interaction.py -------------------------------------------------------------------------------- /agent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/main.py -------------------------------------------------------------------------------- /agent/requirement.txt: -------------------------------------------------------------------------------- 1 | openai 2 | pywin32 3 | xlwings=0.30.4 4 | requests 5 | colorama -------------------------------------------------------------------------------- /agent/utils/ChatGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/utils/ChatGPT.py -------------------------------------------------------------------------------- /agent/utils/StateMachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/utils/StateMachine.py -------------------------------------------------------------------------------- /agent/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/utils/__init__.py -------------------------------------------------------------------------------- /agent/utils/compare_sheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/utils/compare_sheets.py -------------------------------------------------------------------------------- /agent/utils/construct_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/utils/construct_prompt.py -------------------------------------------------------------------------------- /agent/utils/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/utils/eval.py -------------------------------------------------------------------------------- /agent/vba_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/agent/vba_baseline.py -------------------------------------------------------------------------------- /assets/CatePropAndVerbNoun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/CatePropAndVerbNoun.png -------------------------------------------------------------------------------- /assets/DemoCover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/DemoCover.png -------------------------------------------------------------------------------- /assets/EasyGDP_Demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/EasyGDP_Demo.mp4 -------------------------------------------------------------------------------- /assets/GoogleSheets_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/GoogleSheets_demo.png -------------------------------------------------------------------------------- /assets/Instruc&ActDistributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/Instruc&ActDistributions.png -------------------------------------------------------------------------------- /assets/InteractionDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/InteractionDemo.gif -------------------------------------------------------------------------------- /assets/SheetCopilot-teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/SheetCopilot-teaser.png -------------------------------------------------------------------------------- /assets/StateMachine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/StateMachine.jpg -------------------------------------------------------------------------------- /assets/example_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/example_result.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/install_on_google_sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/install_on_google_sheets.png -------------------------------------------------------------------------------- /assets/poster_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/poster_small.png -------------------------------------------------------------------------------- /assets/two_clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/assets/two_clouds.png -------------------------------------------------------------------------------- /dataset/collecting_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/README.md -------------------------------------------------------------------------------- /dataset/collecting_scripts/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /dataset/collecting_scripts/adapt_superuser_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/adapt_superuser_tasks.py -------------------------------------------------------------------------------- /dataset/collecting_scripts/atomic_actions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/atomic_actions.xlsx -------------------------------------------------------------------------------- /dataset/collecting_scripts/check_task_feasibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/check_task_feasibility.py -------------------------------------------------------------------------------- /dataset/collecting_scripts/naturalize_SU_adaptations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/naturalize_SU_adaptations.py -------------------------------------------------------------------------------- /dataset/collecting_scripts/pick_samples_forall_seed_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/pick_samples_forall_seed_tasks.py -------------------------------------------------------------------------------- /dataset/collecting_scripts/seed_tasks.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/seed_tasks.jsonl -------------------------------------------------------------------------------- /dataset/collecting_scripts/seed_tasks.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/seed_tasks.xlsx -------------------------------------------------------------------------------- /dataset/collecting_scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/collecting_scripts/utils.py -------------------------------------------------------------------------------- /dataset/dataset.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/dataset.xlsx -------------------------------------------------------------------------------- /dataset/dataset_20Samples.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/dataset_20Samples.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/1_BoomerangSales/1_BoomerangSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/1_BoomerangSales/1_BoomerangSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/2_BoomerangSales/2_BoomerangSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/2_BoomerangSales/2_BoomerangSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/3_BoomerangSales/3_BoomerangSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/3_BoomerangSales/3_BoomerangSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/3_BoomerangSales/3_BoomerangSales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/3_BoomerangSales/3_BoomerangSales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/3_BoomerangSales/3_BoomerangSales_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/3_BoomerangSales/3_BoomerangSales_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/4_BoomerangSales/4_BoomerangSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/4_BoomerangSales/4_BoomerangSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/5_BoomerangSales/5_BoomerangSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/5_BoomerangSales/5_BoomerangSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/6_BoomerangSales/6_BoomerangSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/6_BoomerangSales/6_BoomerangSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/6_BoomerangSales/6_BoomerangSales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/6_BoomerangSales/6_BoomerangSales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/7_BoomerangSales/7_BoomerangSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/7_BoomerangSales/7_BoomerangSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/8_BoomerangSales/8_BoomerangSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/8_BoomerangSales/8_BoomerangSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/8_BoomerangSales/8_BoomerangSales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/8_BoomerangSales/8_BoomerangSales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/BoomerangSales/9_BoomerangSales/9_BoomerangSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/BoomerangSales/9_BoomerangSales/9_BoomerangSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/1_Dragging/1_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/1_Dragging/1_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/1_Dragging/1_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/1_Dragging/1_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/2_Dragging/2_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/2_Dragging/2_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/2_Dragging/2_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/2_Dragging/2_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/3_Dragging/3_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/3_Dragging/3_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/3_Dragging/3_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/3_Dragging/3_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/3_Dragging/3_Dragging_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/3_Dragging/3_Dragging_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/3_Dragging/3_Dragging_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/3_Dragging/3_Dragging_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/4_Dragging/4_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/4_Dragging/4_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/4_Dragging/4_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/4_Dragging/4_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/5_Dragging/5_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/5_Dragging/5_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/5_Dragging/5_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/5_Dragging/5_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/6_Dragging/6_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/6_Dragging/6_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/6_Dragging/6_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/6_Dragging/6_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/7_Dragging/7_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/7_Dragging/7_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/7_Dragging/7_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/7_Dragging/7_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/8_Dragging/8_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/8_Dragging/8_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Dragging/8_Dragging/8_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Dragging/8_Dragging/8_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ExpenseReport/1_ExpenseReport/1_ExpenseReport_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ExpenseReport/1_ExpenseReport/1_ExpenseReport_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ExpenseReport/2_ExpenseReport/2_ExpenseReport_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ExpenseReport/2_ExpenseReport/2_ExpenseReport_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ExpenseReport/3_ExpenseReport/3_ExpenseReport_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ExpenseReport/3_ExpenseReport/3_ExpenseReport_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ExpenseReport/4_ExpenseReport/4_ExpenseReport_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ExpenseReport/4_ExpenseReport/4_ExpenseReport_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ExpenseReport/5_ExpenseReport/5_ExpenseReport_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ExpenseReport/5_ExpenseReport/5_ExpenseReport_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ExpenseReport/6_ExpenseReport/6_ExpenseReport_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ExpenseReport/6_ExpenseReport/6_ExpenseReport_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/1_FutureValue/1_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/1_FutureValue/1_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/1_FutureValue/1_FutureValue_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/1_FutureValue/1_FutureValue_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/2_FutureValue/2_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/2_FutureValue/2_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/2_FutureValue/2_FutureValue_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/2_FutureValue/2_FutureValue_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/3_FutureValue/3_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/3_FutureValue/3_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/3_FutureValue/3_FutureValue_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/3_FutureValue/3_FutureValue_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/4_FutureValue/4_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/4_FutureValue/4_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/4_FutureValue/4_FutureValue_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/4_FutureValue/4_FutureValue_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/5_FutureValue/5_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/5_FutureValue/5_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/5_FutureValue/5_FutureValue_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/5_FutureValue/5_FutureValue_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/6_FutureValue/6_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/6_FutureValue/6_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/6_FutureValue/6_FutureValue_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/6_FutureValue/6_FutureValue_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/7_FutureValue/7_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/7_FutureValue/7_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/FutureValue/7_FutureValue/7_FutureValue_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/FutureValue/7_FutureValue/7_FutureValue_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/1_GDPBreakdown/1_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/1_GDPBreakdown/1_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/1_GDPBreakdown/1_GDPBreakdown_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/1_GDPBreakdown/1_GDPBreakdown_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/2_GDPBreakdown/2_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/2_GDPBreakdown/2_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/2_GDPBreakdown/2_GDPBreakdown_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/2_GDPBreakdown/2_GDPBreakdown_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/3_GDPBreakdown/3_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/3_GDPBreakdown/3_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/3_GDPBreakdown/3_GDPBreakdown_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/3_GDPBreakdown/3_GDPBreakdown_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/4_GDPBreakdown/4_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/4_GDPBreakdown/4_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/4_GDPBreakdown/4_GDPBreakdown_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/4_GDPBreakdown/4_GDPBreakdown_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/5_GDPBreakdown/5_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/5_GDPBreakdown/5_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/5_GDPBreakdown/5_GDPBreakdown_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/5_GDPBreakdown/5_GDPBreakdown_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/6_GDPBreakdown/6_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/6_GDPBreakdown/6_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/6_GDPBreakdown/6_GDPBreakdown_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/6_GDPBreakdown/6_GDPBreakdown_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/7_GDPBreakdown/7_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/7_GDPBreakdown/7_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/GDPBreakdown/7_GDPBreakdown/7_GDPBreakdown_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/GDPBreakdown/7_GDPBreakdown/7_GDPBreakdown_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/10_Invoices/10_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/10_Invoices/10_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/10_Invoices/10_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/10_Invoices/10_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/10_Invoices/10_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/10_Invoices/10_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/10_Invoices/10_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/10_Invoices/10_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/11_Invoices/11_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/11_Invoices/11_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/11_Invoices/11_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/11_Invoices/11_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/12_Invoices/12_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/12_Invoices/12_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/12_Invoices/12_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/12_Invoices/12_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/13_Invoices/13_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/13_Invoices/13_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/13_Invoices/13_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/13_Invoices/13_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/14_Invoices/14_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/14_Invoices/14_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/14_Invoices/14_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/14_Invoices/14_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/15_Invoices/15_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/15_Invoices/15_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/15_Invoices/15_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/15_Invoices/15_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/16_Invoices/16_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/16_Invoices/16_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/16_Invoices/16_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/16_Invoices/16_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/1_Invoices/1_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/1_Invoices/1_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/1_Invoices/1_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/1_Invoices/1_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/2_Invoices/2_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/2_Invoices/2_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/2_Invoices/2_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/2_Invoices/2_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/3_Invoices/3_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/3_Invoices/3_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/3_Invoices/3_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/3_Invoices/3_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/4_Invoices/4_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/4_Invoices/4_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/4_Invoices/4_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/4_Invoices/4_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/5_Invoices/5_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/5_Invoices/5_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/5_Invoices/5_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/5_Invoices/5_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/6_Invoices/6_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/6_Invoices/6_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/6_Invoices/6_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/6_Invoices/6_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/7_Invoices/7_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/7_Invoices/7_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/7_Invoices/7_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/7_Invoices/7_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/8_Invoices/8_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/8_Invoices/8_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/8_Invoices/8_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/8_Invoices/8_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/9_Invoices/9_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/9_Invoices/9_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Invoices/9_Invoices/9_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Invoices/9_Invoices/9_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/1_MaturityDate/1_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/1_MaturityDate/1_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/1_MaturityDate/1_MaturityDate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/1_MaturityDate/1_MaturityDate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/2_MaturityDate/2_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/2_MaturityDate/2_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/2_MaturityDate/2_MaturityDate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/2_MaturityDate/2_MaturityDate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/3_MaturityDate/3_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/3_MaturityDate/3_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/3_MaturityDate/3_MaturityDate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/3_MaturityDate/3_MaturityDate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/4_MaturityDate/4_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/4_MaturityDate/4_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/4_MaturityDate/4_MaturityDate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/4_MaturityDate/4_MaturityDate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/5_MaturityDate/5_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/5_MaturityDate/5_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/6_MaturityDate/6_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/6_MaturityDate/6_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/7_MaturityDate/7_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/7_MaturityDate/7_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/MaturityDate/8_MaturityDate/8_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/MaturityDate/8_MaturityDate/8_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/NetIncome/1_NetIncome/1_NetIncome_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/NetIncome/1_NetIncome/1_NetIncome_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/NetIncome/1_NetIncome/1_NetIncome_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/NetIncome/1_NetIncome/1_NetIncome_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/NetIncome/2_NetIncome/2_NetIncome_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/NetIncome/2_NetIncome/2_NetIncome_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/NetIncome/2_NetIncome/2_NetIncome_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/NetIncome/2_NetIncome/2_NetIncome_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/NetIncome/3_NetIncome/3_NetIncome_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/NetIncome/3_NetIncome/3_NetIncome_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/NetIncome/3_NetIncome/3_NetIncome_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/NetIncome/3_NetIncome/3_NetIncome_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/1_PeriodRate/1_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/1_PeriodRate/1_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/1_PeriodRate/1_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/1_PeriodRate/1_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/1_PeriodRate/1_PeriodRate_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/1_PeriodRate/1_PeriodRate_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/1_PeriodRate/1_PeriodRate_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/1_PeriodRate/1_PeriodRate_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/2_PeriodRate/2_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/2_PeriodRate/2_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/2_PeriodRate/2_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/2_PeriodRate/2_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/3_PeriodRate/3_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/3_PeriodRate/3_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/3_PeriodRate/3_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/3_PeriodRate/3_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/4_PeriodRate/4_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/4_PeriodRate/4_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/4_PeriodRate/4_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/4_PeriodRate/4_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/5_PeriodRate/5_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/5_PeriodRate/5_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PeriodRate/5_PeriodRate/5_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PeriodRate/5_PeriodRate/5_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PresentValue/1_PresentValue/1_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PresentValue/1_PresentValue/1_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PresentValue/2_PresentValue/2_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PresentValue/2_PresentValue/2_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PresentValue/3_PresentValue/3_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PresentValue/3_PresentValue/3_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PresentValue/4_PresentValue/4_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PresentValue/4_PresentValue/4_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PresentValue/5_PresentValue/5_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PresentValue/5_PresentValue/5_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PresentValue/5_PresentValue/5_PresentValue_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PresentValue/5_PresentValue/5_PresentValue_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PresentValue/6_PresentValue/6_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PresentValue/6_PresentValue/6_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/10_PricingTable/10_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/10_PricingTable/10_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/1_PricingTable/1_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/1_PricingTable/1_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/2_PricingTable/2_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/2_PricingTable/2_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/3_PricingTable/3_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/3_PricingTable/3_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/4_PricingTable/4_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/4_PricingTable/4_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/5_PricingTable/5_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/5_PricingTable/5_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/6_PricingTable/6_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/6_PricingTable/6_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/7_PricingTable/7_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/7_PricingTable/7_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/8_PricingTable/8_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/8_PricingTable/8_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/PricingTable/9_PricingTable/9_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/PricingTable/9_PricingTable/9_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/RampUpAndDown/1_RampUpAndDown/1_RampUpAndDown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/RampUpAndDown/1_RampUpAndDown/1_RampUpAndDown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/RampUpAndDown/2_RampUpAndDown/2_RampUpAndDown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/RampUpAndDown/2_RampUpAndDown/2_RampUpAndDown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/RampUpAndDown/3_RampUpAndDown/3_RampUpAndDown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/RampUpAndDown/3_RampUpAndDown/3_RampUpAndDown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/RampUpAndDown/4_RampUpAndDown/4_RampUpAndDown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/RampUpAndDown/4_RampUpAndDown/4_RampUpAndDown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/RampUpAndDown/5_RampUpAndDown/5_RampUpAndDown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/RampUpAndDown/5_RampUpAndDown/5_RampUpAndDown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/1_SalesRep/1_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/1_SalesRep/1_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/1_SalesRep/1_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/1_SalesRep/1_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/2_SalesRep/2_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/2_SalesRep/2_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/2_SalesRep/2_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/2_SalesRep/2_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/3_SalesRep/3_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/3_SalesRep/3_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/3_SalesRep/3_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/3_SalesRep/3_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/4_SalesRep/4_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/4_SalesRep/4_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/4_SalesRep/4_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/4_SalesRep/4_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/5_SalesRep/5_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/5_SalesRep/5_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/5_SalesRep/5_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/5_SalesRep/5_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/6_SalesRep/6_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/6_SalesRep/6_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SalesRep/6_SalesRep/6_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SalesRep/6_SalesRep/6_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ShippingCosts/1_ShippingCosts/1_ShippingCosts_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ShippingCosts/1_ShippingCosts/1_ShippingCosts_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ShippingCosts/2_ShippingCosts/2_ShippingCosts_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ShippingCosts/2_ShippingCosts/2_ShippingCosts_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ShippingCosts/3_ShippingCosts/3_ShippingCosts_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ShippingCosts/3_ShippingCosts/3_ShippingCosts_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ShippingCosts/4_ShippingCosts/4_ShippingCosts_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ShippingCosts/4_ShippingCosts/4_ShippingCosts_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ShippingCosts/5_ShippingCosts/5_ShippingCosts_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ShippingCosts/5_ShippingCosts/5_ShippingCosts_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ShippingCosts/6_ShippingCosts/6_ShippingCosts_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ShippingCosts/6_ShippingCosts/6_ShippingCosts_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/ShippingCosts/7_ShippingCosts/7_ShippingCosts_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/ShippingCosts/7_ShippingCosts/7_ShippingCosts_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/1_StockChange/1_StockChange_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/1_StockChange/1_StockChange_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/1_StockChange/1_StockChange_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/1_StockChange/1_StockChange_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/2_StockChange/2_StockChange_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/2_StockChange/2_StockChange_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/2_StockChange/2_StockChange_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/2_StockChange/2_StockChange_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/3_StockChange/3_StockChange_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/3_StockChange/3_StockChange_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/3_StockChange/3_StockChange_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/3_StockChange/3_StockChange_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/3_StockChange/3_StockChange_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/3_StockChange/3_StockChange_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/3_StockChange/3_StockChange_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/3_StockChange/3_StockChange_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/4_StockChange/4_StockChange_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/4_StockChange/4_StockChange_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/4_StockChange/4_StockChange_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/4_StockChange/4_StockChange_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/4_StockChange/4_StockChange_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/4_StockChange/4_StockChange_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/StockChange/4_StockChange/4_StockChange_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/StockChange/4_StockChange/4_StockChange_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/1_SummerSales/1_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/1_SummerSales/1_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/1_SummerSales/1_SummerSales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/1_SummerSales/1_SummerSales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/2_SummerSales/2_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/2_SummerSales/2_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/2_SummerSales/2_SummerSales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/2_SummerSales/2_SummerSales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/3_SummerSales/3_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/3_SummerSales/3_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/3_SummerSales/3_SummerSales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/3_SummerSales/3_SummerSales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/4_SummerSales/4_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/4_SummerSales/4_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/4_SummerSales/4_SummerSales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/4_SummerSales/4_SummerSales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/5_SummerSales/5_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/5_SummerSales/5_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/5_SummerSales/5_SummerSales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/5_SummerSales/5_SummerSales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/6_SummerSales/6_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/6_SummerSales/6_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/6_SummerSales/6_SummerSales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/6_SummerSales/6_SummerSales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/7_SummerSales/7_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/7_SummerSales/7_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/7_SummerSales/7_SummerSales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/7_SummerSales/7_SummerSales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/8_SummerSales/8_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/8_SummerSales/8_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/8_SummerSales/8_SummerSales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/8_SummerSales/8_SummerSales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/9_SummerSales/9_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/9_SummerSales/9_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/SummerSales/9_SummerSales/9_SummerSales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/SummerSales/9_SummerSales/9_SummerSales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/1_Tax/1_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/1_Tax/1_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/1_Tax/1_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/1_Tax/1_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/2_Tax/2_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/2_Tax/2_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/2_Tax/2_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/2_Tax/2_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/3_Tax/3_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/3_Tax/3_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/3_Tax/3_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/3_Tax/3_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/4_Tax/4_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/4_Tax/4_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/4_Tax/4_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/4_Tax/4_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/5_Tax/5_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/5_Tax/5_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/5_Tax/5_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/5_Tax/5_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/5_Tax/5_Tax_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/5_Tax/5_Tax_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/5_Tax/5_Tax_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/5_Tax/5_Tax_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/6_Tax/6_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/6_Tax/6_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/Tax/6_Tax/6_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/Tax/6_Tax/6_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/10_WeeklySales/10_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/10_WeeklySales/10_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/11_WeeklySales/11_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/11_WeeklySales/11_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/12_WeeklySales/12_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/12_WeeklySales/12_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/13_WeeklySales/13_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/13_WeeklySales/13_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/1_WeeklySales/1_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/1_WeeklySales/1_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/1_WeeklySales/1_WeeklySales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/1_WeeklySales/1_WeeklySales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/2_WeeklySales/2_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/2_WeeklySales/2_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/2_WeeklySales/2_WeeklySales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/2_WeeklySales/2_WeeklySales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/3_WeeklySales/3_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/3_WeeklySales/3_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/3_WeeklySales/3_WeeklySales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/3_WeeklySales/3_WeeklySales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/3_WeeklySales/3_WeeklySales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/3_WeeklySales/3_WeeklySales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/3_WeeklySales/3_WeeklySales_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/3_WeeklySales/3_WeeklySales_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/4_WeeklySales/4_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/4_WeeklySales/4_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/4_WeeklySales/4_WeeklySales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/4_WeeklySales/4_WeeklySales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/5_WeeklySales/5_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/5_WeeklySales/5_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/5_WeeklySales/5_WeeklySales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/5_WeeklySales/5_WeeklySales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/6_WeeklySales/6_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/6_WeeklySales/6_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/6_WeeklySales/6_WeeklySales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/6_WeeklySales/6_WeeklySales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/7_WeeklySales/7_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/7_WeeklySales/7_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/7_WeeklySales/7_WeeklySales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/7_WeeklySales/7_WeeklySales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/8_WeeklySales/8_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/8_WeeklySales/8_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/8_WeeklySales/8_WeeklySales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/8_WeeklySales/8_WeeklySales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/9_WeeklySales/9_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/9_WeeklySales/9_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/WeeklySales/9_WeeklySales/9_WeeklySales_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/WeeklySales/9_WeeklySales/9_WeeklySales_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/1_XYScatterPlot/1_XYScatterPlot_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/1_XYScatterPlot/1_XYScatterPlot_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/2_XYScatterPlot/2_XYScatterPlot_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/2_XYScatterPlot/2_XYScatterPlot_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/3_XYScatterPlot/3_XYScatterPlot_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/3_XYScatterPlot/3_XYScatterPlot_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/4_XYScatterPlot/4_XYScatterPlot_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/4_XYScatterPlot/4_XYScatterPlot_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/5_XYScatterPlot/5_XYScatterPlot_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/5_XYScatterPlot/5_XYScatterPlot_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/5_XYScatterPlot/5_XYScatterPlot_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/5_XYScatterPlot/5_XYScatterPlot_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/6_XYScatterPlot/6_XYScatterPlot_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/6_XYScatterPlot/6_XYScatterPlot_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/7_XYScatterPlot/7_XYScatterPlot_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/7_XYScatterPlot/7_XYScatterPlot_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/8_XYScatterPlot/8_XYScatterPlot_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/8_XYScatterPlot/8_XYScatterPlot_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/8_XYScatterPlot/8_XYScatterPlot_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/8_XYScatterPlot/8_XYScatterPlot_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/8_XYScatterPlot/8_XYScatterPlot_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/8_XYScatterPlot/8_XYScatterPlot_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers/XYScatterPlot/9_XYScatterPlot/9_XYScatterPlot_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers/XYScatterPlot/9_XYScatterPlot/9_XYScatterPlot_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/1_Dragging/1_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/1_Dragging/1_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/1_Dragging/1_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/1_Dragging/1_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/1_Dragging/1_Dragging_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/1_Dragging/1_Dragging_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/1_Dragging/1_Dragging_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/1_Dragging/1_Dragging_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt3_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt3_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt4.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt4_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/2_Dragging/2_Dragging_gt4_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/3_Dragging/3_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/3_Dragging/3_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/3_Dragging/3_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/3_Dragging/3_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/3_Dragging/3_Dragging_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/3_Dragging/3_Dragging_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/3_Dragging/3_Dragging_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/3_Dragging/3_Dragging_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/4_Dragging/4_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/4_Dragging/4_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/4_Dragging/4_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/4_Dragging/4_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/5_Dragging/5_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/5_Dragging/5_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/5_Dragging/5_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/5_Dragging/5_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/6_Dragging/6_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/6_Dragging/6_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/6_Dragging/6_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/6_Dragging/6_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/7_Dragging/7_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/7_Dragging/7_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/7_Dragging/7_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/7_Dragging/7_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/7_Dragging/7_Dragging_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/7_Dragging/7_Dragging_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/7_Dragging/7_Dragging_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/7_Dragging/7_Dragging_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/8_Dragging/8_Dragging_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/8_Dragging/8_Dragging_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Dragging/8_Dragging/8_Dragging_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Dragging/8_Dragging/8_Dragging_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/1_FutureValue/1_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/1_FutureValue/1_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/1_FutureValue/1_FutureValue_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/1_FutureValue/1_FutureValue_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/2_FutureValue/2_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/2_FutureValue/2_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/2_FutureValue/2_FutureValue_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/2_FutureValue/2_FutureValue_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/3_FutureValue/3_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/3_FutureValue/3_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/3_FutureValue/3_FutureValue_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/3_FutureValue/3_FutureValue_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/3_FutureValue/3_FutureValue_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/3_FutureValue/3_FutureValue_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/4_FutureValue/4_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/4_FutureValue/4_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/4_FutureValue/4_FutureValue_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/4_FutureValue/4_FutureValue_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/5_FutureValue/5_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/5_FutureValue/5_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/5_FutureValue/5_FutureValue_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/5_FutureValue/5_FutureValue_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/5_FutureValue/5_FutureValue_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/5_FutureValue/5_FutureValue_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/6_FutureValue/6_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/6_FutureValue/6_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/FutureValue/7_FutureValue/7_FutureValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/FutureValue/7_FutureValue/7_FutureValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/1_GDPBreakdown/1_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/1_GDPBreakdown/1_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/2_GDPBreakdown/2_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/2_GDPBreakdown/2_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/2_GDPBreakdown/2_GDPBreakdown_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/2_GDPBreakdown/2_GDPBreakdown_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/3_GDPBreakdown/3_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/3_GDPBreakdown/3_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/3_GDPBreakdown/3_GDPBreakdown_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/3_GDPBreakdown/3_GDPBreakdown_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/4_GDPBreakdown/4_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/4_GDPBreakdown/4_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/4_GDPBreakdown/4_GDPBreakdown_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/4_GDPBreakdown/4_GDPBreakdown_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/5_GDPBreakdown/5_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/5_GDPBreakdown/5_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/5_GDPBreakdown/5_GDPBreakdown_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/5_GDPBreakdown/5_GDPBreakdown_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/6_GDPBreakdown/6_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/6_GDPBreakdown/6_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/GDPBreakdown/7_GDPBreakdown/7_GDPBreakdown_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/GDPBreakdown/7_GDPBreakdown/7_GDPBreakdown_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/10_Invoices/10_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/10_Invoices/10_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/10_Invoices/10_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/10_Invoices/10_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/10_Invoices/10_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/10_Invoices/10_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/10_Invoices/10_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/10_Invoices/10_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/11_Invoices/11_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/11_Invoices/11_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/11_Invoices/11_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/11_Invoices/11_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/11_Invoices/11_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/11_Invoices/11_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/11_Invoices/11_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/11_Invoices/11_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/12_Invoices/12_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/12_Invoices/12_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/12_Invoices/12_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/12_Invoices/12_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/12_Invoices/12_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/12_Invoices/12_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/12_Invoices/12_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/12_Invoices/12_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/13_Invoices/13_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/13_Invoices/13_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/13_Invoices/13_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/13_Invoices/13_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/14_Invoices/14_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/14_Invoices/14_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/14_Invoices/14_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/14_Invoices/14_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/14_Invoices/14_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/14_Invoices/14_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/14_Invoices/14_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/14_Invoices/14_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt3_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt3_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt4.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt4_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/15_Invoices/15_Invoices_gt4_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/16_Invoices/16_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/16_Invoices/16_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/16_Invoices/16_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/16_Invoices/16_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt3_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt3_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt4.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt4_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt4_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt5.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt5_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/1_Invoices/1_Invoices_gt5_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt3_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt3_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt4.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt4_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt4_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt5.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt5_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/2_Invoices/2_Invoices_gt5_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt3_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt3_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt4.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt4_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/3_Invoices/3_Invoices_gt4_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt3_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt3_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt4.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt4_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/4_Invoices/4_Invoices_gt4_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt3_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/5_Invoices/5_Invoices_gt3_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt3_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt3_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt4.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt4_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/6_Invoices/6_Invoices_gt4_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/7_Invoices/7_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/7_Invoices/7_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/7_Invoices/7_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/7_Invoices/7_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/7_Invoices/7_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/7_Invoices/7_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/7_Invoices/7_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/7_Invoices/7_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/8_Invoices/8_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/8_Invoices/8_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/8_Invoices/8_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/8_Invoices/8_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/9_Invoices/9_Invoices_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/9_Invoices/9_Invoices_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/9_Invoices/9_Invoices_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/9_Invoices/9_Invoices_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/9_Invoices/9_Invoices_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/9_Invoices/9_Invoices_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Invoices/9_Invoices/9_Invoices_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Invoices/9_Invoices/9_Invoices_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/1_MaturityDate/1_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/1_MaturityDate/1_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/2_MaturityDate/2_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/2_MaturityDate/2_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/3_MaturityDate/3_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/3_MaturityDate/3_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/3_MaturityDate/3_MaturityDate_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/3_MaturityDate/3_MaturityDate_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt4.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt5.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt6.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt6.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt7.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/4_MaturityDate/4_MaturityDate_gt7.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/5_MaturityDate/5_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/5_MaturityDate/5_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/6_MaturityDate/6_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/6_MaturityDate/6_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/7_MaturityDate/7_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/7_MaturityDate/7_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/7_MaturityDate/7_MaturityDate_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/7_MaturityDate/7_MaturityDate_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/MaturityDate/8_MaturityDate/8_MaturityDate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/MaturityDate/8_MaturityDate/8_MaturityDate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/1_NetIncome/1_NetIncome_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/1_NetIncome/1_NetIncome_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/1_NetIncome/1_NetIncome_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/1_NetIncome/1_NetIncome_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/1_NetIncome/1_NetIncome_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/1_NetIncome/1_NetIncome_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/1_NetIncome/1_NetIncome_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/1_NetIncome/1_NetIncome_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/2_NetIncome/2_NetIncome_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/2_NetIncome/2_NetIncome_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/2_NetIncome/2_NetIncome_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/2_NetIncome/2_NetIncome_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/2_NetIncome/2_NetIncome_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/2_NetIncome/2_NetIncome_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/2_NetIncome/2_NetIncome_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/2_NetIncome/2_NetIncome_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/3_NetIncome/3_NetIncome_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/3_NetIncome/3_NetIncome_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/NetIncome/3_NetIncome/3_NetIncome_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/NetIncome/3_NetIncome/3_NetIncome_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt3_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt3_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt4.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt4_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/1_PeriodRate/1_PeriodRate_gt4_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/2_PeriodRate/2_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/2_PeriodRate/2_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/2_PeriodRate/2_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/2_PeriodRate/2_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/3_PeriodRate/3_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/3_PeriodRate/3_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/3_PeriodRate/3_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/3_PeriodRate/3_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/4_PeriodRate/4_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/4_PeriodRate/4_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/4_PeriodRate/4_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/4_PeriodRate/4_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/4_PeriodRate/4_PeriodRate_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/4_PeriodRate/4_PeriodRate_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/4_PeriodRate/4_PeriodRate_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/4_PeriodRate/4_PeriodRate_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/5_PeriodRate/5_PeriodRate_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/5_PeriodRate/5_PeriodRate_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/5_PeriodRate/5_PeriodRate_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/5_PeriodRate/5_PeriodRate_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/5_PeriodRate/5_PeriodRate_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/5_PeriodRate/5_PeriodRate_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PeriodRate/5_PeriodRate/5_PeriodRate_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PeriodRate/5_PeriodRate/5_PeriodRate_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/1_PresentValue/1_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/1_PresentValue/1_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/2_PresentValue/2_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/2_PresentValue/2_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/3_PresentValue/3_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/3_PresentValue/3_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/3_PresentValue/3_PresentValue_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/3_PresentValue/3_PresentValue_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/3_PresentValue/3_PresentValue_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/3_PresentValue/3_PresentValue_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/4_PresentValue/4_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/4_PresentValue/4_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/5_PresentValue/5_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/5_PresentValue/5_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/5_PresentValue/5_PresentValue_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/5_PresentValue/5_PresentValue_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/5_PresentValue/5_PresentValue_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/5_PresentValue/5_PresentValue_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PresentValue/6_PresentValue/6_PresentValue_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PresentValue/6_PresentValue/6_PresentValue_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/1_PricingTable/1_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/1_PricingTable/1_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/2_PricingTable/2_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/2_PricingTable/2_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/3_PricingTable/3_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/3_PricingTable/3_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/4_PricingTable/4_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/4_PricingTable/4_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/5_PricingTable/5_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/5_PricingTable/5_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/5_PricingTable/5_PricingTable_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/5_PricingTable/5_PricingTable_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/6_PricingTable/6_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/6_PricingTable/6_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/7_PricingTable/7_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/7_PricingTable/7_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/8_PricingTable/8_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/8_PricingTable/8_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/8_PricingTable/8_PricingTable_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/8_PricingTable/8_PricingTable_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/PricingTable/9_PricingTable/9_PricingTable_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/PricingTable/9_PricingTable/9_PricingTable_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/1_SalesRep/1_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/1_SalesRep/1_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/1_SalesRep/1_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/1_SalesRep/1_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/1_SalesRep/1_SalesRep_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/1_SalesRep/1_SalesRep_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/1_SalesRep/1_SalesRep_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/1_SalesRep/1_SalesRep_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/2_SalesRep/2_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/2_SalesRep/2_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/2_SalesRep/2_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/2_SalesRep/2_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/3_SalesRep/3_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/3_SalesRep/3_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/3_SalesRep/3_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/3_SalesRep/3_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/4_SalesRep/4_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/4_SalesRep/4_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/4_SalesRep/4_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/4_SalesRep/4_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/5_SalesRep/5_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/5_SalesRep/5_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/5_SalesRep/5_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/5_SalesRep/5_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/6_SalesRep/6_SalesRep_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/6_SalesRep/6_SalesRep_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SalesRep/6_SalesRep/6_SalesRep_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SalesRep/6_SalesRep/6_SalesRep_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/StockChange/1_StockChange/1_StockChange_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/StockChange/1_StockChange/1_StockChange_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/StockChange/2_StockChange/2_StockChange_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/StockChange/2_StockChange/2_StockChange_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/StockChange/2_StockChange/2_StockChange_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/StockChange/2_StockChange/2_StockChange_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/StockChange/3_StockChange/3_StockChange_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/StockChange/3_StockChange/3_StockChange_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/StockChange/3_StockChange/3_StockChange_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/StockChange/3_StockChange/3_StockChange_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/StockChange/3_StockChange/3_StockChange_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/StockChange/3_StockChange/3_StockChange_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/StockChange/4_StockChange/4_StockChange_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/StockChange/4_StockChange/4_StockChange_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/StockChange/4_StockChange/4_StockChange_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/StockChange/4_StockChange/4_StockChange_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/StockChange/4_StockChange/4_StockChange_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/StockChange/4_StockChange/4_StockChange_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/1_SummerSales/1_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/1_SummerSales/1_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/1_SummerSales/1_SummerSales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/1_SummerSales/1_SummerSales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/2_SummerSales/2_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/2_SummerSales/2_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/3_SummerSales/3_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/3_SummerSales/3_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/4_SummerSales/4_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/4_SummerSales/4_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/4_SummerSales/4_SummerSales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/4_SummerSales/4_SummerSales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/5_SummerSales/5_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/5_SummerSales/5_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/6_SummerSales/6_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/6_SummerSales/6_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/6_SummerSales/6_SummerSales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/6_SummerSales/6_SummerSales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/7_SummerSales/7_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/7_SummerSales/7_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/8_SummerSales/8_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/8_SummerSales/8_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/8_SummerSales/8_SummerSales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/8_SummerSales/8_SummerSales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/SummerSales/9_SummerSales/9_SummerSales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/SummerSales/9_SummerSales/9_SummerSales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/1_Tax/1_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/1_Tax/1_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/1_Tax/1_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/1_Tax/1_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/1_Tax/1_Tax_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/1_Tax/1_Tax_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/1_Tax/1_Tax_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/1_Tax/1_Tax_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/2_Tax/2_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/2_Tax/2_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/2_Tax/2_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/2_Tax/2_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/2_Tax/2_Tax_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/2_Tax/2_Tax_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/2_Tax/2_Tax_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/2_Tax/2_Tax_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/3_Tax/3_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/3_Tax/3_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/3_Tax/3_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/3_Tax/3_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/4_Tax/4_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/4_Tax/4_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/4_Tax/4_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/4_Tax/4_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/5_Tax/5_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/5_Tax/5_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/5_Tax/5_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/5_Tax/5_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/5_Tax/5_Tax_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/5_Tax/5_Tax_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/5_Tax/5_Tax_gt2_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/5_Tax/5_Tax_gt2_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/6_Tax/6_Tax_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/6_Tax/6_Tax_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/Tax/6_Tax/6_Tax_gt1_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/Tax/6_Tax/6_Tax_gt1_check.yaml -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/10_WeeklySales/10_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/10_WeeklySales/10_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/11_WeeklySales/11_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/11_WeeklySales/11_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/11_WeeklySales/11_WeeklySales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/11_WeeklySales/11_WeeklySales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/12_WeeklySales/12_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/12_WeeklySales/12_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/13_WeeklySales/13_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/13_WeeklySales/13_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/13_WeeklySales/13_WeeklySales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/13_WeeklySales/13_WeeklySales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/1_WeeklySales/1_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/1_WeeklySales/1_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/1_WeeklySales/1_WeeklySales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/1_WeeklySales/1_WeeklySales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/2_WeeklySales/2_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/2_WeeklySales/2_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/2_WeeklySales/2_WeeklySales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/2_WeeklySales/2_WeeklySales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/3_WeeklySales/3_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/3_WeeklySales/3_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/3_WeeklySales/3_WeeklySales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/3_WeeklySales/3_WeeklySales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/3_WeeklySales/3_WeeklySales_gt3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/3_WeeklySales/3_WeeklySales_gt3.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/4_WeeklySales/4_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/4_WeeklySales/4_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/5_WeeklySales/5_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/5_WeeklySales/5_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/6_WeeklySales/6_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/6_WeeklySales/6_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/6_WeeklySales/6_WeeklySales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/6_WeeklySales/6_WeeklySales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/7_WeeklySales/7_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/7_WeeklySales/7_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/8_WeeklySales/8_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/8_WeeklySales/8_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/8_WeeklySales/8_WeeklySales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/8_WeeklySales/8_WeeklySales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/9_WeeklySales/9_WeeklySales_gt1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/9_WeeklySales/9_WeeklySales_gt1.xlsx -------------------------------------------------------------------------------- /dataset/task_sheet_answers_v2/WeeklySales/9_WeeklySales/9_WeeklySales_gt2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheet_answers_v2/WeeklySales/9_WeeklySales/9_WeeklySales_gt2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/BoomerangSales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/BoomerangSales.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/BoomerangSales_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/BoomerangSales_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/DemographicProfile.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/DemographicProfile.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/DemographicProfile_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/DemographicProfile_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/Dragging.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/Dragging.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/Dragging_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/Dragging_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/EasyGDPBreakdown.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/EasyGDPBreakdown.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/EasyGDPBreakdown_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/EasyGDPBreakdown_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/EntireShippingCosts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/EntireShippingCosts.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/EntireShippingCosts_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/EntireShippingCosts_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/EntireSummerSales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/EntireSummerSales.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/EntireSummerSales_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/EntireSummerSales_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/ExpenseReport.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/ExpenseReport.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/ExpenseReport_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/ExpenseReport_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/FutureValue.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/FutureValue.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/FutureValue_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/FutureValue_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/GDPBreakdown.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/GDPBreakdown.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/GDPBreakdown_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/GDPBreakdown_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/IncomeStatement.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/IncomeStatement.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/IncomeStatement2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/IncomeStatement2.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/IncomeStatement2_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/IncomeStatement2_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/IncomeStatement_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/IncomeStatement_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/Invoices.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/Invoices.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/Invoices_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/Invoices_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/MaturityDate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/MaturityDate.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/MaturityDate_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/MaturityDate_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/NetIncome.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/NetIncome.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/NetIncome_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/NetIncome_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/PeriodRate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/PeriodRate.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/PeriodRate_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/PeriodRate_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/PresentValue.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/PresentValue.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/PresentValue_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/PresentValue_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/PricingTable.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/PricingTable.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/PricingTable_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/PricingTable_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/RampUpAndDown.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/RampUpAndDown.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/RampUpAndDown_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/RampUpAndDown_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/SalesRep.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/SalesRep.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/SalesRep_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/SalesRep_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/ShippingCosts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/ShippingCosts.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/ShippingCosts_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/ShippingCosts_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/SimpleCompoundInterest.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/SimpleCompoundInterest.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/SimpleCompoundInterest_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/SimpleCompoundInterest_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/SmallBalanceSheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/SmallBalanceSheet.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/SmallBalanceSheet_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/SmallBalanceSheet_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/StockChange.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/StockChange.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/StockChange_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/StockChange_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/SummerSales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/SummerSales.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/SummerSales_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/SummerSales_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/Tax.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/Tax.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/Tax_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/Tax_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/VelocityDisplacement.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/VelocityDisplacement.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/VelocityDisplacement_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/VelocityDisplacement_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/WeeklySales.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/WeeklySales.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/WeeklySales_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/WeeklySales_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/XYScatterPlot.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/XYScatterPlot.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/XYScatterPlot_Ans.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/XYScatterPlot_Ans.xlsx -------------------------------------------------------------------------------- /dataset/task_sheets/task_instructions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/dataset/task_sheets/task_instructions.xlsx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BraveGroup/SheetCopilot/HEAD/requirements.txt --------------------------------------------------------------------------------