Mo7art commited on
Commit
e7292cc
·
verified ·
1 Parent(s): b3e6659

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +115 -0
  2. chunk_records/r0_00001.parquet +3 -0
  3. chunk_records/r0_00005.parquet +3 -0
  4. chunk_records/r0_00014.parquet +3 -0
  5. chunk_records/r0_00016.parquet +3 -0
  6. chunk_records/r0_00017.parquet +3 -0
  7. chunk_records/r0_00020.parquet +3 -0
  8. chunk_records/r0_00026.parquet +3 -0
  9. chunk_records/r0_00027.parquet +3 -0
  10. chunk_records/r0_00032.parquet +3 -0
  11. chunk_records/r0_00034.parquet +3 -0
  12. chunk_records/r1_00009.parquet +3 -0
  13. chunk_records/r1_00016.parquet +3 -0
  14. chunk_records/r1_00019.parquet +3 -0
  15. chunk_records/r1_00022.parquet +3 -0
  16. chunk_records/r2_00003.parquet +3 -0
  17. chunk_records/r2_00021.parquet +3 -0
  18. chunk_records/r2_00028.parquet +3 -0
  19. chunk_records/r2_00032.parquet +3 -0
  20. chunk_records/r2_00037.parquet +3 -0
  21. chunk_records/r2_00038.parquet +3 -0
  22. chunk_records/r3_00003.parquet +3 -0
  23. chunk_records/r3_00012.parquet +3 -0
  24. chunk_records/r3_00015.parquet +3 -0
  25. chunk_records/r3_00020.parquet +3 -0
  26. chunk_records/r3_00023.parquet +3 -0
  27. chunk_records/r3_00035.parquet +3 -0
  28. chunk_records/r4_00001.parquet +3 -0
  29. chunk_records/r4_00003.parquet +3 -0
  30. chunk_records/r4_00004.parquet +3 -0
  31. chunk_records/r4_00015.parquet +3 -0
  32. chunk_records/r4_00019.parquet +3 -0
  33. chunk_records/r4_00024.parquet +3 -0
  34. chunk_records/r5_00009.parquet +3 -0
  35. chunk_records/r5_00011.parquet +3 -0
  36. chunk_records/r5_00014.parquet +3 -0
  37. chunk_records/r5_00029.parquet +3 -0
  38. chunk_records/r5_00034.parquet +3 -0
  39. chunk_records/r6_00002.parquet +3 -0
  40. chunk_records/r6_00008.parquet +3 -0
  41. chunk_records/r6_00018.parquet +3 -0
  42. chunk_records/r6_00022.parquet +3 -0
  43. chunk_records/r6_00027.parquet +3 -0
  44. chunk_records/r6_00032.parquet +3 -0
  45. chunk_records/r6_00033.parquet +3 -0
  46. chunk_records/r7_00007.parquet +3 -0
  47. chunk_records/r7_00019.parquet +3 -0
  48. chunk_records/r7_00020.parquet +3 -0
  49. chunk_records/r7_00030.parquet +3 -0
  50. dataset_manifest.json +3308 -0
