gitextract_jksm79cg/ ├── .gitignore ├── README.md ├── datasets/ │ ├── access_log │ └── learning-datasets/ │ ├── testing/ │ │ ├── bad.txt │ │ └── good.txt │ └── training/ │ ├── bad.txt │ └── good.txt ├── flask/ │ ├── app.py │ ├── requirements.txt │ ├── static/ │ │ ├── css/ │ │ │ └── styles.css │ │ └── js/ │ │ └── echarts/ │ │ ├── echarts.js │ │ ├── extension/ │ │ │ ├── bmap.js │ │ │ └── dataTool.js │ │ └── map/ │ │ └── js/ │ │ ├── china.js │ │ └── world.js │ └── templates/ │ ├── about.html │ ├── analysis.html │ ├── id.html │ └── index.html ├── flume/ │ └── standalone.conf ├── log_gen/ │ └── log_gen.java └── spark/ ├── build.sbt ├── project/ │ ├── assembly.sbt │ ├── build.properties │ ├── project/ │ │ └── target/ │ │ └── config-classes/ │ │ └── $43a0538f7780cac449ae.cache │ └── target/ │ ├── config-classes/ │ │ ├── $16828faecf688d54d497.cache │ │ ├── $30003e6e888c6501d0a9.cache │ │ ├── $3d85af9b26c1a259b49e.cache │ │ ├── $46bc225346f5c722f39f.cache │ │ ├── $da50ce791668c9ed0f15.cache │ │ └── $f2cabef45cb06cd331f1.cache │ ├── scala-2.12/ │ │ └── sbt-1.0/ │ │ └── update/ │ │ └── update_cache_2.12/ │ │ ├── inputs │ │ └── output │ └── streams/ │ ├── _global/ │ │ ├── _global/ │ │ │ ├── _global/ │ │ │ │ └── streams/ │ │ │ │ └── out │ │ │ └── csrLogger/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── csrConfiguration/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── csrProject/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── dependencyPositions/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── update_cache_2.12/ │ │ │ ├── input_dsp │ │ │ └── output_dsp │ │ ├── ivyConfiguration/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── ivySbt/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── moduleSettings/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── projectDescriptors/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── scalaCompilerBridgeScope/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ └── update/ │ │ └── _global/ │ │ └── streams/ │ │ └── out │ ├── compile/ │ │ ├── _global/ │ │ │ └── _global/ │ │ │ ├── compileBinaryFileInputs/ │ │ │ │ └── previous │ │ │ ├── compileOutputs/ │ │ │ │ └── previous │ │ │ ├── compileSourceFileInputs/ │ │ │ │ └── previous │ │ │ ├── dependencyClasspathFiles/ │ │ │ │ └── previous │ │ │ ├── discoveredMainClasses/ │ │ │ │ └── data │ │ │ └── managedSourcePaths/ │ │ │ └── previous │ │ ├── compile/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── out │ │ ├── compileIncremental/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ ├── export │ │ │ └── out │ │ ├── copyResources/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ ├── copy-resources │ │ │ └── out │ │ ├── dependencyClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── exportedProducts/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── externalDependencyClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── internalDependencyClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── managedClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ ├── unmanagedClasspath/ │ │ │ └── _global/ │ │ │ └── streams/ │ │ │ └── export │ │ └── unmanagedJars/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ └── runtime/ │ ├── dependencyClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── exportedProducts/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── externalDependencyClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── fullClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── internalDependencyClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── managedClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ ├── unmanagedClasspath/ │ │ └── _global/ │ │ └── streams/ │ │ └── export │ └── unmanagedJars/ │ └── _global/ │ └── streams/ │ └── export ├── src/ │ └── main/ │ └── scala/ │ ├── learning.scala │ └── streaming.scala └── target/ └── streams/ └── _global/ └── _global/ └── checkBuildSources/ └── _global/ ├── inputFileStamps/ │ └── previous └── streams/ └── out