gitextract_7ctmwgwc/ ├── .github/ │ └── dco.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DCO ├── FAILURES.md ├── LICENSE.md ├── Makefile ├── README.md ├── appveyor.yml ├── cmd/ │ └── license-detector/ │ ├── main.go │ └── main_test.go ├── go.mod └── licensedb/ ├── analysis.go ├── api/ │ └── api.go ├── dataset_test.go ├── filer/ │ ├── filer.go │ ├── filer_test.go │ └── test_data/ │ ├── 334a82b19a7c893d3807ea52ba35ff2170c296cc.siva │ ├── git/ │ │ ├── COMMIT_EDITMSG │ │ ├── HEAD │ │ ├── config │ │ ├── description │ │ ├── info/ │ │ │ └── exclude │ │ ├── logs/ │ │ │ ├── HEAD │ │ │ └── refs/ │ │ │ └── heads/ │ │ │ └── master │ │ ├── objects/ │ │ │ ├── 33/ │ │ │ │ └── 4a82b19a7c893d3807ea52ba35ff2170c296cc │ │ │ ├── 8a/ │ │ │ │ └── 9b00e3e4f0af606178510c19f40c5a77adb881 │ │ │ ├── cc/ │ │ │ │ └── 628ccd10742baea8241c5924df992b5c019f71 │ │ │ ├── ce/ │ │ │ │ └── 013625030ba8dba906f756967f9e9ca394464a │ │ │ └── f7/ │ │ │ └── 922e986704f99de62ca715d4794324a32e9af2 │ │ └── refs/ │ │ └── heads/ │ │ └── master │ └── local/ │ ├── one │ └── two/ │ └── three ├── internal/ │ ├── assets/ │ │ ├── bindata.go │ │ ├── extract_names.go │ │ └── extract_urls.go │ ├── db.go │ ├── fastlog/ │ │ ├── fastlog.go │ │ └── fastlog_test.go │ ├── investigation.go │ ├── nlp.go │ ├── nlp_test.go │ ├── normalize/ │ │ ├── normalize.go │ │ └── normalize_test.go │ ├── processors/ │ │ ├── html2text.go │ │ ├── html2text_test.go │ │ └── markup.go │ └── wmh/ │ ├── wmh.go │ └── wmh_test.go └── licensedb.go