README.md ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - vector-database
4
+ - embeddings
5
+ - parquet
6
+ - qdrant
7
+ - stackoverflow
8
+ - question-answering
9
+ pretty_name: StackOverflow Vector Dataset - Html
10
+ license: cc-by-sa-4.0
11
+ size_categories:
12
+ - 1M<n<10M
13
+ ---
14
+
15
+ # Html StackOverflow Vector Dataset Datasheet
16
+
17
+ ## 1. What This Dataset Is
18
+
19
+ This dataset is the Html-specific vector shard of the Stack2Graph StackOverflow retrieval corpus.
20
+ Each Hugging Face dataset repository contains exactly one language dataset.
21
+
22
+ It is optimized for dense+sparse retrieval, Qdrant restoration, and embedding-based RAG experiments.
23
+
24
+ It is used in the Stack2Graph project as the vector counterpart to the language-scoped RDF knowledge graph shards.
25
+
26
+ See the Stack2Graph repository for more details:
27
+ [https://github.com/tha-atlas/Stack2Graph](https://github.com/tha-atlas/Stack2Graph)
28
+
29
+ ## 2. Repository Layout
30
+
31
+ ```text
32
+ dataset_manifest.json
33
+ question_metadata_*.parquet
34
+ chunk_records_*.parquet
35
+ question_records_*.parquet
36
+ ```
37
+
38
+ - `dataset_manifest.json`: language-scoped manifest for this dataset shard.
39
+ - `question_metadata_*.parquet`: per-question metadata and retrieval bookkeeping.
40
+ - `chunk_records_*.parquet`: chunk-level vector rows when parent-child indexing is enabled.
41
+ - `question_records_*.parquet`: question-level vector rows when chunking is disabled or exported alongside chunk data.
42
+
43
+ ## 3. Data Model And Coverage
44
+
45
+ The dataset is derived from Stack Overflow questions selected for the Html programming language.
46
+ It contains the structured records needed to rebuild the Stack2Graph Qdrant collection for that language.
47
+
48
+ Coverage scope:
49
+
50
+ - records are retained when they match the Stack2Graph supported language-tag set
51
+ - this repository contains only the Html shard
52
+ - the archive may contain both metadata-only and retrieval-ready vector rows depending on the export mode
53
+
54
+ ## 4. Recommended Preprocessing
55
+
56
+ 1. Read `dataset_manifest.json` first and use it as the source of truth for included Parquet files.
57
+ 2. Load all Parquet shards for this repository into your vector indexing pipeline.
58
+ 3. Rebuild or restore the Qdrant collection `stackoverflow_html_vector`.
59
+ 4. Preserve attribution and license metadata during downstream export.
60
+
61
+ ## 5. Automatic Download And Vector DB Setup
62
+
63
+ You do not need to regenerate embeddings from GraphDB to use this dataset.
64
+
65
+ In the Stack2Graph repository, you can use the automation script
66
+ `python -m experiment.load_hf_datasets_into_services --skip-kg` to download dataset artifacts
67
+ and prepare the vector database service state automatically.
68
+
69
+ Typical workflow:
70
+
71
+ 1. Clone and configure Stack2Graph (`.env` with HF token and service paths).
72
+ 1. Clone and configure Stack2Graph (`.env` with HF token and service paths).
73
+ 1. Start required local services:
74
+
75
+ ```bash
76
+ docker compose up -d
77
+ ```
78
+
79
+ 1. Run the loader script:
80
+
81
+ ```bash
82
+ python -m experiment.load_hf_datasets_into_services --skip-kg
83
+ ```
84
+
85
+ For manual usage without automation, directly ingest the listed Parquet files into your vector database.
86
+
87
+ ## 6. Quality Notes And Caveats
88
+
89
+ - A Stack Overflow question may belong to multiple language shards when tagged with multiple languages.
90
+ - Embeddings and sparse representations depend on the configured export pipeline and model versions.
91
+ - As with community-generated data, content may include noise, bias, and temporal drift.
92
+
93
+ ## 7. Intended Use
94
+
95
+ - semantic retrieval and reranking
96
+ - RAG and hybrid retriever experiments
97
+ - vector database benchmarking and diagnostics
98
+ - language-scoped developer tooling research
99
+
100
+ ## 8. Limitations
101
+
102
+ - Not a complete mirror of all Stack Overflow content.
103
+ - Not all export modes include the same row types or chunk layouts.
104
+ - Best used together with the Stack2Graph retrieval pipeline and Qdrant-compatible tooling.
105
+
106
+ ## 9. Licensing And Attribution
107
+
108
+ This dataset inherits Stack Overflow source licensing and attribution requirements.
109
+ Ensure compliant attribution and redistribution practices in all derived artifacts.
110
+
111
+ ## 10. Suggested Citation
112
+
113
+ If you use this dataset, cite the Stack2Graph work:
114
+
115
+ - Stack2Graph: A Structured Knowledge Representation of Stack Overflow Data for Retrieval-based Question Answering
chunk_records/r0_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60ea2934b6218561c2179c22c29ebfba669002c3943f3a0539e4edd0b25dbc79
3
+ size 30036803
chunk_records/r0_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdd94125ad784794b5c2869bcc3bb2e862ebf3fd6479abc4a3dfdf5981958626
3
+ size 31053286
chunk_records/r0_00014.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9b2ad3a2d5f788579301259aa881441831a803b3215207b61cc3d2517e3dc16
3
+ size 32534525
chunk_records/r0_00016.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4db8f388d541c7a2a2119bf87d49e1e127c2fcc5bf81eaea6124f4f3cf008cc5
3
+ size 32927834
chunk_records/r0_00017.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04f2e8d53ddc9b9ab80ced1cfb5c27ec8baeff02c8a584c917f26488cb567fbd
3
+ size 33129256
chunk_records/r0_00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7482f9348e38ff8eda9b07c48b5fd4fdc0662c942b13ff242980e310585437db
3
+ size 33824091
chunk_records/r0_00026.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2e66ef1214dc41a7f773920eb0a55563bf39db41b2b8b6a8cfe0e54e61d074c
3
+ size 35319847
chunk_records/r0_00027.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed55e38de6cb15b490774c1ca8437213e17a4f680667d5bd05ec71028f58d358
3
+ size 35511679
chunk_records/r0_00032.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9cd7eab264ad63c7e0c95f40d8b76957830d3f59c2e3664c514e69e60fd649d
3
+ size 35944246
chunk_records/r0_00034.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4559c136e893722d7835cc860419c9ce9f19d387239114e999877a623cab4b75
3
+ size 36388118
chunk_records/r1_00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cff5dfba306ce4f4fabb50bdbf3617755131a25a91ba85233292a396f38662ee
3
+ size 31703297
chunk_records/r1_00016.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cda91c64c139741bf7bd8811847a811f835ab736020d42efd04c57e2c64e0c1c
3
+ size 32917473
chunk_records/r1_00019.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c8e984334d1f84a7240f404cea89fcfac59fbc1d4a560e39945c580bf3e1c9c
3
+ size 33591346
chunk_records/r1_00022.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfe223d4f99ca7ba18223121c0c004deb41ff8661c00c579eb151d60bd047672
3
+ size 34404714
chunk_records/r2_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:023406a2fa772bb48a1a419db5a5373ee0767ed0ece89fcf7a3c49f646094a1f
3
+ size 30704803
chunk_records/r2_00021.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a299ba9076f14dee61a2a8619748d29439105fca8e429a08a8f09e5a71b016f4
3
+ size 34158440
chunk_records/r2_00028.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae73306c4b8d3c0328cab74e43dcd0f327b8c3e794de79c3c30e39ca7d1c43b1
3
+ size 35551826
chunk_records/r2_00032.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f4c00edc8eea82cbd530fb0ca1866a53973c152f2448a3a4df8f4d9291efd47
3
+ size 36039938
chunk_records/r2_00037.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1d3007014bf5f4da9d15a97b9f507eee0b5f625e7cb6ecf1566bc486e1949de
3
+ size 37469892
chunk_records/r2_00038.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:073992c46386f9ea2c0ebded931ca28bfeb3c8908a5e77d0ebbbeb1999d22dfa
3
+ size 37487191
chunk_records/r3_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e289348b69f555acca1336396fc1d4d44edaad355f77830bbb2cac76c78ebb5b
3
+ size 30709321
chunk_records/r3_00012.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9882d4f45d67c437eb3fa4e8631eab938f5be5caf27c58aafa38fc5e9de75c60
3
+ size 32199571
chunk_records/r3_00015.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8131adcd07307dd490beab8b6c02d6b3a1467ff177b14d819ffb4b1d331d8944
3
+ size 32746121
chunk_records/r3_00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed0e28735e70dd65fc2ef5a5b4f1ab80f3b052a2db236345814e724cc05ad030
3
+ size 33869882
chunk_records/r3_00023.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4385fcbee4a74106c4b628a3bf649801416fc98ab2dda9902a238b4edb97678
3
+ size 34673149
chunk_records/r3_00035.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:151487309dd420b239b4def6d4e18d795474dc7121771a0fe36f3d90b63b9e49
3
+ size 36669458
chunk_records/r4_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa1c288f05c1943a6452282e10287d0a0e4b13daa6eba7beb01cb65062135743
3
+ size 30082198
chunk_records/r4_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5798a497a80baa452923ed92f9dc6e8f7549c9a4d495b3ca62bc6cb3fd74b0b5
3
+ size 30698193
chunk_records/r4_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3667adcd90e9ad6f41085d4abb1b3f35c522f48707de11efb3724562c0b5998d
3
+ size 30884130
chunk_records/r4_00015.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b009fbea7488faec513f7c577eb8add6ff9a20e70eb566e8aa6181d93590ec56
3
+ size 32733398
chunk_records/r4_00019.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa71df45f78f9d4bcf0b817b58fad79afce4460ed2c85a102be2ad92f877ab47
3
+ size 33619408
chunk_records/r4_00024.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1e9827b681c59d48668ef1f78e3775cd15e211fa5f3bbb5424204fa90c2be3e
3
+ size 34892395
chunk_records/r5_00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0970e899284e0d927982926c3d7b89cd0b05daf0c593a1829360baec589d9fd6
3
+ size 31723180
chunk_records/r5_00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22bcda2f906697646a93597b5e82e90102a32eb3c1d6b9c4b7361702a5b4cac7
3
+ size 31999683
chunk_records/r5_00014.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bcc48a6afa41281aa81a6842de4c5365297f5b54906e6d203ee857eedd6a748
3
+ size 32571332
chunk_records/r5_00029.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e96b9af88d02102bc7f68e78742e47e743afb5f497e9f978e458d4369bd9a8d
3
+ size 35646804
chunk_records/r5_00034.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f0ef51cae88fbd44d5c6b816eb5ab60e153d720400613c7e25a32cf140fdb47
3
+ size 36360818
chunk_records/r6_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efb6cf88ebea8968b74e12e5a98c7f1e61b5b9c3f0f1438f61c8f42413f4c953
3
+ size 30443892
chunk_records/r6_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b72ba8b9dc6d25d82181ddffa8736d52a905fd5ece3c1cc9645944664b179b7
3
+ size 31598660
chunk_records/r6_00018.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e4355b498e2974704d1b2bf1ff9dfa6cacff0745b0086748d8af68232d2d5b5
3
+ size 33393893
chunk_records/r6_00022.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74f9e0eed9db1314881b27b14a7103ec3277d999ebc1f2e7e59a6059c4f87888
3
+ size 34391999
chunk_records/r6_00027.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd710bcf3d50945a8988bb1040b5d160f828c9f282708ceaf04313a155882dfe
3
+ size 35426727
chunk_records/r6_00032.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9909c1d8045e8f365e1a0266bb08381ceaa9135ed4c8331c1a953ba0c3e3c53d
3
+ size 35991158
chunk_records/r6_00033.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c78c415e897789c16c1f3829cb555d9ddd812ef9fcaa531e58e863aa27db4f1
3
+ size 36139827
chunk_records/r7_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc84d9bb3a1ab0fea2177b1fddffce9beb140ba4e5694e011fd375c0edf63c20
3
+ size 31484130
chunk_records/r7_00019.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad244270215334879298ab0bc05ea3e1e92b0a7b93c0a075edd191443d0d7c1e
3
+ size 33682194
chunk_records/r7_00020.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27673c21b586d79d5a3e6bfc080ff34f212d54d5e1c4e8c356052e4511a4a630
3
+ size 33863570
chunk_records/r7_00030.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ed872a29c4a0a0c7f388712a7dd1cc6ba0f1149ea23a7ead860344e6f3f4b53
3
+ size 35735900
dataset_manifest.json ADDED
@@ -0,0 +1,3308 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "file_count": 550,
3
+ "files": [
4
+ {
5
+ "category": "chunk_records",
6
+ "language": "html",
7
+ "relative_path": "chunk_records/r0_00000.parquet",
8
+ "rows": 5000
9
+ },
10
+ {
11
+ "category": "chunk_records",
12
+ "language": "html",
13
+ "relative_path": "chunk_records/r0_00001.parquet",
14
+ "rows": 5000
15
+ },
16
+ {
17
+ "category": "chunk_records",
18
+ "language": "html",
19
+ "relative_path": "chunk_records/r0_00002.parquet",
20
+ "rows": 5000
21
+ },
22
+ {
23
+ "category": "chunk_records",
24
+ "language": "html",
25
+ "relative_path": "chunk_records/r0_00003.parquet",
26
+ "rows": 5000
27
+ },
28
+ {
29
+ "category": "chunk_records",
30
+ "language": "html",
31
+ "relative_path": "chunk_records/r0_00004.parquet",
32
+ "rows": 5000
33
+ },
34
+ {
35
+ "category": "chunk_records",
36
+ "language": "html",
37
+ "relative_path": "chunk_records/r0_00005.parquet",
38
+ "rows": 5000
39
+ },
40
+ {
41
+ "category": "chunk_records",
42
+ "language": "html",
43
+ "relative_path": "chunk_records/r0_00006.parquet",
44
+ "rows": 5000
45
+ },
46
+ {
47
+ "category": "chunk_records",
48
+ "language": "html",
49
+ "relative_path": "chunk_records/r0_00007.parquet",
50
+ "rows": 5000
51
+ },
52
+ {
53
+ "category": "chunk_records",
54
+ "language": "html",
55
+ "relative_path": "chunk_records/r0_00008.parquet",
56
+ "rows": 5000
57
+ },
58
+ {
59
+ "category": "chunk_records",
60
+ "language": "html",
61
+ "relative_path": "chunk_records/r0_00009.parquet",
62
+ "rows": 5000
63
+ },
64
+ {
65
+ "category": "chunk_records",
66
+ "language": "html",
67
+ "relative_path": "chunk_records/r0_00010.parquet",
68
+ "rows": 5000
69
+ },
70
+ {
71
+ "category": "chunk_records",
72
+ "language": "html",
73
+ "relative_path": "chunk_records/r0_00011.parquet",
74
+ "rows": 5000
75
+ },
76
+ {
77
+ "category": "chunk_records",
78
+ "language": "html",
79
+ "relative_path": "chunk_records/r0_00012.parquet",
80
+ "rows": 5000
81
+ },
82
+ {
83
+ "category": "chunk_records",
84
+ "language": "html",
85
+ "relative_path": "chunk_records/r0_00013.parquet",
86
+ "rows": 5000
87
+ },
88
+ {
89
+ "category": "chunk_records",
90
+ "language": "html",
91
+ "relative_path": "chunk_records/r0_00014.parquet",
92
+ "rows": 5000
93
+ },
94
+ {
95
+ "category": "chunk_records",
96
+ "language": "html",
97
+ "relative_path": "chunk_records/r0_00015.parquet",
98
+ "rows": 5000
99
+ },
100
+ {
101
+ "category": "chunk_records",
102
+ "language": "html",
103
+ "relative_path": "chunk_records/r0_00016.parquet",
104
+ "rows": 5000
105
+ },
106
+ {
107
+ "category": "chunk_records",
108
+ "language": "html",
109
+ "relative_path": "chunk_records/r0_00017.parquet",
110
+ "rows": 5000
111
+ },
112
+ {
113
+ "category": "chunk_records",
114
+ "language": "html",
115
+ "relative_path": "chunk_records/r0_00018.parquet",
116
+ "rows": 5000
117
+ },
118
+ {
119
+ "category": "chunk_records",
120
+ "language": "html",
121
+ "relative_path": "chunk_records/r0_00019.parquet",
122
+ "rows": 5000
123
+ },
124
+ {
125
+ "category": "chunk_records",
126
+ "language": "html",
127
+ "relative_path": "chunk_records/r0_00020.parquet",
128
+ "rows": 5000
129
+ },
130
+ {
131
+ "category": "chunk_records",
132
+ "language": "html",
133
+ "relative_path": "chunk_records/r0_00021.parquet",
134
+ "rows": 5000
135
+ },
136
+ {
137
+ "category": "chunk_records",
138
+ "language": "html",
139
+ "relative_path": "chunk_records/r0_00022.parquet",
140
+ "rows": 5000
141
+ },
142
+ {
143
+ "category": "chunk_records",
144
+ "language": "html",
145
+ "relative_path": "chunk_records/r0_00023.parquet",
146
+ "rows": 5000
147
+ },
148
+ {
149
+ "category": "chunk_records",
150
+ "language": "html",
151
+ "relative_path": "chunk_records/r0_00024.parquet",
152
+ "rows": 5000
153
+ },
154
+ {
155
+ "category": "chunk_records",
156
+ "language": "html",
157
+ "relative_path": "chunk_records/r0_00025.parquet",
158
+ "rows": 5000
159
+ },
160
+ {
161
+ "category": "chunk_records",
162
+ "language": "html",
163
+ "relative_path": "chunk_records/r0_00026.parquet",
164
+ "rows": 5000
165
+ },
166
+ {
167
+ "category": "chunk_records",
168
+ "language": "html",
169
+ "relative_path": "chunk_records/r0_00027.parquet",
170
+ "rows": 5000
171
+ },
172
+ {
173
+ "category": "chunk_records",
174
+ "language": "html",
175
+ "relative_path": "chunk_records/r0_00028.parquet",
176
+ "rows": 5000
177
+ },
178
+ {
179
+ "category": "chunk_records",
180
+ "language": "html",
181
+ "relative_path": "chunk_records/r0_00029.parquet",
182
+ "rows": 5000
183
+ },
184
+ {
185
+ "category": "chunk_records",
186
+ "language": "html",
187
+ "relative_path": "chunk_records/r0_00030.parquet",
188
+ "rows": 5000
189
+ },
190
+ {
191
+ "category": "chunk_records",
192
+ "language": "html",
193
+ "relative_path": "chunk_records/r0_00031.parquet",
194
+ "rows": 5000
195
+ },
196
+ {
197
+ "category": "chunk_records",
198
+ "language": "html",
199
+ "relative_path": "chunk_records/r0_00032.parquet",
200
+ "rows": 5000
201
+ },
202
+ {
203
+ "category": "chunk_records",
204
+ "language": "html",
205
+ "relative_path": "chunk_records/r0_00033.parquet",
206
+ "rows": 5000
207
+ },
208
+ {
209
+ "category": "chunk_records",
210
+ "language": "html",
211
+ "relative_path": "chunk_records/r0_00034.parquet",
212
+ "rows": 5000
213
+ },
214
+ {
215
+ "category": "chunk_records",
216
+ "language": "html",
217
+ "relative_path": "chunk_records/r0_00035.parquet",
218
+ "rows": 5000
219
+ },
220
+ {
221
+ "category": "chunk_records",
222
+ "language": "html",
223
+ "relative_path": "chunk_records/r0_00036.parquet",
224
+ "rows": 5000
225
+ },
226
+ {
227
+ "category": "chunk_records",
228
+ "language": "html",
229
+ "relative_path": "chunk_records/r0_00037.parquet",
230
+ "rows": 5000
231
+ },
232
+ {
233
+ "category": "chunk_records",
234
+ "language": "html",
235
+ "relative_path": "chunk_records/r0_00038.parquet",
236
+ "rows": 4898
237
+ },
238
+ {
239
+ "category": "chunk_records",
240
+ "language": "html",
241
+ "relative_path": "chunk_records/r1_00000.parquet",
242
+ "rows": 5000
243
+ },
244
+ {
245
+ "category": "chunk_records",
246
+ "language": "html",
247
+ "relative_path": "chunk_records/r1_00001.parquet",
248
+ "rows": 5000
249
+ },
250
+ {
251
+ "category": "chunk_records",
252
+ "language": "html",
253
+ "relative_path": "chunk_records/r1_00002.parquet",
254
+ "rows": 5000
255
+ },
256
+ {
257
+ "category": "chunk_records",
258
+ "language": "html",
259
+ "relative_path": "chunk_records/r1_00003.parquet",
260
+ "rows": 5000
261
+ },
262
+ {
263
+ "category": "chunk_records",
264
+ "language": "html",
265
+ "relative_path": "chunk_records/r1_00004.parquet",
266
+ "rows": 5000
267
+ },
268
+ {
269
+ "category": "chunk_records",
270
+ "language": "html",
271
+ "relative_path": "chunk_records/r1_00005.parquet",
272
+ "rows": 5000
273
+ },
274
+ {
275
+ "category": "chunk_records",
276
+ "language": "html",
277
+ "relative_path": "chunk_records/r1_00006.parquet",
278
+ "rows": 5000
279
+ },
280
+ {
281
+ "category": "chunk_records",
282
+ "language": "html",
283
+ "relative_path": "chunk_records/r1_00007.parquet",
284
+ "rows": 5000
285
+ },
286
+ {
287
+ "category": "chunk_records",
288
+ "language": "html",
289
+ "relative_path": "chunk_records/r1_00008.parquet",
290
+ "rows": 5000
291
+ },
292
+ {
293
+ "category": "chunk_records",
294
+ "language": "html",
295
+ "relative_path": "chunk_records/r1_00009.parquet",
296
+ "rows": 5000
297
+ },
298
+ {
299
+ "category": "chunk_records",
300
+ "language": "html",
301
+ "relative_path": "chunk_records/r1_00010.parquet",
302
+ "rows": 5000
303
+ },
304
+ {
305
+ "category": "chunk_records",
306
+ "language": "html",
307
+ "relative_path": "chunk_records/r1_00011.parquet",
308
+ "rows": 5000
309
+ },
310
+ {
311
+ "category": "chunk_records",
312
+ "language": "html",
313
+ "relative_path": "chunk_records/r1_00012.parquet",
314
+ "rows": 5000
315
+ },
316
+ {
317
+ "category": "chunk_records",
318
+ "language": "html",
319
+ "relative_path": "chunk_records/r1_00013.parquet",
320
+ "rows": 5000
321
+ },
322
+ {
323
+ "category": "chunk_records",
324
+ "language": "html",
325
+ "relative_path": "chunk_records/r1_00014.parquet",
326
+ "rows": 5000
327
+ },
328
+ {
329
+ "category": "chunk_records",
330
+ "language": "html",
331
+ "relative_path": "chunk_records/r1_00015.parquet",
332
+ "rows": 5000
333
+ },
334
+ {
335
+ "category": "chunk_records",
336
+ "language": "html",
337
+ "relative_path": "chunk_records/r1_00016.parquet",
338
+ "rows": 5000
339
+ },
340
+ {
341
+ "category": "chunk_records",
342
+ "language": "html",
343
+ "relative_path": "chunk_records/r1_00017.parquet",
344
+ "rows": 5000
345
+ },
346
+ {
347
+ "category": "chunk_records",
348
+ "language": "html",
349
+ "relative_path": "chunk_records/r1_00018.parquet",
350
+ "rows": 5000
351
+ },
352
+ {
353
+ "category": "chunk_records",
354
+ "language": "html",
355
+ "relative_path": "chunk_records/r1_00019.parquet",
356
+ "rows": 5000
357
+ },
358
+ {
359
+ "category": "chunk_records",
360
+ "language": "html",
361
+ "relative_path": "chunk_records/r1_00020.parquet",
362
+ "rows": 5000
363
+ },
364
+ {
365
+ "category": "chunk_records",
366
+ "language": "html",
367
+ "relative_path": "chunk_records/r1_00021.parquet",
368
+ "rows": 5000
369
+ },
370
+ {
371
+ "category": "chunk_records",
372
+ "language": "html",
373
+ "relative_path": "chunk_records/r1_00022.parquet",
374
+ "rows": 5000
375
+ },
376
+ {
377
+ "category": "chunk_records",
378
+ "language": "html",
379
+ "relative_path": "chunk_records/r1_00023.parquet",
380
+ "rows": 5000
381
+ },
382
+ {
383
+ "category": "chunk_records",
384
+ "language": "html",
385
+ "relative_path": "chunk_records/r1_00024.parquet",
386
+ "rows": 5000
387
+ },
388
+ {
389
+ "category": "chunk_records",
390
+ "language": "html",
391
+ "relative_path": "chunk_records/r1_00025.parquet",
392
+ "rows": 5000
393
+ },
394
+ {
395
+ "category": "chunk_records",
396
+ "language": "html",
397
+ "relative_path": "chunk_records/r1_00026.parquet",
398
+ "rows": 5000
399
+ },
400
+ {
401
+ "category": "chunk_records",
402
+ "language": "html",
403
+ "relative_path": "chunk_records/r1_00027.parquet",
404
+ "rows": 5000
405
+ },
406
+ {
407
+ "category": "chunk_records",
408
+ "language": "html",
409
+ "relative_path": "chunk_records/r1_00028.parquet",
410
+ "rows": 5000
411
+ },
412
+ {
413
+ "category": "chunk_records",
414
+ "language": "html",
415
+ "relative_path": "chunk_records/r1_00029.parquet",
416
+ "rows": 5000
417
+ },
418
+ {
419
+ "category": "chunk_records",
420
+ "language": "html",
421
+ "relative_path": "chunk_records/r1_00030.parquet",
422
+ "rows": 5000
423
+ },
424
+ {
425
+ "category": "chunk_records",
426
+ "language": "html",
427
+ "relative_path": "chunk_records/r1_00031.parquet",
428
+ "rows": 5000
429
+ },
430
+ {
431
+ "category": "chunk_records",
432
+ "language": "html",
433
+ "relative_path": "chunk_records/r1_00032.parquet",
434
+ "rows": 5000
435
+ },
436
+ {
437
+ "category": "chunk_records",
438
+ "language": "html",
439
+ "relative_path": "chunk_records/r1_00033.parquet",
440
+ "rows": 5000
441
+ },
442
+ {
443
+ "category": "chunk_records",
444
+ "language": "html",
445
+ "relative_path": "chunk_records/r1_00034.parquet",
446
+ "rows": 5000
447
+ },
448
+ {
449
+ "category": "chunk_records",
450
+ "language": "html",
451
+ "relative_path": "chunk_records/r1_00035.parquet",
452
+ "rows": 5000
453
+ },
454
+ {
455
+ "category": "chunk_records",
456
+ "language": "html",
457
+ "relative_path": "chunk_records/r1_00036.parquet",
458
+ "rows": 5000
459
+ },
460
+ {
461
+ "category": "chunk_records",
462
+ "language": "html",
463
+ "relative_path": "chunk_records/r1_00037.parquet",
464
+ "rows": 5000
465
+ },
466
+ {
467
+ "category": "chunk_records",
468
+ "language": "html",
469
+ "relative_path": "chunk_records/r1_00038.parquet",
470
+ "rows": 4898
471
+ },
472
+ {
473
+ "category": "chunk_records",
474
+ "language": "html",
475
+ "relative_path": "chunk_records/r2_00000.parquet",
476
+ "rows": 5000
477
+ },
478
+ {
479
+ "category": "chunk_records",
480
+ "language": "html",
481
+ "relative_path": "chunk_records/r2_00001.parquet",
482
+ "rows": 5000
483
+ },
484
+ {
485
+ "category": "chunk_records",
486
+ "language": "html",
487
+ "relative_path": "chunk_records/r2_00002.parquet",
488
+ "rows": 5000
489
+ },
490
+ {
491
+ "category": "chunk_records",
492
+ "language": "html",
493
+ "relative_path": "chunk_records/r2_00003.parquet",
494
+ "rows": 5000
495
+ },
496
+ {
497
+ "category": "chunk_records",
498
+ "language": "html",
499
+ "relative_path": "chunk_records/r2_00004.parquet",
500
+ "rows": 5000
501
+ },
502
+ {
503
+ "category": "chunk_records",
504
+ "language": "html",
505
+ "relative_path": "chunk_records/r2_00005.parquet",
506
+ "rows": 5000
507
+ },
508
+ {
509
+ "category": "chunk_records",
510
+ "language": "html",
511
+ "relative_path": "chunk_records/r2_00006.parquet",
512
+ "rows": 5000
513
+ },
514
+ {
515
+ "category": "chunk_records",
516
+ "language": "html",
517
+ "relative_path": "chunk_records/r2_00007.parquet",
518
+ "rows": 5000
519
+ },
520
+ {
521
+ "category": "chunk_records",
522
+ "language": "html",
523
+ "relative_path": "chunk_records/r2_00008.parquet",
524
+ "rows": 5000
525
+ },
526
+ {
527
+ "category": "chunk_records",
528
+ "language": "html",
529
+ "relative_path": "chunk_records/r2_00009.parquet",
530
+ "rows": 5000
531
+ },
532
+ {
533
+ "category": "chunk_records",
534
+ "language": "html",
535
+ "relative_path": "chunk_records/r2_00010.parquet",
536
+ "rows": 5000
537
+ },
538
+ {
539
+ "category": "chunk_records",
540
+ "language": "html",
541
+ "relative_path": "chunk_records/r2_00011.parquet",
542
+ "rows": 5000
543
+ },
544
+ {
545
+ "category": "chunk_records",
546
+ "language": "html",
547
+ "relative_path": "chunk_records/r2_00012.parquet",
548
+ "rows": 5000
549
+ },
550
+ {
551
+ "category": "chunk_records",
552
+ "language": "html",
553
+ "relative_path": "chunk_records/r2_00013.parquet",
554
+ "rows": 5000
555
+ },
556
+ {
557
+ "category": "chunk_records",
558
+ "language": "html",
559
+ "relative_path": "chunk_records/r2_00014.parquet",
560
+ "rows": 5000
561
+ },
562
+ {
563
+ "category": "chunk_records",
564
+ "language": "html",
565
+ "relative_path": "chunk_records/r2_00015.parquet",
566
+ "rows": 5000
567
+ },
568
+ {
569
+ "category": "chunk_records",
570
+ "language": "html",
571
+ "relative_path": "chunk_records/r2_00016.parquet",
572
+ "rows": 5000
573
+ },
574
+ {
575
+ "category": "chunk_records",
576
+ "language": "html",
577
+ "relative_path": "chunk_records/r2_00017.parquet",
578
+ "rows": 5000
579
+ },
580
+ {
581
+ "category": "chunk_records",
582
+ "language": "html",
583
+ "relative_path": "chunk_records/r2_00018.parquet",
584
+ "rows": 5000
585
+ },
586
+ {
587
+ "category": "chunk_records",
588
+ "language": "html",
589
+ "relative_path": "chunk_records/r2_00019.parquet",
590
+ "rows": 5000
591
+ },
592
+ {
593
+ "category": "chunk_records",
594
+ "language": "html",
595
+ "relative_path": "chunk_records/r2_00020.parquet",
596
+ "rows": 5000
597
+ },
598
+ {
599
+ "category": "chunk_records",
600
+ "language": "html",
601
+ "relative_path": "chunk_records/r2_00021.parquet",
602
+ "rows": 5000
603
+ },
604
+ {
605
+ "category": "chunk_records",
606
+ "language": "html",
607
+ "relative_path": "chunk_records/r2_00022.parquet",
608
+ "rows": 5000
609
+ },
610
+ {
611
+ "category": "chunk_records",
612
+ "language": "html",
613
+ "relative_path": "chunk_records/r2_00023.parquet",
614
+ "rows": 5000
615
+ },
616
+ {
617
+ "category": "chunk_records",
618
+ "language": "html",
619
+ "relative_path": "chunk_records/r2_00024.parquet",
620
+ "rows": 5000
621
+ },
622
+ {
623
+ "category": "chunk_records",
624
+ "language": "html",
625
+ "relative_path": "chunk_records/r2_00025.parquet",
626
+ "rows": 5000
627
+ },
628
+ {
629
+ "category": "chunk_records",
630
+ "language": "html",
631
+ "relative_path": "chunk_records/r2_00026.parquet",
632
+ "rows": 5000
633
+ },
634
+ {
635
+ "category": "chunk_records",
636
+ "language": "html",
637
+ "relative_path": "chunk_records/r2_00027.parquet",
638
+ "rows": 5000
639
+ },
640
+ {
641
+ "category": "chunk_records",
642
+ "language": "html",
643
+ "relative_path": "chunk_records/r2_00028.parquet",
644
+ "rows": 5000
645
+ },
646
+ {
647
+ "category": "chunk_records",
648
+ "language": "html",
649
+ "relative_path": "chunk_records/r2_00029.parquet",
650
+ "rows": 5000
651
+ },
652
+ {
653
+ "category": "chunk_records",
654
+ "language": "html",
655
+ "relative_path": "chunk_records/r2_00030.parquet",
656
+ "rows": 5000
657
+ },
658
+ {
659
+ "category": "chunk_records",
660
+ "language": "html",
661
+ "relative_path": "chunk_records/r2_00031.parquet",
662
+ "rows": 5000
663
+ },
664
+ {
665
+ "category": "chunk_records",
666
+ "language": "html",
667
+ "relative_path": "chunk_records/r2_00032.parquet",
668
+ "rows": 5000
669
+ },
670
+ {
671
+ "category": "chunk_records",
672
+ "language": "html",
673
+ "relative_path": "chunk_records/r2_00033.parquet",
674
+ "rows": 5000
675
+ },
676
+ {
677
+ "category": "chunk_records",
678
+ "language": "html",
679
+ "relative_path": "chunk_records/r2_00034.parquet",
680
+ "rows": 5000
681
+ },
682
+ {
683
+ "category": "chunk_records",
684
+ "language": "html",
685
+ "relative_path": "chunk_records/r2_00035.parquet",
686
+ "rows": 5000
687
+ },
688
+ {
689
+ "category": "chunk_records",
690
+ "language": "html",
691
+ "relative_path": "chunk_records/r2_00036.parquet",
692
+ "rows": 5000
693
+ },
694
+ {
695
+ "category": "chunk_records",
696
+ "language": "html",
697
+ "relative_path": "chunk_records/r2_00037.parquet",
698
+ "rows": 5000
699
+ },
700
+ {
701
+ "category": "chunk_records",
702
+ "language": "html",
703
+ "relative_path": "chunk_records/r2_00038.parquet",
704
+ "rows": 4897
705
+ },
706
+ {
707
+ "category": "chunk_records",
708
+ "language": "html",
709
+ "relative_path": "chunk_records/r3_00000.parquet",
710
+ "rows": 5000
711
+ },
712
+ {
713
+ "category": "chunk_records",
714
+ "language": "html",
715
+ "relative_path": "chunk_records/r3_00001.parquet",
716
+ "rows": 5000
717
+ },
718
+ {
719
+ "category": "chunk_records",
720
+ "language": "html",
721
+ "relative_path": "chunk_records/r3_00002.parquet",
722
+ "rows": 5000
723
+ },
724
+ {
725
+ "category": "chunk_records",
726
+ "language": "html",
727
+ "relative_path": "chunk_records/r3_00003.parquet",
728
+ "rows": 5000
729
+ },
730
+ {
731
+ "category": "chunk_records",
732
+ "language": "html",
733
+ "relative_path": "chunk_records/r3_00004.parquet",
734
+ "rows": 5000
735
+ },
736
+ {
737
+ "category": "chunk_records",
738
+ "language": "html",
739
+ "relative_path": "chunk_records/r3_00005.parquet",
740
+ "rows": 5000
741
+ },
742
+ {
743
+ "category": "chunk_records",
744
+ "language": "html",
745
+ "relative_path": "chunk_records/r3_00006.parquet",
746
+ "rows": 5000
747
+ },
748
+ {
749
+ "category": "chunk_records",
750
+ "language": "html",
751
+ "relative_path": "chunk_records/r3_00007.parquet",
752
+ "rows": 5000
753
+ },
754
+ {
755
+ "category": "chunk_records",
756
+ "language": "html",
757
+ "relative_path": "chunk_records/r3_00008.parquet",
758
+ "rows": 5000
759
+ },
760
+ {
761
+ "category": "chunk_records",
762
+ "language": "html",
763
+ "relative_path": "chunk_records/r3_00009.parquet",
764
+ "rows": 5000
765
+ },
766
+ {
767
+ "category": "chunk_records",
768
+ "language": "html",
769
+ "relative_path": "chunk_records/r3_00010.parquet",
770
+ "rows": 5000
771
+ },
772
+ {
773
+ "category": "chunk_records",
774
+ "language": "html",
775
+ "relative_path": "chunk_records/r3_00011.parquet",
776
+ "rows": 5000
777
+ },
778
+ {
779
+ "category": "chunk_records",
780
+ "language": "html",
781
+ "relative_path": "chunk_records/r3_00012.parquet",
782
+ "rows": 5000
783
+ },
784
+ {
785
+ "category": "chunk_records",
786
+ "language": "html",
787
+ "relative_path": "chunk_records/r3_00013.parquet",
788
+ "rows": 5000
789
+ },
790
+ {
791
+ "category": "chunk_records",
792
+ "language": "html",
793
+ "relative_path": "chunk_records/r3_00014.parquet",
794
+ "rows": 5000
795
+ },
796
+ {
797
+ "category": "chunk_records",
798
+ "language": "html",
799
+ "relative_path": "chunk_records/r3_00015.parquet",
800
+ "rows": 5000
801
+ },
802
+ {
803
+ "category": "chunk_records",
804
+ "language": "html",
805
+ "relative_path": "chunk_records/r3_00016.parquet",
806
+ "rows": 5000
807
+ },
808
+ {
809
+ "category": "chunk_records",
810
+ "language": "html",
811
+ "relative_path": "chunk_records/r3_00017.parquet",
812
+ "rows": 5000
813
+ },
814
+ {
815
+ "category": "chunk_records",
816
+ "language": "html",
817
+ "relative_path": "chunk_records/r3_00018.parquet",
818
+ "rows": 5000
819
+ },
820
+ {
821
+ "category": "chunk_records",
822
+ "language": "html",
823
+ "relative_path": "chunk_records/r3_00019.parquet",
824
+ "rows": 5000
825
+ },
826
+ {
827
+ "category": "chunk_records",
828
+ "language": "html",
829
+ "relative_path": "chunk_records/r3_00020.parquet",
830
+ "rows": 5000
831
+ },
832
+ {
833
+ "category": "chunk_records",
834
+ "language": "html",
835
+ "relative_path": "chunk_records/r3_00021.parquet",
836
+ "rows": 5000
837
+ },
838
+ {
839
+ "category": "chunk_records",
840
+ "language": "html",
841
+ "relative_path": "chunk_records/r3_00022.parquet",
842
+ "rows": 5000
843
+ },
844
+ {
845
+ "category": "chunk_records",
846
+ "language": "html",
847
+ "relative_path": "chunk_records/r3_00023.parquet",
848
+ "rows": 5000
849
+ },
850
+ {
851
+ "category": "chunk_records",
852
+ "language": "html",
853
+ "relative_path": "chunk_records/r3_00024.parquet",
854
+ "rows": 5000
855
+ },
856
+ {
857
+ "category": "chunk_records",
858
+ "language": "html",
859
+ "relative_path": "chunk_records/r3_00025.parquet",
860
+ "rows": 5000
861
+ },
862
+ {
863
+ "category": "chunk_records",
864
+ "language": "html",
865
+ "relative_path": "chunk_records/r3_00026.parquet",
866
+ "rows": 5000
867
+ },
868
+ {
869
+ "category": "chunk_records",
870
+ "language": "html",
871
+ "relative_path": "chunk_records/r3_00027.parquet",
872
+ "rows": 5000
873
+ },
874
+ {
875
+ "category": "chunk_records",
876
+ "language": "html",
877
+ "relative_path": "chunk_records/r3_00028.parquet",
878
+ "rows": 5000
879
+ },
880
+ {
881
+ "category": "chunk_records",
882
+ "language": "html",
883
+ "relative_path": "chunk_records/r3_00029.parquet",
884
+ "rows": 5000
885
+ },
886
+ {
887
+ "category": "chunk_records",
888
+ "language": "html",
889
+ "relative_path": "chunk_records/r3_00030.parquet",
890
+ "rows": 5000
891
+ },
892
+ {
893
+ "category": "chunk_records",
894
+ "language": "html",
895
+ "relative_path": "chunk_records/r3_00031.parquet",
896
+ "rows": 5000
897
+ },
898
+ {
899
+ "category": "chunk_records",
900
+ "language": "html",
901
+ "relative_path": "chunk_records/r3_00032.parquet",
902
+ "rows": 5000
903
+ },
904
+ {
905
+ "category": "chunk_records",
906
+ "language": "html",
907
+ "relative_path": "chunk_records/r3_00033.parquet",
908
+ "rows": 5000
909
+ },
910
+ {
911
+ "category": "chunk_records",
912
+ "language": "html",
913
+ "relative_path": "chunk_records/r3_00034.parquet",
914
+ "rows": 5000
915
+ },
916
+ {
917
+ "category": "chunk_records",
918
+ "language": "html",
919
+ "relative_path": "chunk_records/r3_00035.parquet",
920
+ "rows": 5000
921
+ },
922
+ {
923
+ "category": "chunk_records",
924
+ "language": "html",
925
+ "relative_path": "chunk_records/r3_00036.parquet",
926
+ "rows": 5000
927
+ },
928
+ {
929
+ "category": "chunk_records",
930
+ "language": "html",
931
+ "relative_path": "chunk_records/r3_00037.parquet",
932
+ "rows": 5000
933
+ },
934
+ {
935
+ "category": "chunk_records",
936
+ "language": "html",
937
+ "relative_path": "chunk_records/r3_00038.parquet",
938
+ "rows": 4897
939
+ },
940
+ {
941
+ "category": "chunk_records",
942
+ "language": "html",
943
+ "relative_path": "chunk_records/r4_00000.parquet",
944
+ "rows": 5000
945
+ },
946
+ {
947
+ "category": "chunk_records",
948
+ "language": "html",
949
+ "relative_path": "chunk_records/r4_00001.parquet",
950
+ "rows": 5000
951
+ },
952
+ {
953
+ "category": "chunk_records",
954
+ "language": "html",
955
+ "relative_path": "chunk_records/r4_00002.parquet",
956
+ "rows": 5000
957
+ },
958
+ {
959
+ "category": "chunk_records",
960
+ "language": "html",
961
+ "relative_path": "chunk_records/r4_00003.parquet",
962
+ "rows": 5000
963
+ },
964
+ {
965
+ "category": "chunk_records",
966
+ "language": "html",
967
+ "relative_path": "chunk_records/r4_00004.parquet",
968
+ "rows": 5000
969
+ },
970
+ {
971
+ "category": "chunk_records",
972
+ "language": "html",
973
+ "relative_path": "chunk_records/r4_00005.parquet",
974
+ "rows": 5000
975
+ },
976
+ {
977
+ "category": "chunk_records",
978
+ "language": "html",
979
+ "relative_path": "chunk_records/r4_00006.parquet",
980
+ "rows": 5000
981
+ },
982
+ {
983
+ "category": "chunk_records",
984
+ "language": "html",
985
+ "relative_path": "chunk_records/r4_00007.parquet",
986
+ "rows": 5000
987
+ },
988
+ {
989
+ "category": "chunk_records",
990
+ "language": "html",
991
+ "relative_path": "chunk_records/r4_00008.parquet",
992
+ "rows": 5000
993
+ },
994
+ {
995
+ "category": "chunk_records",
996
+ "language": "html",
997
+ "relative_path": "chunk_records/r4_00009.parquet",
998
+ "rows": 5000
999
+ },
1000
+ {
1001
+ "category": "chunk_records",
1002
+ "language": "html",
1003
+ "relative_path": "chunk_records/r4_00010.parquet",
1004
+ "rows": 5000
1005
+ },
1006
+ {
1007
+ "category": "chunk_records",
1008
+ "language": "html",
1009
+ "relative_path": "chunk_records/r4_00011.parquet",
1010
+ "rows": 5000
1011
+ },
1012
+ {
1013
+ "category": "chunk_records",
1014
+ "language": "html",
1015
+ "relative_path": "chunk_records/r4_00012.parquet",
1016
+ "rows": 5000
1017
+ },
1018
+ {
1019
+ "category": "chunk_records",
1020
+ "language": "html",
1021
+ "relative_path": "chunk_records/r4_00013.parquet",
1022
+ "rows": 5000
1023
+ },
1024
+ {
1025
+ "category": "chunk_records",
1026
+ "language": "html",
1027
+ "relative_path": "chunk_records/r4_00014.parquet",
1028
+ "rows": 5000
1029
+ },
1030
+ {
1031
+ "category": "chunk_records",
1032
+ "language": "html",
1033
+ "relative_path": "chunk_records/r4_00015.parquet",
1034
+ "rows": 5000
1035
+ },
1036
+ {
1037
+ "category": "chunk_records",
1038
+ "language": "html",
1039
+ "relative_path": "chunk_records/r4_00016.parquet",
1040
+ "rows": 5000
1041
+ },
1042
+ {
1043
+ "category": "chunk_records",
1044
+ "language": "html",
1045
+ "relative_path": "chunk_records/r4_00017.parquet",
1046
+ "rows": 5000
1047
+ },
1048
+ {
1049
+ "category": "chunk_records",
1050
+ "language": "html",
1051
+ "relative_path": "chunk_records/r4_00018.parquet",
1052
+ "rows": 5000
1053
+ },
1054
+ {
1055
+ "category": "chunk_records",
1056
+ "language": "html",
1057
+ "relative_path": "chunk_records/r4_00019.parquet",
1058
+ "rows": 5000
1059
+ },
1060
+ {
1061
+ "category": "chunk_records",
1062
+ "language": "html",
1063
+ "relative_path": "chunk_records/r4_00020.parquet",
1064
+ "rows": 5000
1065
+ },
1066
+ {
1067
+ "category": "chunk_records",
1068
+ "language": "html",
1069
+ "relative_path": "chunk_records/r4_00021.parquet",
1070
+ "rows": 5000
1071
+ },
1072
+ {
1073
+ "category": "chunk_records",
1074
+ "language": "html",
1075
+ "relative_path": "chunk_records/r4_00022.parquet",
1076
+ "rows": 5000
1077
+ },
1078
+ {
1079
+ "category": "chunk_records",
1080
+ "language": "html",
1081
+ "relative_path": "chunk_records/r4_00023.parquet",
1082
+ "rows": 5000
1083
+ },
1084
+ {
1085
+ "category": "chunk_records",
1086
+ "language": "html",
1087
+ "relative_path": "chunk_records/r4_00024.parquet",
1088
+ "rows": 5000
1089
+ },
1090
+ {
1091
+ "category": "chunk_records",
1092
+ "language": "html",
1093
+ "relative_path": "chunk_records/r4_00025.parquet",
1094
+ "rows": 5000
1095
+ },
1096
+ {
1097
+ "category": "chunk_records",
1098
+ "language": "html",
1099
+ "relative_path": "chunk_records/r4_00026.parquet",
1100
+ "rows": 5000
1101
+ },
1102
+ {
1103
+ "category": "chunk_records",
1104
+ "language": "html",
1105
+ "relative_path": "chunk_records/r4_00027.parquet",
1106
+ "rows": 5000
1107
+ },
1108
+ {
1109
+ "category": "chunk_records",
1110
+ "language": "html",
1111
+ "relative_path": "chunk_records/r4_00028.parquet",
1112
+ "rows": 5000
1113
+ },
1114
+ {
1115
+ "category": "chunk_records",
1116
+ "language": "html",
1117
+ "relative_path": "chunk_records/r4_00029.parquet",
1118
+ "rows": 5000
1119
+ },
1120
+ {
1121
+ "category": "chunk_records",
1122
+ "language": "html",
1123
+ "relative_path": "chunk_records/r4_00030.parquet",
1124
+ "rows": 5000
1125
+ },
1126
+ {
1127
+ "category": "chunk_records",
1128
+ "language": "html",
1129
+ "relative_path": "chunk_records/r4_00031.parquet",
1130
+ "rows": 5000
1131
+ },
1132
+ {
1133
+ "category": "chunk_records",
1134
+ "language": "html",
1135
+ "relative_path": "chunk_records/r4_00032.parquet",
1136
+ "rows": 5000
1137
+ },
1138
+ {
1139
+ "category": "chunk_records",
1140
+ "language": "html",
1141
+ "relative_path": "chunk_records/r4_00033.parquet",
1142
+ "rows": 5000
1143
+ },
1144
+ {
1145
+ "category": "chunk_records",
1146
+ "language": "html",
1147
+ "relative_path": "chunk_records/r4_00034.parquet",
1148
+ "rows": 5000
1149
+ },
1150
+ {
1151
+ "category": "chunk_records",
1152
+ "language": "html",
1153
+ "relative_path": "chunk_records/r4_00035.parquet",
1154
+ "rows": 5000
1155
+ },
1156
+ {
1157
+ "category": "chunk_records",
1158
+ "language": "html",
1159
+ "relative_path": "chunk_records/r4_00036.parquet",
1160
+ "rows": 5000
1161
+ },
1162
+ {
1163
+ "category": "chunk_records",
1164
+ "language": "html",
1165
+ "relative_path": "chunk_records/r4_00037.parquet",
1166
+ "rows": 5000
1167
+ },
1168
+ {
1169
+ "category": "chunk_records",
1170
+ "language": "html",
1171
+ "relative_path": "chunk_records/r4_00038.parquet",
1172
+ "rows": 4897
1173
+ },
1174
+ {
1175
+ "category": "chunk_records",
1176
+ "language": "html",
1177
+ "relative_path": "chunk_records/r5_00000.parquet",
1178
+ "rows": 5000
1179
+ },
1180
+ {
1181
+ "category": "chunk_records",
1182
+ "language": "html",
1183
+ "relative_path": "chunk_records/r5_00001.parquet",
1184
+ "rows": 5000
1185
+ },
1186
+ {
1187
+ "category": "chunk_records",
1188
+ "language": "html",
1189
+ "relative_path": "chunk_records/r5_00002.parquet",
1190
+ "rows": 5000
1191
+ },
1192
+ {
1193
+ "category": "chunk_records",
1194
+ "language": "html",
1195
+ "relative_path": "chunk_records/r5_00003.parquet",
1196
+ "rows": 5000
1197
+ },
1198
+ {
1199
+ "category": "chunk_records",
1200
+ "language": "html",
1201
+ "relative_path": "chunk_records/r5_00004.parquet",
1202
+ "rows": 5000
1203
+ },
1204
+ {
1205
+ "category": "chunk_records",
1206
+ "language": "html",
1207
+ "relative_path": "chunk_records/r5_00005.parquet",
1208
+ "rows": 5000
1209
+ },
1210
+ {
1211
+ "category": "chunk_records",
1212
+ "language": "html",
1213
+ "relative_path": "chunk_records/r5_00006.parquet",
1214
+ "rows": 5000
1215
+ },
1216
+ {
1217
+ "category": "chunk_records",
1218
+ "language": "html",
1219
+ "relative_path": "chunk_records/r5_00007.parquet",
1220
+ "rows": 5000
1221
+ },
1222
+ {
1223
+ "category": "chunk_records",
1224
+ "language": "html",
1225
+ "relative_path": "chunk_records/r5_00008.parquet",
1226
+ "rows": 5000
1227
+ },
1228
+ {
1229
+ "category": "chunk_records",
1230
+ "language": "html",
1231
+ "relative_path": "chunk_records/r5_00009.parquet",
1232
+ "rows": 5000
1233
+ },
1234
+ {
1235
+ "category": "chunk_records",
1236
+ "language": "html",
1237
+ "relative_path": "chunk_records/r5_00010.parquet",
1238
+ "rows": 5000
1239
+ },
1240
+ {
1241
+ "category": "chunk_records",
1242
+ "language": "html",
1243
+ "relative_path": "chunk_records/r5_00011.parquet",
1244
+ "rows": 5000
1245
+ },
1246
+ {
1247
+ "category": "chunk_records",
1248
+ "language": "html",
1249
+ "relative_path": "chunk_records/r5_00012.parquet",
1250
+ "rows": 5000
1251
+ },
1252
+ {
1253
+ "category": "chunk_records",
1254
+ "language": "html",
1255
+ "relative_path": "chunk_records/r5_00013.parquet",
1256
+ "rows": 5000
1257
+ },
1258
+ {
1259
+ "category": "chunk_records",
1260
+ "language": "html",
1261
+ "relative_path": "chunk_records/r5_00014.parquet",
1262
+ "rows": 5000
1263
+ },
1264
+ {
1265
+ "category": "chunk_records",
1266
+ "language": "html",
1267
+ "relative_path": "chunk_records/r5_00015.parquet",
1268
+ "rows": 5000
1269
+ },
1270
+ {
1271
+ "category": "chunk_records",
1272
+ "language": "html",
1273
+ "relative_path": "chunk_records/r5_00016.parquet",
1274
+ "rows": 5000
1275
+ },
1276
+ {
1277
+ "category": "chunk_records",
1278
+ "language": "html",
1279
+ "relative_path": "chunk_records/r5_00017.parquet",
1280
+ "rows": 5000
1281
+ },
1282
+ {
1283
+ "category": "chunk_records",
1284
+ "language": "html",
1285
+ "relative_path": "chunk_records/r5_00018.parquet",
1286
+ "rows": 5000
1287
+ },
1288
+ {
1289
+ "category": "chunk_records",
1290
+ "language": "html",
1291
+ "relative_path": "chunk_records/r5_00019.parquet",
1292
+ "rows": 5000
1293
+ },
1294
+ {
1295
+ "category": "chunk_records",
1296
+ "language": "html",
1297
+ "relative_path": "chunk_records/r5_00020.parquet",
1298
+ "rows": 5000
1299
+ },
1300
+ {
1301
+ "category": "chunk_records",
1302
+ "language": "html",
1303
+ "relative_path": "chunk_records/r5_00021.parquet",
1304
+ "rows": 5000
1305
+ },
1306
+ {
1307
+ "category": "chunk_records",
1308
+ "language": "html",
1309
+ "relative_path": "chunk_records/r5_00022.parquet",
1310
+ "rows": 5000
1311
+ },
1312
+ {
1313
+ "category": "chunk_records",
1314
+ "language": "html",
1315
+ "relative_path": "chunk_records/r5_00023.parquet",
1316
+ "rows": 5000
1317
+ },
1318
+ {
1319
+ "category": "chunk_records",
1320
+ "language": "html",
1321
+ "relative_path": "chunk_records/r5_00024.parquet",
1322
+ "rows": 5000
1323
+ },
1324
+ {
1325
+ "category": "chunk_records",
1326
+ "language": "html",
1327
+ "relative_path": "chunk_records/r5_00025.parquet",
1328
+ "rows": 5000
1329
+ },
1330
+ {
1331
+ "category": "chunk_records",
1332
+ "language": "html",
1333
+ "relative_path": "chunk_records/r5_00026.parquet",
1334
+ "rows": 5000
1335
+ },
1336
+ {
1337
+ "category": "chunk_records",
1338
+ "language": "html",
1339
+ "relative_path": "chunk_records/r5_00027.parquet",
1340
+ "rows": 5000
1341
+ },
1342
+ {
1343
+ "category": "chunk_records",
1344
+ "language": "html",
1345
+ "relative_path": "chunk_records/r5_00028.parquet",
1346
+ "rows": 5000
1347
+ },
1348
+ {
1349
+ "category": "chunk_records",
1350
+ "language": "html",
1351
+ "relative_path": "chunk_records/r5_00029.parquet",
1352
+ "rows": 5000
1353
+ },
1354
+ {
1355
+ "category": "chunk_records",
1356
+ "language": "html",
1357
+ "relative_path": "chunk_records/r5_00030.parquet",
1358
+ "rows": 5000
1359
+ },
1360
+ {
1361
+ "category": "chunk_records",
1362
+ "language": "html",
1363
+ "relative_path": "chunk_records/r5_00031.parquet",
1364
+ "rows": 5000
1365
+ },
1366
+ {
1367
+ "category": "chunk_records",
1368
+ "language": "html",
1369
+ "relative_path": "chunk_records/r5_00032.parquet",
1370
+ "rows": 5000
1371
+ },
1372
+ {
1373
+ "category": "chunk_records",
1374
+ "language": "html",
1375
+ "relative_path": "chunk_records/r5_00033.parquet",
1376
+ "rows": 5000
1377
+ },
1378
+ {
1379
+ "category": "chunk_records",
1380
+ "language": "html",
1381
+ "relative_path": "chunk_records/r5_00034.parquet",
1382
+ "rows": 5000
1383
+ },
1384
+ {
1385
+ "category": "chunk_records",
1386
+ "language": "html",
1387
+ "relative_path": "chunk_records/r5_00035.parquet",
1388
+ "rows": 5000
1389
+ },
1390
+ {
1391
+ "category": "chunk_records",
1392
+ "language": "html",
1393
+ "relative_path": "chunk_records/r5_00036.parquet",
1394
+ "rows": 5000
1395
+ },
1396
+ {
1397
+ "category": "chunk_records",
1398
+ "language": "html",
1399
+ "relative_path": "chunk_records/r5_00037.parquet",
1400
+ "rows": 5000
1401
+ },
1402
+ {
1403
+ "category": "chunk_records",
1404
+ "language": "html",
1405
+ "relative_path": "chunk_records/r5_00038.parquet",
1406
+ "rows": 4897
1407
+ },
1408
+ {
1409
+ "category": "chunk_records",
1410
+ "language": "html",
1411
+ "relative_path": "chunk_records/r6_00000.parquet",
1412
+ "rows": 5000
1413
+ },
1414
+ {
1415
+ "category": "chunk_records",
1416
+ "language": "html",
1417
+ "relative_path": "chunk_records/r6_00001.parquet",
1418
+ "rows": 5000
1419
+ },
1420
+ {
1421
+ "category": "chunk_records",
1422
+ "language": "html",
1423
+ "relative_path": "chunk_records/r6_00002.parquet",
1424
+ "rows": 5000
1425
+ },
1426
+ {
1427
+ "category": "chunk_records",
1428
+ "language": "html",
1429
+ "relative_path": "chunk_records/r6_00003.parquet",
1430
+ "rows": 5000
1431
+ },
1432
+ {
1433
+ "category": "chunk_records",
1434
+ "language": "html",
1435
+ "relative_path": "chunk_records/r6_00004.parquet",
1436
+ "rows": 5000
1437
+ },
1438
+ {
1439
+ "category": "chunk_records",
1440
+ "language": "html",
1441
+ "relative_path": "chunk_records/r6_00005.parquet",
1442
+ "rows": 5000
1443
+ },
1444
+ {
1445
+ "category": "chunk_records",
1446
+ "language": "html",
1447
+ "relative_path": "chunk_records/r6_00006.parquet",
1448
+ "rows": 5000
1449
+ },
1450
+ {
1451
+ "category": "chunk_records",
1452
+ "language": "html",
1453
+ "relative_path": "chunk_records/r6_00007.parquet",
1454
+ "rows": 5000
1455
+ },
1456
+ {
1457
+ "category": "chunk_records",
1458
+ "language": "html",
1459
+ "relative_path": "chunk_records/r6_00008.parquet",
1460
+ "rows": 5000
1461
+ },
1462
+ {
1463
+ "category": "chunk_records",
1464
+ "language": "html",
1465
+ "relative_path": "chunk_records/r6_00009.parquet",
1466
+ "rows": 5000
1467
+ },
1468
+ {
1469
+ "category": "chunk_records",
1470
+ "language": "html",
1471
+ "relative_path": "chunk_records/r6_00010.parquet",
1472
+ "rows": 5000
1473
+ },
1474
+ {
1475
+ "category": "chunk_records",
1476
+ "language": "html",
1477
+ "relative_path": "chunk_records/r6_00011.parquet",
1478
+ "rows": 5000
1479
+ },
1480
+ {
1481
+ "category": "chunk_records",
1482
+ "language": "html",
1483
+ "relative_path": "chunk_records/r6_00012.parquet",
1484
+ "rows": 5000
1485
+ },
1486
+ {
1487
+ "category": "chunk_records",
1488
+ "language": "html",
1489
+ "relative_path": "chunk_records/r6_00013.parquet",
1490
+ "rows": 5000
1491
+ },
1492
+ {
1493
+ "category": "chunk_records",
1494
+ "language": "html",
1495
+ "relative_path": "chunk_records/r6_00014.parquet",
1496
+ "rows": 5000
1497
+ },
1498
+ {
1499
+ "category": "chunk_records",
1500
+ "language": "html",
1501
+ "relative_path": "chunk_records/r6_00015.parquet",
1502
+ "rows": 5000
1503
+ },
1504
+ {
1505
+ "category": "chunk_records",
1506
+ "language": "html",
1507
+ "relative_path": "chunk_records/r6_00016.parquet",
1508
+ "rows": 5000
1509
+ },
1510
+ {
1511
+ "category": "chunk_records",
1512
+ "language": "html",
1513
+ "relative_path": "chunk_records/r6_00017.parquet",
1514
+ "rows": 5000
1515
+ },
1516
+ {
1517
+ "category": "chunk_records",
1518
+ "language": "html",
1519
+ "relative_path": "chunk_records/r6_00018.parquet",
1520
+ "rows": 5000
1521
+ },
1522
+ {
1523
+ "category": "chunk_records",
1524
+ "language": "html",
1525
+ "relative_path": "chunk_records/r6_00019.parquet",
1526
+ "rows": 5000
1527
+ },
1528
+ {
1529
+ "category": "chunk_records",
1530
+ "language": "html",
1531
+ "relative_path": "chunk_records/r6_00020.parquet",
1532
+ "rows": 5000
1533
+ },
1534
+ {
1535
+ "category": "chunk_records",
1536
+ "language": "html",
1537
+ "relative_path": "chunk_records/r6_00021.parquet",
1538
+ "rows": 5000
1539
+ },
1540
+ {
1541
+ "category": "chunk_records",
1542
+ "language": "html",
1543
+ "relative_path": "chunk_records/r6_00022.parquet",
1544
+ "rows": 5000
1545
+ },
1546
+ {
1547
+ "category": "chunk_records",
1548
+ "language": "html",
1549
+ "relative_path": "chunk_records/r6_00023.parquet",
1550
+ "rows": 5000
1551
+ },
1552
+ {
1553
+ "category": "chunk_records",
1554
+ "language": "html",
1555
+ "relative_path": "chunk_records/r6_00024.parquet",
1556
+ "rows": 5000
1557
+ },
1558
+ {
1559
+ "category": "chunk_records",
1560
+ "language": "html",
1561
+ "relative_path": "chunk_records/r6_00025.parquet",
1562
+ "rows": 5000
1563
+ },
1564
+ {
1565
+ "category": "chunk_records",
1566
+ "language": "html",
1567
+ "relative_path": "chunk_records/r6_00026.parquet",
1568
+ "rows": 5000
1569
+ },
1570
+ {
1571
+ "category": "chunk_records",
1572
+ "language": "html",
1573
+ "relative_path": "chunk_records/r6_00027.parquet",
1574
+ "rows": 5000
1575
+ },
1576
+ {
1577
+ "category": "chunk_records",
1578
+ "language": "html",
1579
+ "relative_path": "chunk_records/r6_00028.parquet",
1580
+ "rows": 5000
1581
+ },
1582
+ {
1583
+ "category": "chunk_records",
1584
+ "language": "html",
1585
+ "relative_path": "chunk_records/r6_00029.parquet",
1586
+ "rows": 5000
1587
+ },
1588
+ {
1589
+ "category": "chunk_records",
1590
+ "language": "html",
1591
+ "relative_path": "chunk_records/r6_00030.parquet",
1592
+ "rows": 5000
1593
+ },
1594
+ {
1595
+ "category": "chunk_records",
1596
+ "language": "html",
1597
+ "relative_path": "chunk_records/r6_00031.parquet",
1598
+ "rows": 5000
1599
+ },
1600
+ {
1601
+ "category": "chunk_records",
1602
+ "language": "html",
1603
+ "relative_path": "chunk_records/r6_00032.parquet",
1604
+ "rows": 5000
1605
+ },
1606
+ {
1607
+ "category": "chunk_records",
1608
+ "language": "html",
1609
+ "relative_path": "chunk_records/r6_00033.parquet",
1610
+ "rows": 5000
1611
+ },
1612
+ {
1613
+ "category": "chunk_records",
1614
+ "language": "html",
1615
+ "relative_path": "chunk_records/r6_00034.parquet",
1616
+ "rows": 5000
1617
+ },
1618
+ {
1619
+ "category": "chunk_records",
1620
+ "language": "html",
1621
+ "relative_path": "chunk_records/r6_00035.parquet",
1622
+ "rows": 5000
1623
+ },
1624
+ {
1625
+ "category": "chunk_records",
1626
+ "language": "html",
1627
+ "relative_path": "chunk_records/r6_00036.parquet",
1628
+ "rows": 5000
1629
+ },
1630
+ {
1631
+ "category": "chunk_records",
1632
+ "language": "html",
1633
+ "relative_path": "chunk_records/r6_00037.parquet",
1634
+ "rows": 5000
1635
+ },
1636
+ {
1637
+ "category": "chunk_records",
1638
+ "language": "html",
1639
+ "relative_path": "chunk_records/r6_00038.parquet",
1640
+ "rows": 4897
1641
+ },
1642
+ {
1643
+ "category": "chunk_records",
1644
+ "language": "html",
1645
+ "relative_path": "chunk_records/r7_00000.parquet",
1646
+ "rows": 5000
1647
+ },
1648
+ {
1649
+ "category": "chunk_records",
1650
+ "language": "html",
1651
+ "relative_path": "chunk_records/r7_00001.parquet",
1652
+ "rows": 5000
1653
+ },
1654
+ {
1655
+ "category": "chunk_records",
1656
+ "language": "html",
1657
+ "relative_path": "chunk_records/r7_00002.parquet",
1658
+ "rows": 5000
1659
+ },
1660
+ {
1661
+ "category": "chunk_records",
1662
+ "language": "html",
1663
+ "relative_path": "chunk_records/r7_00003.parquet",
1664
+ "rows": 5000
1665
+ },
1666
+ {
1667
+ "category": "chunk_records",
1668
+ "language": "html",
1669
+ "relative_path": "chunk_records/r7_00004.parquet",
1670
+ "rows": 5000
1671
+ },
1672
+ {
1673
+ "category": "chunk_records",
1674
+ "language": "html",
1675
+ "relative_path": "chunk_records/r7_00005.parquet",
1676
+ "rows": 5000
1677
+ },
1678
+ {
1679
+ "category": "chunk_records",
1680
+ "language": "html",
1681
+ "relative_path": "chunk_records/r7_00006.parquet",
1682
+ "rows": 5000
1683
+ },
1684
+ {
1685
+ "category": "chunk_records",
1686
+ "language": "html",
1687
+ "relative_path": "chunk_records/r7_00007.parquet",
1688
+ "rows": 5000
1689
+ },
1690
+ {
1691
+ "category": "chunk_records",
1692
+ "language": "html",
1693
+ "relative_path": "chunk_records/r7_00008.parquet",
1694
+ "rows": 5000
1695
+ },
1696
+ {
1697
+ "category": "chunk_records",
1698
+ "language": "html",
1699
+ "relative_path": "chunk_records/r7_00009.parquet",
1700
+ "rows": 5000
1701
+ },
1702
+ {
1703
+ "category": "chunk_records",
1704
+ "language": "html",
1705
+ "relative_path": "chunk_records/r7_00010.parquet",
1706
+ "rows": 5000
1707
+ },
1708
+ {
1709
+ "category": "chunk_records",
1710
+ "language": "html",
1711
+ "relative_path": "chunk_records/r7_00011.parquet",
1712
+ "rows": 5000
1713
+ },
1714
+ {
1715
+ "category": "chunk_records",
1716
+ "language": "html",
1717
+ "relative_path": "chunk_records/r7_00012.parquet",
1718
+ "rows": 5000
1719
+ },
1720
+ {
1721
+ "category": "chunk_records",
1722
+ "language": "html",
1723
+ "relative_path": "chunk_records/r7_00013.parquet",
1724
+ "rows": 5000
1725
+ },
1726
+ {
1727
+ "category": "chunk_records",
1728
+ "language": "html",
1729
+ "relative_path": "chunk_records/r7_00014.parquet",
1730
+ "rows": 5000
1731
+ },
1732
+ {
1733
+ "category": "chunk_records",
1734
+ "language": "html",
1735
+ "relative_path": "chunk_records/r7_00015.parquet",
1736
+ "rows": 5000
1737
+ },
1738
+ {
1739
+ "category": "chunk_records",
1740
+ "language": "html",
1741
+ "relative_path": "chunk_records/r7_00016.parquet",
1742
+ "rows": 5000
1743
+ },
1744
+ {
1745
+ "category": "chunk_records",
1746
+ "language": "html",
1747
+ "relative_path": "chunk_records/r7_00017.parquet",
1748
+ "rows": 5000
1749
+ },
1750
+ {
1751
+ "category": "chunk_records",
1752
+ "language": "html",
1753
+ "relative_path": "chunk_records/r7_00018.parquet",
1754
+ "rows": 5000
1755
+ },
1756
+ {
1757
+ "category": "chunk_records",
1758
+ "language": "html",
1759
+ "relative_path": "chunk_records/r7_00019.parquet",
1760
+ "rows": 5000
1761
+ },
1762
+ {
1763
+ "category": "chunk_records",
1764
+ "language": "html",
1765
+ "relative_path": "chunk_records/r7_00020.parquet",
1766
+ "rows": 5000
1767
+ },
1768
+ {
1769
+ "category": "chunk_records",
1770
+ "language": "html",
1771
+ "relative_path": "chunk_records/r7_00021.parquet",
1772
+ "rows": 5000
1773
+ },
1774
+ {
1775
+ "category": "chunk_records",
1776
+ "language": "html",
1777
+ "relative_path": "chunk_records/r7_00022.parquet",
1778
+ "rows": 5000
1779
+ },
1780
+ {
1781
+ "category": "chunk_records",
1782
+ "language": "html",
1783
+ "relative_path": "chunk_records/r7_00023.parquet",
1784
+ "rows": 5000
1785
+ },
1786
+ {
1787
+ "category": "chunk_records",
1788
+ "language": "html",
1789
+ "relative_path": "chunk_records/r7_00024.parquet",
1790
+ "rows": 5000
1791
+ },
1792
+ {
1793
+ "category": "chunk_records",
1794
+ "language": "html",
1795
+ "relative_path": "chunk_records/r7_00025.parquet",
1796
+ "rows": 5000
1797
+ },
1798
+ {
1799
+ "category": "chunk_records",
1800
+ "language": "html",
1801
+ "relative_path": "chunk_records/r7_00026.parquet",
1802
+ "rows": 5000
1803
+ },
1804
+ {
1805
+ "category": "chunk_records",
1806
+ "language": "html",
1807
+ "relative_path": "chunk_records/r7_00027.parquet",
1808
+ "rows": 5000
1809
+ },
1810
+ {
1811
+ "category": "chunk_records",
1812
+ "language": "html",
1813
+ "relative_path": "chunk_records/r7_00028.parquet",
1814
+ "rows": 5000
1815
+ },
1816
+ {
1817
+ "category": "chunk_records",
1818
+ "language": "html",
1819
+ "relative_path": "chunk_records/r7_00029.parquet",
1820
+ "rows": 5000
1821
+ },
1822
+ {
1823
+ "category": "chunk_records",
1824
+ "language": "html",
1825
+ "relative_path": "chunk_records/r7_00030.parquet",
1826
+ "rows": 5000
1827
+ },
1828
+ {
1829
+ "category": "chunk_records",
1830
+ "language": "html",
1831
+ "relative_path": "chunk_records/r7_00031.parquet",
1832
+ "rows": 5000
1833
+ },
1834
+ {
1835
+ "category": "chunk_records",
1836
+ "language": "html",
1837
+ "relative_path": "chunk_records/r7_00032.parquet",
1838
+ "rows": 5000
1839
+ },
1840
+ {
1841
+ "category": "chunk_records",
1842
+ "language": "html",
1843
+ "relative_path": "chunk_records/r7_00033.parquet",
1844
+ "rows": 5000
1845
+ },
1846
+ {
1847
+ "category": "chunk_records",
1848
+ "language": "html",
1849
+ "relative_path": "chunk_records/r7_00034.parquet",
1850
+ "rows": 5000
1851
+ },
1852
+ {
1853
+ "category": "chunk_records",
1854
+ "language": "html",
1855
+ "relative_path": "chunk_records/r7_00035.parquet",
1856
+ "rows": 5000
1857
+ },
1858
+ {
1859
+ "category": "chunk_records",
1860
+ "language": "html",
1861
+ "relative_path": "chunk_records/r7_00036.parquet",
1862
+ "rows": 5000
1863
+ },
1864
+ {
1865
+ "category": "chunk_records",
1866
+ "language": "html",
1867
+ "relative_path": "chunk_records/r7_00037.parquet",
1868
+ "rows": 5000
1869
+ },
1870
+ {
1871
+ "category": "chunk_records",
1872
+ "language": "html",
1873
+ "relative_path": "chunk_records/r7_00038.parquet",
1874
+ "rows": 4897
1875
+ },
1876
+ {
1877
+ "category": "question_metadata",
1878
+ "language": "html",
1879
+ "relative_path": "question_metadata/r0_00000.parquet",
1880
+ "rows": 5000
1881
+ },
1882
+ {
1883
+ "category": "question_metadata",
1884
+ "language": "html",
1885
+ "relative_path": "question_metadata/r0_00001.parquet",
1886
+ "rows": 5000
1887
+ },
1888
+ {
1889
+ "category": "question_metadata",
1890
+ "language": "html",
1891
+ "relative_path": "question_metadata/r0_00002.parquet",
1892
+ "rows": 5000
1893
+ },
1894
+ {
1895
+ "category": "question_metadata",
1896
+ "language": "html",
1897
+ "relative_path": "question_metadata/r0_00003.parquet",
1898
+ "rows": 5000
1899
+ },
1900
+ {
1901
+ "category": "question_metadata",
1902
+ "language": "html",
1903
+ "relative_path": "question_metadata/r0_00004.parquet",
1904
+ "rows": 5000
1905
+ },
1906
+ {
1907
+ "category": "question_metadata",
1908
+ "language": "html",
1909
+ "relative_path": "question_metadata/r0_00005.parquet",
1910
+ "rows": 5000
1911
+ },
1912
+ {
1913
+ "category": "question_metadata",
1914
+ "language": "html",
1915
+ "relative_path": "question_metadata/r0_00006.parquet",
1916
+ "rows": 5000
1917
+ },
1918
+ {
1919
+ "category": "question_metadata",
1920
+ "language": "html",
1921
+ "relative_path": "question_metadata/r0_00007.parquet",
1922
+ "rows": 5000
1923
+ },
1924
+ {
1925
+ "category": "question_metadata",
1926
+ "language": "html",
1927
+ "relative_path": "question_metadata/r0_00008.parquet",
1928
+ "rows": 5000
1929
+ },
1930
+ {
1931
+ "category": "question_metadata",
1932
+ "language": "html",
1933
+ "relative_path": "question_metadata/r0_00009.parquet",
1934
+ "rows": 5000
1935
+ },
1936
+ {
1937
+ "category": "question_metadata",
1938
+ "language": "html",
1939
+ "relative_path": "question_metadata/r0_00010.parquet",
1940
+ "rows": 5000
1941
+ },
1942
+ {
1943
+ "category": "question_metadata",
1944
+ "language": "html",
1945
+ "relative_path": "question_metadata/r0_00011.parquet",
1946
+ "rows": 5000
1947
+ },
1948
+ {
1949
+ "category": "question_metadata",
1950
+ "language": "html",
1951
+ "relative_path": "question_metadata/r0_00012.parquet",
1952
+ "rows": 5000
1953
+ },
1954
+ {
1955
+ "category": "question_metadata",
1956
+ "language": "html",
1957
+ "relative_path": "question_metadata/r0_00013.parquet",
1958
+ "rows": 5000
1959
+ },
1960
+ {
1961
+ "category": "question_metadata",
1962
+ "language": "html",
1963
+ "relative_path": "question_metadata/r0_00014.parquet",
1964
+ "rows": 5000
1965
+ },
1966
+ {
1967
+ "category": "question_metadata",
1968
+ "language": "html",
1969
+ "relative_path": "question_metadata/r0_00015.parquet",
1970
+ "rows": 5000
1971
+ },
1972
+ {
1973
+ "category": "question_metadata",
1974
+ "language": "html",
1975
+ "relative_path": "question_metadata/r0_00016.parquet",
1976
+ "rows": 5000
1977
+ },
1978
+ {
1979
+ "category": "question_metadata",
1980
+ "language": "html",
1981
+ "relative_path": "question_metadata/r0_00017.parquet",
1982
+ "rows": 5000
1983
+ },
1984
+ {
1985
+ "category": "question_metadata",
1986
+ "language": "html",
1987
+ "relative_path": "question_metadata/r0_00018.parquet",
1988
+ "rows": 5000
1989
+ },
1990
+ {
1991
+ "category": "question_metadata",
1992
+ "language": "html",
1993
+ "relative_path": "question_metadata/r0_00019.parquet",
1994
+ "rows": 5000
1995
+ },
1996
+ {
1997
+ "category": "question_metadata",
1998
+ "language": "html",
1999
+ "relative_path": "question_metadata/r0_00020.parquet",
2000
+ "rows": 5000
2001
+ },
2002
+ {
2003
+ "category": "question_metadata",
2004
+ "language": "html",
2005
+ "relative_path": "question_metadata/r0_00021.parquet",
2006
+ "rows": 5000
2007
+ },
2008
+ {
2009
+ "category": "question_metadata",
2010
+ "language": "html",
2011
+ "relative_path": "question_metadata/r0_00022.parquet",
2012
+ "rows": 5000
2013
+ },
2014
+ {
2015
+ "category": "question_metadata",
2016
+ "language": "html",
2017
+ "relative_path": "question_metadata/r0_00023.parquet",
2018
+ "rows": 5000
2019
+ },
2020
+ {
2021
+ "category": "question_metadata",
2022
+ "language": "html",
2023
+ "relative_path": "question_metadata/r0_00024.parquet",
2024
+ "rows": 5000
2025
+ },
2026
+ {
2027
+ "category": "question_metadata",
2028
+ "language": "html",
2029
+ "relative_path": "question_metadata/r0_00025.parquet",
2030
+ "rows": 5000
2031
+ },
2032
+ {
2033
+ "category": "question_metadata",
2034
+ "language": "html",
2035
+ "relative_path": "question_metadata/r0_00026.parquet",
2036
+ "rows": 5000
2037
+ },
2038
+ {
2039
+ "category": "question_metadata",
2040
+ "language": "html",
2041
+ "relative_path": "question_metadata/r0_00027.parquet",
2042
+ "rows": 5000
2043
+ },
2044
+ {
2045
+ "category": "question_metadata",
2046
+ "language": "html",
2047
+ "relative_path": "question_metadata/r0_00028.parquet",
2048
+ "rows": 5000
2049
+ },
2050
+ {
2051
+ "category": "question_metadata",
2052
+ "language": "html",
2053
+ "relative_path": "question_metadata/r0_00029.parquet",
2054
+ "rows": 5000
2055
+ },
2056
+ {
2057
+ "category": "question_metadata",
2058
+ "language": "html",
2059
+ "relative_path": "question_metadata/r0_00030.parquet",
2060
+ "rows": 5000
2061
+ },
2062
+ {
2063
+ "category": "question_metadata",
2064
+ "language": "html",
2065
+ "relative_path": "question_metadata/r0_00031.parquet",
2066
+ "rows": 5000
2067
+ },
2068
+ {
2069
+ "category": "question_metadata",
2070
+ "language": "html",
2071
+ "relative_path": "question_metadata/r0_00032.parquet",
2072
+ "rows": 5000
2073
+ },
2074
+ {
2075
+ "category": "question_metadata",
2076
+ "language": "html",
2077
+ "relative_path": "question_metadata/r0_00033.parquet",
2078
+ "rows": 5000
2079
+ },
2080
+ {
2081
+ "category": "question_metadata",
2082
+ "language": "html",
2083
+ "relative_path": "question_metadata/r0_00034.parquet",
2084
+ "rows": 5000
2085
+ },
2086
+ {
2087
+ "category": "question_metadata",
2088
+ "language": "html",
2089
+ "relative_path": "question_metadata/r0_00035.parquet",
2090
+ "rows": 5000
2091
+ },
2092
+ {
2093
+ "category": "question_metadata",
2094
+ "language": "html",
2095
+ "relative_path": "question_metadata/r0_00036.parquet",
2096
+ "rows": 5000
2097
+ },
2098
+ {
2099
+ "category": "question_metadata",
2100
+ "language": "html",
2101
+ "relative_path": "question_metadata/r0_00037.parquet",
2102
+ "rows": 5000
2103
+ },
2104
+ {
2105
+ "category": "question_metadata",
2106
+ "language": "html",
2107
+ "relative_path": "question_metadata/r0_00038.parquet",
2108
+ "rows": 5000
2109
+ },
2110
+ {
2111
+ "category": "question_metadata",
2112
+ "language": "html",
2113
+ "relative_path": "question_metadata/r0_00039.parquet",
2114
+ "rows": 5000
2115
+ },
2116
+ {
2117
+ "category": "question_metadata",
2118
+ "language": "html",
2119
+ "relative_path": "question_metadata/r0_00040.parquet",
2120
+ "rows": 5000
2121
+ },
2122
+ {
2123
+ "category": "question_metadata",
2124
+ "language": "html",
2125
+ "relative_path": "question_metadata/r0_00041.parquet",
2126
+ "rows": 5000
2127
+ },
2128
+ {
2129
+ "category": "question_metadata",
2130
+ "language": "html",
2131
+ "relative_path": "question_metadata/r0_00042.parquet",
2132
+ "rows": 5000
2133
+ },
2134
+ {
2135
+ "category": "question_metadata",
2136
+ "language": "html",
2137
+ "relative_path": "question_metadata/r0_00043.parquet",
2138
+ "rows": 5000
2139
+ },
2140
+ {
2141
+ "category": "question_metadata",
2142
+ "language": "html",
2143
+ "relative_path": "question_metadata/r0_00044.parquet",
2144
+ "rows": 5000
2145
+ },
2146
+ {
2147
+ "category": "question_metadata",
2148
+ "language": "html",
2149
+ "relative_path": "question_metadata/r0_00045.parquet",
2150
+ "rows": 5000
2151
+ },
2152
+ {
2153
+ "category": "question_metadata",
2154
+ "language": "html",
2155
+ "relative_path": "question_metadata/r0_00046.parquet",
2156
+ "rows": 5000
2157
+ },
2158
+ {
2159
+ "category": "question_metadata",
2160
+ "language": "html",
2161
+ "relative_path": "question_metadata/r0_00047.parquet",
2162
+ "rows": 5000
2163
+ },
2164
+ {
2165
+ "category": "question_metadata",
2166
+ "language": "html",
2167
+ "relative_path": "question_metadata/r0_00048.parquet",
2168
+ "rows": 5000
2169
+ },
2170
+ {
2171
+ "category": "question_metadata",
2172
+ "language": "html",
2173
+ "relative_path": "question_metadata/r0_00049.parquet",
2174
+ "rows": 5000
2175
+ },
2176
+ {
2177
+ "category": "question_metadata",
2178
+ "language": "html",
2179
+ "relative_path": "question_metadata/r0_00050.parquet",
2180
+ "rows": 5000
2181
+ },
2182
+ {
2183
+ "category": "question_metadata",
2184
+ "language": "html",
2185
+ "relative_path": "question_metadata/r0_00051.parquet",
2186
+ "rows": 5000
2187
+ },
2188
+ {
2189
+ "category": "question_metadata",
2190
+ "language": "html",
2191
+ "relative_path": "question_metadata/r0_00052.parquet",
2192
+ "rows": 5000
2193
+ },
2194
+ {
2195
+ "category": "question_metadata",
2196
+ "language": "html",
2197
+ "relative_path": "question_metadata/r0_00053.parquet",
2198
+ "rows": 5000
2199
+ },
2200
+ {
2201
+ "category": "question_metadata",
2202
+ "language": "html",
2203
+ "relative_path": "question_metadata/r0_00054.parquet",
2204
+ "rows": 5000
2205
+ },
2206
+ {
2207
+ "category": "question_metadata",
2208
+ "language": "html",
2209
+ "relative_path": "question_metadata/r0_00055.parquet",
2210
+ "rows": 5000
2211
+ },
2212
+ {
2213
+ "category": "question_metadata",
2214
+ "language": "html",
2215
+ "relative_path": "question_metadata/r0_00056.parquet",
2216
+ "rows": 5000
2217
+ },
2218
+ {
2219
+ "category": "question_metadata",
2220
+ "language": "html",
2221
+ "relative_path": "question_metadata/r0_00057.parquet",
2222
+ "rows": 5000
2223
+ },
2224
+ {
2225
+ "category": "question_metadata",
2226
+ "language": "html",
2227
+ "relative_path": "question_metadata/r0_00058.parquet",
2228
+ "rows": 5000
2229
+ },
2230
+ {
2231
+ "category": "question_metadata",
2232
+ "language": "html",
2233
+ "relative_path": "question_metadata/r0_00059.parquet",
2234
+ "rows": 5000
2235
+ },
2236
+ {
2237
+ "category": "question_metadata",
2238
+ "language": "html",
2239
+ "relative_path": "question_metadata/r0_00060.parquet",
2240
+ "rows": 5000
2241
+ },
2242
+ {
2243
+ "category": "question_metadata",
2244
+ "language": "html",
2245
+ "relative_path": "question_metadata/r0_00061.parquet",
2246
+ "rows": 5000
2247
+ },
2248
+ {
2249
+ "category": "question_metadata",
2250
+ "language": "html",
2251
+ "relative_path": "question_metadata/r0_00062.parquet",
2252
+ "rows": 5000
2253
+ },
2254
+ {
2255
+ "category": "question_metadata",
2256
+ "language": "html",
2257
+ "relative_path": "question_metadata/r0_00063.parquet",
2258
+ "rows": 5000
2259
+ },
2260
+ {
2261
+ "category": "question_metadata",
2262
+ "language": "html",
2263
+ "relative_path": "question_metadata/r0_00064.parquet",
2264
+ "rows": 5000
2265
+ },
2266
+ {
2267
+ "category": "question_metadata",
2268
+ "language": "html",
2269
+ "relative_path": "question_metadata/r0_00065.parquet",
2270
+ "rows": 5000
2271
+ },
2272
+ {
2273
+ "category": "question_metadata",
2274
+ "language": "html",
2275
+ "relative_path": "question_metadata/r0_00066.parquet",
2276
+ "rows": 5000
2277
+ },
2278
+ {
2279
+ "category": "question_metadata",
2280
+ "language": "html",
2281
+ "relative_path": "question_metadata/r0_00067.parquet",
2282
+ "rows": 5000
2283
+ },
2284
+ {
2285
+ "category": "question_metadata",
2286
+ "language": "html",
2287
+ "relative_path": "question_metadata/r0_00068.parquet",
2288
+ "rows": 5000
2289
+ },
2290
+ {
2291
+ "category": "question_metadata",
2292
+ "language": "html",
2293
+ "relative_path": "question_metadata/r0_00069.parquet",
2294
+ "rows": 5000
2295
+ },
2296
+ {
2297
+ "category": "question_metadata",
2298
+ "language": "html",
2299
+ "relative_path": "question_metadata/r0_00070.parquet",
2300
+ "rows": 5000
2301
+ },
2302
+ {
2303
+ "category": "question_metadata",
2304
+ "language": "html",
2305
+ "relative_path": "question_metadata/r0_00071.parquet",
2306
+ "rows": 5000
2307
+ },
2308
+ {
2309
+ "category": "question_metadata",
2310
+ "language": "html",
2311
+ "relative_path": "question_metadata/r0_00072.parquet",
2312
+ "rows": 5000
2313
+ },
2314
+ {
2315
+ "category": "question_metadata",
2316
+ "language": "html",
2317
+ "relative_path": "question_metadata/r0_00073.parquet",
2318
+ "rows": 5000
2319
+ },
2320
+ {
2321
+ "category": "question_metadata",
2322
+ "language": "html",
2323
+ "relative_path": "question_metadata/r0_00074.parquet",
2324
+ "rows": 5000
2325
+ },
2326
+ {
2327
+ "category": "question_metadata",
2328
+ "language": "html",
2329
+ "relative_path": "question_metadata/r0_00075.parquet",
2330
+ "rows": 5000
2331
+ },
2332
+ {
2333
+ "category": "question_metadata",
2334
+ "language": "html",
2335
+ "relative_path": "question_metadata/r0_00076.parquet",
2336
+ "rows": 5000
2337
+ },
2338
+ {
2339
+ "category": "question_metadata",
2340
+ "language": "html",
2341
+ "relative_path": "question_metadata/r0_00077.parquet",
2342
+ "rows": 5000
2343
+ },
2344
+ {
2345
+ "category": "question_metadata",
2346
+ "language": "html",
2347
+ "relative_path": "question_metadata/r0_00078.parquet",
2348
+ "rows": 5000
2349
+ },
2350
+ {
2351
+ "category": "question_metadata",
2352
+ "language": "html",
2353
+ "relative_path": "question_metadata/r0_00079.parquet",
2354
+ "rows": 5000
2355
+ },
2356
+ {
2357
+ "category": "question_metadata",
2358
+ "language": "html",
2359
+ "relative_path": "question_metadata/r0_00080.parquet",
2360
+ "rows": 5000
2361
+ },
2362
+ {
2363
+ "category": "question_metadata",
2364
+ "language": "html",
2365
+ "relative_path": "question_metadata/r0_00081.parquet",
2366
+ "rows": 5000
2367
+ },
2368
+ {
2369
+ "category": "question_metadata",
2370
+ "language": "html",
2371
+ "relative_path": "question_metadata/r0_00082.parquet",
2372
+ "rows": 5000
2373
+ },
2374
+ {
2375
+ "category": "question_metadata",
2376
+ "language": "html",
2377
+ "relative_path": "question_metadata/r0_00083.parquet",
2378
+ "rows": 5000
2379
+ },
2380
+ {
2381
+ "category": "question_metadata",
2382
+ "language": "html",
2383
+ "relative_path": "question_metadata/r0_00084.parquet",
2384
+ "rows": 5000
2385
+ },
2386
+ {
2387
+ "category": "question_metadata",
2388
+ "language": "html",
2389
+ "relative_path": "question_metadata/r0_00085.parquet",
2390
+ "rows": 5000
2391
+ },
2392
+ {
2393
+ "category": "question_metadata",
2394
+ "language": "html",
2395
+ "relative_path": "question_metadata/r0_00086.parquet",
2396
+ "rows": 5000
2397
+ },
2398
+ {
2399
+ "category": "question_metadata",
2400
+ "language": "html",
2401
+ "relative_path": "question_metadata/r0_00087.parquet",
2402
+ "rows": 5000
2403
+ },
2404
+ {
2405
+ "category": "question_metadata",
2406
+ "language": "html",
2407
+ "relative_path": "question_metadata/r0_00088.parquet",
2408
+ "rows": 5000
2409
+ },
2410
+ {
2411
+ "category": "question_metadata",
2412
+ "language": "html",
2413
+ "relative_path": "question_metadata/r0_00089.parquet",
2414
+ "rows": 5000
2415
+ },
2416
+ {
2417
+ "category": "question_metadata",
2418
+ "language": "html",
2419
+ "relative_path": "question_metadata/r0_00090.parquet",
2420
+ "rows": 5000
2421
+ },
2422
+ {
2423
+ "category": "question_metadata",
2424
+ "language": "html",
2425
+ "relative_path": "question_metadata/r0_00091.parquet",
2426
+ "rows": 5000
2427
+ },
2428
+ {
2429
+ "category": "question_metadata",
2430
+ "language": "html",
2431
+ "relative_path": "question_metadata/r0_00092.parquet",
2432
+ "rows": 5000
2433
+ },
2434
+ {
2435
+ "category": "question_metadata",
2436
+ "language": "html",
2437
+ "relative_path": "question_metadata/r0_00093.parquet",
2438
+ "rows": 5000
2439
+ },
2440
+ {
2441
+ "category": "question_metadata",
2442
+ "language": "html",
2443
+ "relative_path": "question_metadata/r0_00094.parquet",
2444
+ "rows": 5000
2445
+ },
2446
+ {
2447
+ "category": "question_metadata",
2448
+ "language": "html",
2449
+ "relative_path": "question_metadata/r0_00095.parquet",
2450
+ "rows": 5000
2451
+ },
2452
+ {
2453
+ "category": "question_metadata",
2454
+ "language": "html",
2455
+ "relative_path": "question_metadata/r0_00096.parquet",
2456
+ "rows": 5000
2457
+ },
2458
+ {
2459
+ "category": "question_metadata",
2460
+ "language": "html",
2461
+ "relative_path": "question_metadata/r0_00097.parquet",
2462
+ "rows": 5000
2463
+ },
2464
+ {
2465
+ "category": "question_metadata",
2466
+ "language": "html",
2467
+ "relative_path": "question_metadata/r0_00098.parquet",
2468
+ "rows": 5000
2469
+ },
2470
+ {
2471
+ "category": "question_metadata",
2472
+ "language": "html",
2473
+ "relative_path": "question_metadata/r0_00099.parquet",
2474
+ "rows": 5000
2475
+ },
2476
+ {
2477
+ "category": "question_metadata",
2478
+ "language": "html",
2479
+ "relative_path": "question_metadata/r0_00100.parquet",
2480
+ "rows": 5000
2481
+ },
2482
+ {
2483
+ "category": "question_metadata",
2484
+ "language": "html",
2485
+ "relative_path": "question_metadata/r0_00101.parquet",
2486
+ "rows": 5000
2487
+ },
2488
+ {
2489
+ "category": "question_metadata",
2490
+ "language": "html",
2491
+ "relative_path": "question_metadata/r0_00102.parquet",
2492
+ "rows": 5000
2493
+ },
2494
+ {
2495
+ "category": "question_metadata",
2496
+ "language": "html",
2497
+ "relative_path": "question_metadata/r0_00103.parquet",
2498
+ "rows": 5000
2499
+ },
2500
+ {
2501
+ "category": "question_metadata",
2502
+ "language": "html",
2503
+ "relative_path": "question_metadata/r0_00104.parquet",
2504
+ "rows": 5000
2505
+ },
2506
+ {
2507
+ "category": "question_metadata",
2508
+ "language": "html",
2509
+ "relative_path": "question_metadata/r0_00105.parquet",
2510
+ "rows": 5000
2511
+ },
2512
+ {
2513
+ "category": "question_metadata",
2514
+ "language": "html",
2515
+ "relative_path": "question_metadata/r0_00106.parquet",
2516
+ "rows": 5000
2517
+ },
2518
+ {
2519
+ "category": "question_metadata",
2520
+ "language": "html",
2521
+ "relative_path": "question_metadata/r0_00107.parquet",
2522
+ "rows": 5000
2523
+ },
2524
+ {
2525
+ "category": "question_metadata",
2526
+ "language": "html",
2527
+ "relative_path": "question_metadata/r0_00108.parquet",
2528
+ "rows": 5000
2529
+ },
2530
+ {
2531
+ "category": "question_metadata",
2532
+ "language": "html",
2533
+ "relative_path": "question_metadata/r0_00109.parquet",
2534
+ "rows": 5000
2535
+ },
2536
+ {
2537
+ "category": "question_metadata",
2538
+ "language": "html",
2539
+ "relative_path": "question_metadata/r0_00110.parquet",
2540
+ "rows": 5000
2541
+ },
2542
+ {
2543
+ "category": "question_metadata",
2544
+ "language": "html",
2545
+ "relative_path": "question_metadata/r0_00111.parquet",
2546
+ "rows": 5000
2547
+ },
2548
+ {
2549
+ "category": "question_metadata",
2550
+ "language": "html",
2551
+ "relative_path": "question_metadata/r0_00112.parquet",
2552
+ "rows": 5000
2553
+ },
2554
+ {
2555
+ "category": "question_metadata",
2556
+ "language": "html",
2557
+ "relative_path": "question_metadata/r0_00113.parquet",
2558
+ "rows": 5000
2559
+ },
2560
+ {
2561
+ "category": "question_metadata",
2562
+ "language": "html",
2563
+ "relative_path": "question_metadata/r0_00114.parquet",
2564
+ "rows": 5000
2565
+ },
2566
+ {
2567
+ "category": "question_metadata",
2568
+ "language": "html",
2569
+ "relative_path": "question_metadata/r0_00115.parquet",
2570
+ "rows": 5000
2571
+ },
2572
+ {
2573
+ "category": "question_metadata",
2574
+ "language": "html",
2575
+ "relative_path": "question_metadata/r0_00116.parquet",
2576
+ "rows": 5000
2577
+ },
2578
+ {
2579
+ "category": "question_metadata",
2580
+ "language": "html",
2581
+ "relative_path": "question_metadata/r0_00117.parquet",
2582
+ "rows": 5000
2583
+ },
2584
+ {
2585
+ "category": "question_metadata",
2586
+ "language": "html",
2587
+ "relative_path": "question_metadata/r0_00118.parquet",
2588
+ "rows": 5000
2589
+ },
2590
+ {
2591
+ "category": "question_metadata",
2592
+ "language": "html",
2593
+ "relative_path": "question_metadata/r0_00119.parquet",
2594
+ "rows": 5000
2595
+ },
2596
+ {
2597
+ "category": "question_metadata",
2598
+ "language": "html",
2599
+ "relative_path": "question_metadata/r0_00120.parquet",
2600
+ "rows": 5000
2601
+ },
2602
+ {
2603
+ "category": "question_metadata",
2604
+ "language": "html",
2605
+ "relative_path": "question_metadata/r0_00121.parquet",
2606
+ "rows": 5000
2607
+ },
2608
+ {
2609
+ "category": "question_metadata",
2610
+ "language": "html",
2611
+ "relative_path": "question_metadata/r0_00122.parquet",
2612
+ "rows": 5000
2613
+ },
2614
+ {
2615
+ "category": "question_metadata",
2616
+ "language": "html",
2617
+ "relative_path": "question_metadata/r0_00123.parquet",
2618
+ "rows": 5000
2619
+ },
2620
+ {
2621
+ "category": "question_metadata",
2622
+ "language": "html",
2623
+ "relative_path": "question_metadata/r0_00124.parquet",
2624
+ "rows": 5000
2625
+ },
2626
+ {
2627
+ "category": "question_metadata",
2628
+ "language": "html",
2629
+ "relative_path": "question_metadata/r0_00125.parquet",
2630
+ "rows": 5000
2631
+ },
2632
+ {
2633
+ "category": "question_metadata",
2634
+ "language": "html",
2635
+ "relative_path": "question_metadata/r0_00126.parquet",
2636
+ "rows": 5000
2637
+ },
2638
+ {
2639
+ "category": "question_metadata",
2640
+ "language": "html",
2641
+ "relative_path": "question_metadata/r0_00127.parquet",
2642
+ "rows": 5000
2643
+ },
2644
+ {
2645
+ "category": "question_metadata",
2646
+ "language": "html",
2647
+ "relative_path": "question_metadata/r0_00128.parquet",
2648
+ "rows": 5000
2649
+ },
2650
+ {
2651
+ "category": "question_metadata",
2652
+ "language": "html",
2653
+ "relative_path": "question_metadata/r0_00129.parquet",
2654
+ "rows": 5000
2655
+ },
2656
+ {
2657
+ "category": "question_metadata",
2658
+ "language": "html",
2659
+ "relative_path": "question_metadata/r0_00130.parquet",
2660
+ "rows": 5000
2661
+ },
2662
+ {
2663
+ "category": "question_metadata",
2664
+ "language": "html",
2665
+ "relative_path": "question_metadata/r0_00131.parquet",
2666
+ "rows": 5000
2667
+ },
2668
+ {
2669
+ "category": "question_metadata",
2670
+ "language": "html",
2671
+ "relative_path": "question_metadata/r0_00132.parquet",
2672
+ "rows": 5000
2673
+ },
2674
+ {
2675
+ "category": "question_metadata",
2676
+ "language": "html",
2677
+ "relative_path": "question_metadata/r0_00133.parquet",
2678
+ "rows": 5000
2679
+ },
2680
+ {
2681
+ "category": "question_metadata",
2682
+ "language": "html",
2683
+ "relative_path": "question_metadata/r0_00134.parquet",
2684
+ "rows": 5000
2685
+ },
2686
+ {
2687
+ "category": "question_metadata",
2688
+ "language": "html",
2689
+ "relative_path": "question_metadata/r0_00135.parquet",
2690
+ "rows": 5000
2691
+ },
2692
+ {
2693
+ "category": "question_metadata",
2694
+ "language": "html",
2695
+ "relative_path": "question_metadata/r0_00136.parquet",
2696
+ "rows": 5000
2697
+ },
2698
+ {
2699
+ "category": "question_metadata",
2700
+ "language": "html",
2701
+ "relative_path": "question_metadata/r0_00137.parquet",
2702
+ "rows": 5000
2703
+ },
2704
+ {
2705
+ "category": "question_metadata",
2706
+ "language": "html",
2707
+ "relative_path": "question_metadata/r0_00138.parquet",
2708
+ "rows": 5000
2709
+ },
2710
+ {
2711
+ "category": "question_metadata",
2712
+ "language": "html",
2713
+ "relative_path": "question_metadata/r0_00139.parquet",
2714
+ "rows": 5000
2715
+ },
2716
+ {
2717
+ "category": "question_metadata",
2718
+ "language": "html",
2719
+ "relative_path": "question_metadata/r0_00140.parquet",
2720
+ "rows": 5000
2721
+ },
2722
+ {
2723
+ "category": "question_metadata",
2724
+ "language": "html",
2725
+ "relative_path": "question_metadata/r0_00141.parquet",
2726
+ "rows": 5000
2727
+ },
2728
+ {
2729
+ "category": "question_metadata",
2730
+ "language": "html",
2731
+ "relative_path": "question_metadata/r0_00142.parquet",
2732
+ "rows": 5000
2733
+ },
2734
+ {
2735
+ "category": "question_metadata",
2736
+ "language": "html",
2737
+ "relative_path": "question_metadata/r0_00143.parquet",
2738
+ "rows": 5000
2739
+ },
2740
+ {
2741
+ "category": "question_metadata",
2742
+ "language": "html",
2743
+ "relative_path": "question_metadata/r0_00144.parquet",
2744
+ "rows": 5000
2745
+ },
2746
+ {
2747
+ "category": "question_metadata",
2748
+ "language": "html",
2749
+ "relative_path": "question_metadata/r0_00145.parquet",
2750
+ "rows": 5000
2751
+ },
2752
+ {
2753
+ "category": "question_metadata",
2754
+ "language": "html",
2755
+ "relative_path": "question_metadata/r0_00146.parquet",
2756
+ "rows": 5000
2757
+ },
2758
+ {
2759
+ "category": "question_metadata",
2760
+ "language": "html",
2761
+ "relative_path": "question_metadata/r0_00147.parquet",
2762
+ "rows": 5000
2763
+ },
2764
+ {
2765
+ "category": "question_metadata",
2766
+ "language": "html",
2767
+ "relative_path": "question_metadata/r0_00148.parquet",
2768
+ "rows": 5000
2769
+ },
2770
+ {
2771
+ "category": "question_metadata",
2772
+ "language": "html",
2773
+ "relative_path": "question_metadata/r0_00149.parquet",
2774
+ "rows": 5000
2775
+ },
2776
+ {
2777
+ "category": "question_metadata",
2778
+ "language": "html",
2779
+ "relative_path": "question_metadata/r0_00150.parquet",
2780
+ "rows": 5000
2781
+ },
2782
+ {
2783
+ "category": "question_metadata",
2784
+ "language": "html",
2785
+ "relative_path": "question_metadata/r0_00151.parquet",
2786
+ "rows": 5000
2787
+ },
2788
+ {
2789
+ "category": "question_metadata",
2790
+ "language": "html",
2791
+ "relative_path": "question_metadata/r0_00152.parquet",
2792
+ "rows": 5000
2793
+ },
2794
+ {
2795
+ "category": "question_metadata",
2796
+ "language": "html",
2797
+ "relative_path": "question_metadata/r0_00153.parquet",
2798
+ "rows": 5000
2799
+ },
2800
+ {
2801
+ "category": "question_metadata",
2802
+ "language": "html",
2803
+ "relative_path": "question_metadata/r0_00154.parquet",
2804
+ "rows": 5000
2805
+ },
2806
+ {
2807
+ "category": "question_metadata",
2808
+ "language": "html",
2809
+ "relative_path": "question_metadata/r0_00155.parquet",
2810
+ "rows": 5000
2811
+ },
2812
+ {
2813
+ "category": "question_metadata",
2814
+ "language": "html",
2815
+ "relative_path": "question_metadata/r0_00156.parquet",
2816
+ "rows": 5000
2817
+ },
2818
+ {
2819
+ "category": "question_metadata",
2820
+ "language": "html",
2821
+ "relative_path": "question_metadata/r0_00157.parquet",
2822
+ "rows": 5000
2823
+ },
2824
+ {
2825
+ "category": "question_metadata",
2826
+ "language": "html",
2827
+ "relative_path": "question_metadata/r0_00158.parquet",
2828
+ "rows": 5000
2829
+ },
2830
+ {
2831
+ "category": "question_metadata",
2832
+ "language": "html",
2833
+ "relative_path": "question_metadata/r0_00159.parquet",
2834
+ "rows": 5000
2835
+ },
2836
+ {
2837
+ "category": "question_metadata",
2838
+ "language": "html",
2839
+ "relative_path": "question_metadata/r0_00160.parquet",
2840
+ "rows": 5000
2841
+ },
2842
+ {
2843
+ "category": "question_metadata",
2844
+ "language": "html",
2845
+ "relative_path": "question_metadata/r0_00161.parquet",
2846
+ "rows": 5000
2847
+ },
2848
+ {
2849
+ "category": "question_metadata",
2850
+ "language": "html",
2851
+ "relative_path": "question_metadata/r0_00162.parquet",
2852
+ "rows": 5000
2853
+ },
2854
+ {
2855
+ "category": "question_metadata",
2856
+ "language": "html",
2857
+ "relative_path": "question_metadata/r0_00163.parquet",
2858
+ "rows": 5000
2859
+ },
2860
+ {
2861
+ "category": "question_metadata",
2862
+ "language": "html",
2863
+ "relative_path": "question_metadata/r0_00164.parquet",
2864
+ "rows": 5000
2865
+ },
2866
+ {
2867
+ "category": "question_metadata",
2868
+ "language": "html",
2869
+ "relative_path": "question_metadata/r0_00165.parquet",
2870
+ "rows": 5000
2871
+ },
2872
+ {
2873
+ "category": "question_metadata",
2874
+ "language": "html",
2875
+ "relative_path": "question_metadata/r0_00166.parquet",
2876
+ "rows": 5000
2877
+ },
2878
+ {
2879
+ "category": "question_metadata",
2880
+ "language": "html",
2881
+ "relative_path": "question_metadata/r0_00167.parquet",
2882
+ "rows": 5000
2883
+ },
2884
+ {
2885
+ "category": "question_metadata",
2886
+ "language": "html",
2887
+ "relative_path": "question_metadata/r0_00168.parquet",
2888
+ "rows": 5000
2889
+ },
2890
+ {
2891
+ "category": "question_metadata",
2892
+ "language": "html",
2893
+ "relative_path": "question_metadata/r0_00169.parquet",
2894
+ "rows": 5000
2895
+ },
2896
+ {
2897
+ "category": "question_metadata",
2898
+ "language": "html",
2899
+ "relative_path": "question_metadata/r0_00170.parquet",
2900
+ "rows": 5000
2901
+ },
2902
+ {
2903
+ "category": "question_metadata",
2904
+ "language": "html",
2905
+ "relative_path": "question_metadata/r0_00171.parquet",
2906
+ "rows": 5000
2907
+ },
2908
+ {
2909
+ "category": "question_metadata",
2910
+ "language": "html",
2911
+ "relative_path": "question_metadata/r0_00172.parquet",
2912
+ "rows": 5000
2913
+ },
2914
+ {
2915
+ "category": "question_metadata",
2916
+ "language": "html",
2917
+ "relative_path": "question_metadata/r0_00173.parquet",
2918
+ "rows": 5000
2919
+ },
2920
+ {
2921
+ "category": "question_metadata",
2922
+ "language": "html",
2923
+ "relative_path": "question_metadata/r0_00174.parquet",
2924
+ "rows": 5000
2925
+ },
2926
+ {
2927
+ "category": "question_metadata",
2928
+ "language": "html",
2929
+ "relative_path": "question_metadata/r0_00175.parquet",
2930
+ "rows": 5000
2931
+ },
2932
+ {
2933
+ "category": "question_metadata",
2934
+ "language": "html",
2935
+ "relative_path": "question_metadata/r0_00176.parquet",
2936
+ "rows": 5000
2937
+ },
2938
+ {
2939
+ "category": "question_metadata",
2940
+ "language": "html",
2941
+ "relative_path": "question_metadata/r0_00177.parquet",
2942
+ "rows": 5000
2943
+ },
2944
+ {
2945
+ "category": "question_metadata",
2946
+ "language": "html",
2947
+ "relative_path": "question_metadata/r0_00178.parquet",
2948
+ "rows": 5000
2949
+ },
2950
+ {
2951
+ "category": "question_metadata",
2952
+ "language": "html",
2953
+ "relative_path": "question_metadata/r0_00179.parquet",
2954
+ "rows": 5000
2955
+ },
2956
+ {
2957
+ "category": "question_metadata",
2958
+ "language": "html",
2959
+ "relative_path": "question_metadata/r0_00180.parquet",
2960
+ "rows": 5000
2961
+ },
2962
+ {
2963
+ "category": "question_metadata",
2964
+ "language": "html",
2965
+ "relative_path": "question_metadata/r0_00181.parquet",
2966
+ "rows": 5000
2967
+ },
2968
+ {
2969
+ "category": "question_metadata",
2970
+ "language": "html",
2971
+ "relative_path": "question_metadata/r0_00182.parquet",
2972
+ "rows": 5000
2973
+ },
2974
+ {
2975
+ "category": "question_metadata",
2976
+ "language": "html",
2977
+ "relative_path": "question_metadata/r0_00183.parquet",
2978
+ "rows": 5000
2979
+ },
2980
+ {
2981
+ "category": "question_metadata",
2982
+ "language": "html",
2983
+ "relative_path": "question_metadata/r0_00184.parquet",
2984
+ "rows": 5000
2985
+ },
2986
+ {
2987
+ "category": "question_metadata",
2988
+ "language": "html",
2989
+ "relative_path": "question_metadata/r0_00185.parquet",
2990
+ "rows": 5000
2991
+ },
2992
+ {
2993
+ "category": "question_metadata",
2994
+ "language": "html",
2995
+ "relative_path": "question_metadata/r0_00186.parquet",
2996
+ "rows": 5000
2997
+ },
2998
+ {
2999
+ "category": "question_metadata",
3000
+ "language": "html",
3001
+ "relative_path": "question_metadata/r0_00187.parquet",
3002
+ "rows": 5000
3003
+ },
3004
+ {
3005
+ "category": "question_metadata",
3006
+ "language": "html",
3007
+ "relative_path": "question_metadata/r0_00188.parquet",
3008
+ "rows": 5000
3009
+ },
3010
+ {
3011
+ "category": "question_metadata",
3012
+ "language": "html",
3013
+ "relative_path": "question_metadata/r0_00189.parquet",
3014
+ "rows": 5000
3015
+ },
3016
+ {
3017
+ "category": "question_metadata",
3018
+ "language": "html",
3019
+ "relative_path": "question_metadata/r0_00190.parquet",
3020
+ "rows": 5000
3021
+ },
3022
+ {
3023
+ "category": "question_metadata",
3024
+ "language": "html",
3025
+ "relative_path": "question_metadata/r0_00191.parquet",
3026
+ "rows": 5000
3027
+ },
3028
+ {
3029
+ "category": "question_metadata",
3030
+ "language": "html",
3031
+ "relative_path": "question_metadata/r0_00192.parquet",
3032
+ "rows": 5000
3033
+ },
3034
+ {
3035
+ "category": "question_metadata",
3036
+ "language": "html",
3037
+ "relative_path": "question_metadata/r0_00193.parquet",
3038
+ "rows": 5000
3039
+ },
3040
+ {
3041
+ "category": "question_metadata",
3042
+ "language": "html",
3043
+ "relative_path": "question_metadata/r0_00194.parquet",
3044
+ "rows": 5000
3045
+ },
3046
+ {
3047
+ "category": "question_metadata",
3048
+ "language": "html",
3049
+ "relative_path": "question_metadata/r0_00195.parquet",
3050
+ "rows": 5000
3051
+ },
3052
+ {
3053
+ "category": "question_metadata",
3054
+ "language": "html",
3055
+ "relative_path": "question_metadata/r0_00196.parquet",
3056
+ "rows": 5000
3057
+ },
3058
+ {
3059
+ "category": "question_metadata",
3060
+ "language": "html",
3061
+ "relative_path": "question_metadata/r0_00197.parquet",
3062
+ "rows": 5000
3063
+ },
3064
+ {
3065
+ "category": "question_metadata",
3066
+ "language": "html",
3067
+ "relative_path": "question_metadata/r0_00198.parquet",
3068
+ "rows": 5000
3069
+ },
3070
+ {
3071
+ "category": "question_metadata",
3072
+ "language": "html",
3073
+ "relative_path": "question_metadata/r0_00199.parquet",
3074
+ "rows": 5000
3075
+ },
3076
+ {
3077
+ "category": "question_metadata",
3078
+ "language": "html",
3079
+ "relative_path": "question_metadata/r0_00200.parquet",
3080
+ "rows": 5000
3081
+ },
3082
+ {
3083
+ "category": "question_metadata",
3084
+ "language": "html",
3085
+ "relative_path": "question_metadata/r0_00201.parquet",
3086
+ "rows": 5000
3087
+ },
3088
+ {
3089
+ "category": "question_metadata",
3090
+ "language": "html",
3091
+ "relative_path": "question_metadata/r0_00202.parquet",
3092
+ "rows": 5000
3093
+ },
3094
+ {
3095
+ "category": "question_metadata",
3096
+ "language": "html",
3097
+ "relative_path": "question_metadata/r0_00203.parquet",
3098
+ "rows": 5000
3099
+ },
3100
+ {
3101
+ "category": "question_metadata",
3102
+ "language": "html",
3103
+ "relative_path": "question_metadata/r0_00204.parquet",
3104
+ "rows": 5000
3105
+ },
3106
+ {
3107
+ "category": "question_metadata",
3108
+ "language": "html",
3109
+ "relative_path": "question_metadata/r0_00205.parquet",
3110
+ "rows": 5000
3111
+ },
3112
+ {
3113
+ "category": "question_metadata",
3114
+ "language": "html",
3115
+ "relative_path": "question_metadata/r0_00206.parquet",
3116
+ "rows": 5000
3117
+ },
3118
+ {
3119
+ "category": "question_metadata",
3120
+ "language": "html",
3121
+ "relative_path": "question_metadata/r0_00207.parquet",
3122
+ "rows": 5000
3123
+ },
3124
+ {
3125
+ "category": "question_metadata",
3126
+ "language": "html",
3127
+ "relative_path": "question_metadata/r0_00208.parquet",
3128
+ "rows": 5000
3129
+ },
3130
+ {
3131
+ "category": "question_metadata",
3132
+ "language": "html",
3133
+ "relative_path": "question_metadata/r0_00209.parquet",
3134
+ "rows": 5000
3135
+ },
3136
+ {
3137
+ "category": "question_metadata",
3138
+ "language": "html",
3139
+ "relative_path": "question_metadata/r0_00210.parquet",
3140
+ "rows": 5000
3141
+ },
3142
+ {
3143
+ "category": "question_metadata",
3144
+ "language": "html",
3145
+ "relative_path": "question_metadata/r0_00211.parquet",
3146
+ "rows": 5000
3147
+ },
3148
+ {
3149
+ "category": "question_metadata",
3150
+ "language": "html",
3151
+ "relative_path": "question_metadata/r0_00212.parquet",
3152
+ "rows": 5000
3153
+ },
3154
+ {
3155
+ "category": "question_metadata",
3156
+ "language": "html",
3157
+ "relative_path": "question_metadata/r0_00213.parquet",
3158
+ "rows": 5000
3159
+ },
3160
+ {
3161
+ "category": "question_metadata",
3162
+ "language": "html",
3163
+ "relative_path": "question_metadata/r0_00214.parquet",
3164
+ "rows": 5000
3165
+ },
3166
+ {
3167
+ "category": "question_metadata",
3168
+ "language": "html",
3169
+ "relative_path": "question_metadata/r0_00215.parquet",
3170
+ "rows": 5000
3171
+ },
3172
+ {
3173
+ "category": "question_metadata",
3174
+ "language": "html",
3175
+ "relative_path": "question_metadata/r0_00216.parquet",
3176
+ "rows": 5000
3177
+ },
3178
+ {
3179
+ "category": "question_metadata",
3180
+ "language": "html",
3181
+ "relative_path": "question_metadata/r0_00217.parquet",
3182
+ "rows": 5000
3183
+ },
3184
+ {
3185
+ "category": "question_metadata",
3186
+ "language": "html",
3187
+ "relative_path": "question_metadata/r0_00218.parquet",
3188
+ "rows": 5000
3189
+ },
3190
+ {
3191
+ "category": "question_metadata",
3192
+ "language": "html",
3193
+ "relative_path": "question_metadata/r0_00219.parquet",
3194
+ "rows": 5000
3195
+ },
3196
+ {
3197
+ "category": "question_metadata",
3198
+ "language": "html",
3199
+ "relative_path": "question_metadata/r0_00220.parquet",
3200
+ "rows": 5000
3201
+ },
3202
+ {
3203
+ "category": "question_metadata",
3204
+ "language": "html",
3205
+ "relative_path": "question_metadata/r0_00221.parquet",
3206
+ "rows": 5000
3207
+ },
3208
+ {
3209
+ "category": "question_metadata",
3210
+ "language": "html",
3211
+ "relative_path": "question_metadata/r0_00222.parquet",
3212
+ "rows": 5000
3213
+ },
3214
+ {
3215
+ "category": "question_metadata",
3216
+ "language": "html",
3217
+ "relative_path": "question_metadata/r0_00223.parquet",
3218
+ "rows": 5000
3219
+ },
3220
+ {
3221
+ "category": "question_metadata",
3222
+ "language": "html",
3223
+ "relative_path": "question_metadata/r0_00224.parquet",
3224
+ "rows": 5000
3225
+ },
3226
+ {
3227
+ "category": "question_metadata",
3228
+ "language": "html",
3229
+ "relative_path": "question_metadata/r0_00225.parquet",
3230
+ "rows": 5000
3231
+ },
3232
+ {
3233
+ "category": "question_metadata",
3234
+ "language": "html",
3235
+ "relative_path": "question_metadata/r0_00226.parquet",
3236
+ "rows": 5000
3237
+ },
3238
+ {
3239
+ "category": "question_metadata",
3240
+ "language": "html",
3241
+ "relative_path": "question_metadata/r0_00227.parquet",
3242
+ "rows": 5000
3243
+ },
3244
+ {
3245
+ "category": "question_metadata",
3246
+ "language": "html",
3247
+ "relative_path": "question_metadata/r0_00228.parquet",
3248
+ "rows": 5000
3249
+ },
3250
+ {
3251
+ "category": "question_metadata",
3252
+ "language": "html",
3253
+ "relative_path": "question_metadata/r0_00229.parquet",
3254
+ "rows": 5000
3255
+ },
3256
+ {
3257
+ "category": "question_metadata",
3258
+ "language": "html",
3259
+ "relative_path": "question_metadata/r0_00230.parquet",
3260
+ "rows": 5000
3261
+ },
3262
+ {
3263
+ "category": "question_metadata",
3264
+ "language": "html",
3265
+ "relative_path": "question_metadata/r0_00231.parquet",
3266
+ "rows": 5000
3267
+ },
3268
+ {
3269
+ "category": "question_metadata",
3270
+ "language": "html",
3271
+ "relative_path": "question_metadata/r0_00232.parquet",
3272
+ "rows": 5000
3273
+ },
3274
+ {
3275
+ "category": "question_metadata",
3276
+ "language": "html",
3277
+ "relative_path": "question_metadata/r0_00233.parquet",
3278
+ "rows": 5000
3279
+ },
3280
+ {
3281
+ "category": "question_metadata",
3282
+ "language": "html",
3283
+ "relative_path": "question_metadata/r0_00234.parquet",
3284
+ "rows": 5000
3285
+ },
3286
+ {
3287
+ "category": "question_metadata",
3288
+ "language": "html",
3289
+ "relative_path": "question_metadata/r0_00235.parquet",
3290
+ "rows": 5000
3291
+ },
3292
+ {
3293
+ "category": "question_metadata",
3294
+ "language": "html",
3295
+ "relative_path": "question_metadata/r0_00236.parquet",
3296
+ "rows": 5000
3297
+ },
3298
+ {
3299
+ "category": "question_metadata",
3300
+ "language": "html",
3301
+ "relative_path": "question_metadata/r0_00237.parquet",
3302
+ "rows": 3690
3303
+ }
3304
+ ],
3305
+ "language": "html",
3306
+ "source": "vector_dataset_language_folder",
3307
+ "total_rows": 2747868
3308
+ }