gitextract_dgp_2w_6/ ├── .github/ │ └── workflows/ │ └── clojure.yml ├── .gitignore ├── CHANGES.md ├── LICENSE ├── README.md ├── deps.edn ├── doc/ │ ├── api/ │ │ ├── clj-uuid.bitmop.html │ │ ├── clj-uuid.clock.html │ │ ├── clj-uuid.constants.html │ │ ├── clj-uuid.core.html │ │ ├── clj-uuid.html │ │ ├── clj-uuid.node.html │ │ ├── clj-uuid.random.html │ │ ├── clj-uuid.util.html │ │ ├── css/ │ │ │ ├── default.css │ │ │ └── highlight.css │ │ ├── index.html │ │ └── js/ │ │ └── page_effects.js │ ├── apples.md │ ├── draft-peabody-dispatch-new-uuid-format-04.html │ ├── java-and-unsigned-numbers.html │ ├── perf-analysis.md │ ├── rfc4122.txt │ ├── rfc9562.txt │ └── uuid-generation-benchmarks.md ├── project.clj ├── src/ │ ├── clj_uuid/ │ │ ├── bitmop.clj │ │ ├── clock.clj │ │ ├── constants.clj │ │ ├── core.clj │ │ ├── node.clj │ │ ├── random.clj │ │ └── util.clj │ └── clj_uuid.clj └── test/ └── clj_uuid/ ├── api_test.clj ├── bench.clj ├── bitmop_test.clj ├── clock_test.clj ├── compare_bench.clj ├── core_test.clj ├── node_test.clj ├── random_test.clj ├── util_test.clj ├── v1_test.clj ├── v3_test.clj ├── v4_test.clj ├── v5_test.clj ├── v6_test.clj ├── v7_test.clj ├── v7nc_test.clj └── v8_test.clj