gitextract_81jad5jf/ ├── .github/ │ └── workflows/ │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── cmd/ │ ├── grate2tsv/ │ │ └── main.go │ └── grater/ │ └── main.go ├── commonxl/ │ ├── cell.go │ ├── dates.go │ ├── fmt.go │ ├── fmt_test.go │ ├── formats.go │ ├── frac_test.go │ ├── numbers.go │ └── sheet.go ├── errs.go ├── go.mod ├── grate.go ├── simple/ │ ├── csv.go │ ├── simple.go │ └── tsv.go ├── xls/ │ ├── cfb/ │ │ ├── cfb.go │ │ ├── interface.go │ │ ├── simple_test.go │ │ └── slicereader.go │ ├── comp_test.go │ ├── crypto/ │ │ ├── crypto.go │ │ └── rc4.go │ ├── hyperlinks.go │ ├── records.go │ ├── sheets.go │ ├── simple_test.go │ ├── strings.go │ ├── structs.go │ └── xls.go └── xlsx/ ├── comp_test.go ├── sheets.go ├── simple_test.go ├── types.go ├── workbook.go └── xlsx.go