nagur-shareef-shaik commited on
Commit
cd6f412
·
1 Parent(s): 18818bd

Add Application Code

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .DS_Store +0 -0
  2. .env +18 -0
  3. .gitattributes +7 -0
  4. Dockerfile +54 -10
  5. LICENSE +21 -0
  6. data/.DS_Store +0 -0
  7. data/checkpoints.db +0 -0
  8. data/raw/source_1000_files_zip_hhs-hcc-software-v0724141d2.zip.html +3 -0
  9. data/raw/source_1001_files_document_cy2025-diy-tables-04092025.xlsx.html +3 -0
  10. data/raw/source_1002_files_zip_hhs-hcc-software-v0724141d3.zip.html +3 -0
  11. data/raw/source_1003_files_document_requirements-related-mhpaea-proposed-rules-updated.pdf-0.html +3 -0
  12. data/raw/source_1004_cciio_resources_regulations-and-guidance_downloads_state-rating-requirements-disclosure-form.docx.html +3 -0
  13. data/raw/source_1005_media_401561.html +3 -0
  14. data/raw/source_1006_media_188261.html +3 -0
  15. data/raw/source_1007_media_396306.html +3 -0
  16. data/raw/source_1008_media_95881.html +3 -0
  17. data/raw/source_1009_media_344121.html +3 -0
  18. data/raw/source_100_archive.html +3 -0
  19. data/raw/source_1010_media_396301.html +3 -0
  20. data/raw/source_1011_media_456376.html +3 -0
  21. data/raw/source_1012_media_465281.html +3 -0
  22. data/raw/source_1013_media_468961.html +3 -0
  23. data/raw/source_1014_cciio_resources_regulations-and-guidance_downloads_final-rate-review-bulletin-for-cy2021.html +3 -0
  24. data/raw/source_1015_cciio_resources_regulations-and-guidance_downloads_draft-rate-review-bulletin-for-cy2022.html +3 -0
  25. data/raw/source_1016_media_469996.html +3 -0
  26. data/raw/source_1017_node_169881.html +3 -0
  27. data/raw/source_1018_about-cms_web-policies-important-links_about-website.html +3 -0
  28. data/raw/source_1019_about-cms_web-policies-important-links_about-website_link-to-us.html +3 -0
  29. data/raw/source_101_privacy.html +3 -0
  30. data/raw/source_1020_about-cms_web-policies-important-links_about-website_cms-hhs-policy-transition-internet-protocol-version-6-ipv6.html +3 -0
  31. data/raw/source_1021_www.medicare.gov.html +3 -0
  32. data/raw/source_1022_account_login.html +3 -0
  33. data/raw/source_1023_basics_get-started-with-medicare.html +3 -0
  34. data/raw/source_1024_plan-compare.html +3 -0
  35. data/raw/source_1025_care-compare.html +3 -0
  36. data/raw/source_1026_talk-to-someone.html +3 -0
  37. data/raw/source_1027_go-digital.html +3 -0
  38. data/raw/source_1028_health-drug-plans_part-d_basics_costs.html +3 -0
  39. data/raw/source_1029_about-us_accessibility-nondiscrimination-notice.html +3 -0
  40. data/raw/source_102_www.healthcare.gov.html +3 -0
  41. data/raw/source_1030_privacy-policy.html +3 -0
  42. data/raw/source_1031_basics.html +3 -0
  43. data/raw/source_1032_health-drug-plans.html +3 -0
  44. data/raw/source_1033_health-drug-plans_part-d.html +3 -0
  45. data/raw/source_1034_providers-services.html +3 -0
  46. data/raw/source_1035_coverage.html +3 -0
  47. data/raw/source_1036_sitemap.html +3 -0
  48. data/raw/source_1037_medical-equipment-suppliers.html +3 -0
  49. data/raw/source_1038_medigap-supplemental-insurance-plans.html +3 -0
  50. data/raw/source_1039_publications.html +3 -0
.DS_Store ADDED
Binary file (6.15 kB). View file
 
.env ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Groq API Key for LLM access
2
+ GROQ_API_KEY="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"
3
+
4
+ # Google Gemini API Key
5
+ # GOOGLE_API_KEY="AIzaSyAtXTM4efMuuMmOwtx-BXJ9ENTw9-ptnZ8"
6
+ GOOGLE_API_KEY="AIzaSyBff2coOs1FFBy6hXcs0BBvSd288e9qpWk"
7
+ # GOOGLE_API_KEY="AIzaSyAvdaXA-4MlY-y_4mKU1_QMjQEqO0Z4fLE"
8
+
9
+ # Tavily API Key for web search
10
+ TAVILY_API_KEY="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"
11
+
12
+ # Secret key for JWT token encoding
13
+ JWT_SECRET_KEY="ghs@195L"
14
+ JWT_ALGORITHM="HS256"
15
+ ACCESS_TOKEN_EXPIRE_MINUTES=30
16
+
17
+ # Logging Configuration
18
+ LOG_LEVEL="INFO"
.gitattributes CHANGED
@@ -33,3 +33,10 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ *.db-wal filter=lfs diff=lfs merge=lfs -text
37
+ *.db-shm filter=lfs diff=lfs merge=lfs -text
38
+ *.sqlite3 filter=lfs diff=lfs merge=lfs -text
39
+ *.db filter=lfs diff=lfs merge=lfs -text
40
+ *.png filter=lfs diff=lfs merge=lfs -text
41
+ *.html filter=lfs diff=lfs merge=lfs -text
42
+ *.pdf filter=lfs diff=lfs merge=lfs -text
Dockerfile CHANGED
@@ -1,21 +1,65 @@
1
- FROM python:3.9-slim
 
 
 
 
2
 
 
3
  WORKDIR /app
4
 
5
- RUN apt-get update && apt-get install -y \
6
- build-essential \
7
- curl \
8
- software-properties-common \
9
- git \
10
- && rm -rf /var/lib/apt/lists/*
11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  COPY requirements.txt ./
13
- COPY src/ ./src/
14
 
15
  RUN pip3 install -r requirements.txt
16
 
17
- EXPOSE 8501
 
 
 
 
 
 
18
 
 
 
19
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
20
 
21
- ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
 
 
 
 
 
1
+ ###############################################################################
2
+ # --------------------------- Stage 1: base image -------------------------- #
3
+ ###############################################################################
4
+ # Pin the exact digest for reproducibility and give this stage the alias `base`
5
+ FROM python:3.10-slim
6
 
7
+ # --- Set Working Directory ---
8
  WORKDIR /app
9
 
10
+ ###############################################################################
11
+ # --------------------------- Stage 2: pipfreeze --------------------------- #
12
+ ###############################################################################
13
+ # Capture the *exact* package versions present in the base layer for auditing.
14
+ FROM base AS pipfreeze
15
+ RUN pip freeze > /tmp/freeze.txt
16
 
17
+ ###############################################################################
18
+ # --------------------------- Stage 3: final image -------------------------- #
19
+ ###############################################################################
20
+ FROM base
21
+
22
+ # Copy the entire filesystem from the `base` stage and fix ownership to our non-root user.
23
+ COPY --chown=1000:1000 --from=base / /
24
+
25
+ # --- Install Project-Specific Requirements ---
26
+ # Use BuildKit’s inline `--mount` to copy requirements.txt.
27
+ # This is highly efficient as it avoids busting the cache if only source code changes.
28
+ RUN --mount=target=/app/requirements.txt,source=requirements.txt \
29
+ pip install --no-cache-dir -r /app/requirements.txt
30
+
31
+ # --- Copy Application Code ---
32
+ # Copy all our application code into the container.
33
+ # Using --link can speed up builds on filesystems that support it.
34
+ COPY --link --chown=1000:1000 ./insucompass ./insucompass
35
+ COPY --link --chown=1000:1000 ./scripts ./scripts
36
+
37
+ # --- Create Writable Data Directory ---
38
+ # This is crucial for ChromaDB and the LangGraph checkpointer.
39
+ # We create it and give ownership to our non-root user.
40
+ COPY --link --chown=1000:1000 ./data ./data
41
+ RUN mkdir -p /data && chown -R 1000:1000 /data
42
+
43
+ # --- Copy the package lockfile for debugging/auditing ---
44
+ COPY --from=pipfreeze --link --chown=1000:1000 /tmp/freeze.txt /tmp/freeze.txt
45
  COPY requirements.txt ./
 
46
 
47
  RUN pip3 install -r requirements.txt
48
 
49
+ # --- Switch to the non-root user for runtime ---
50
+ # This is a security best practice.
51
+ USER 1000
52
+
53
+ # --- Expose Port ---
54
+ # Tell Docker that the container will listen on port 8000 at runtime.
55
+ EXPOSE 8000
56
 
57
+ # --- Health Check ---
58
+ # A simple check to ensure the FastAPI root endpoint is responsive.
59
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
60
 
61
+
62
+ # --- Run Command ---
63
+ # The command to execute when the container starts.
64
+ # --host 0.0.0.0 is ESSENTIAL to make the server accessible from outside the container.
65
+ CMD ["uvicorn", "insucompass.main:app", "--host", "0.0.0.0", "--port", "8000"]
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Shaik Nagur Shareef
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/.DS_Store ADDED
Binary file (6.15 kB). View file
 
data/checkpoints.db ADDED
File without changes
data/raw/source_1000_files_zip_hhs-hcc-software-v0724141d2.zip.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6c3d0589179ea5a1c879281917422384bfc6604498b33342726ac180819a229
3
+ size 344
data/raw/source_1001_files_document_cy2025-diy-tables-04092025.xlsx.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6c3d0589179ea5a1c879281917422384bfc6604498b33342726ac180819a229
3
+ size 344
data/raw/source_1002_files_zip_hhs-hcc-software-v0724141d3.zip.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6c3d0589179ea5a1c879281917422384bfc6604498b33342726ac180819a229
3
+ size 344
data/raw/source_1003_files_document_requirements-related-mhpaea-proposed-rules-updated.pdf-0.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09b0cc6fc56c442f99b55f545202354a13d4bd667d3af164b88d60dc18d12b9b
3
+ size 344
data/raw/source_1004_cciio_resources_regulations-and-guidance_downloads_state-rating-requirements-disclosure-form.docx.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c5d49aebf986c5c6b8e2208af6a491677b9600f3aa7837fd902f8b73c4efb03
3
+ size 344
data/raw/source_1005_media_401561.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acd107d9ef53c092078e97ad2dd3dc310b6372bea1c1fc3caef80f67843b43dd
3
+ size 344
data/raw/source_1006_media_188261.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ffc0611c28b4ae5f05e08d930329c108b109a32769d537a9d268b7dcb8049e0
3
+ size 344
data/raw/source_1007_media_396306.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f821e1d6333abae9c685e38645e193771c75f965c10b6a1f4ff808fe33706d3
3
+ size 344
data/raw/source_1008_media_95881.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14e4748443ddf9dcb381cd4085c093140aa77f89476efdf629eabb1078b71baf
3
+ size 344
data/raw/source_1009_media_344121.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b73b7f00d5e4152c985500e5d8dcc2f693928e31298d1e62a993fdaebdc8cd5f
3
+ size 344
data/raw/source_100_archive.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08df0d3f89a1f17243332add28d5f6eed52c2b4c008d36ce6e09ab8d0d1d1803
3
+ size 372013
data/raw/source_1010_media_396301.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48fdb03157440785efbabe6024d1f39e731592b7792a9df4feee230579ce6597
3
+ size 344
data/raw/source_1011_media_456376.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1d053a0c27ebd21c43b4511ac97673c27800cec1c66d84db98aa470fc52ab9d
3
+ size 344
data/raw/source_1012_media_465281.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:979027c8a6b85677a0e3524a48443552d5957642f2f1f831922bd066952967a7
3
+ size 344
data/raw/source_1013_media_468961.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46615f2da806952f1e284f093eb960a138ede35695888f9ca253b2087841356d
3
+ size 344
data/raw/source_1014_cciio_resources_regulations-and-guidance_downloads_final-rate-review-bulletin-for-cy2021.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b680c94d02638c2485758f4e8b7954aa8cdf0fc0f5dbd3e8ad25d9a4892b4a41
3
+ size 344
data/raw/source_1015_cciio_resources_regulations-and-guidance_downloads_draft-rate-review-bulletin-for-cy2022.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:692717e79e35765852048c3f3e4e5275127971b798941ba35b1ee629167806bb
3
+ size 344
data/raw/source_1016_media_469996.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6ecd3cd8924dea7f063268674609e56a061f245ebfb08cd06b550727cfc4bf0
3
+ size 344
data/raw/source_1017_node_169881.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:856ba8e6c2f2c3293a8540acf65bdeb086fcab91501eb115185ff6e1b1c495ae
3
+ size 228572
data/raw/source_1018_about-cms_web-policies-important-links_about-website.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:235a82ca08d20969e6ec1b91668eb8a5816344440fbe0d63fa38a7ac6ec4c648
3
+ size 225619
data/raw/source_1019_about-cms_web-policies-important-links_about-website_link-to-us.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4030f0d53db957edcb7e144cbb61c49cb5164c0955ce993d7e29d6743091418
3
+ size 225190
data/raw/source_101_privacy.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:340c594a79835a7da595d4f368d910aaf707b5e2f40d575d603084ad93450f86
3
+ size 431937
data/raw/source_1020_about-cms_web-policies-important-links_about-website_cms-hhs-policy-transition-internet-protocol-version-6-ipv6.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73207b8e194a20a758780c047e8b0411ab3e32230ff724472f0f5411d51b060a
3
+ size 224641
data/raw/source_1021_www.medicare.gov.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:810db6715b162299e66b0d8e5f3a061997e684d7fb73283100d14e9674db0f37
3
+ size 121511
data/raw/source_1022_account_login.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb326dbae625b55b7cafaed9f900c2ea3421c5fcdbd01d46307da237de9c4b80
3
+ size 87002
data/raw/source_1023_basics_get-started-with-medicare.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cb3881f84d35edfe4d30fcc1c93e3d0218fc0d53ddc8e67b5dbba8d1d24b0a5
3
+ size 125126
data/raw/source_1024_plan-compare.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6eb03afbe30e5fc3043108aba216f8b92c6628515b25442924890ad2af91c7c
3
+ size 96230
data/raw/source_1025_care-compare.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:169116e6563e3a8d12ce1b6a0413dce1f1d8b288becc7f15c746aa5b6eda7647
3
+ size 189584
data/raw/source_1026_talk-to-someone.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0523a16613752d630a1fb1c977421b49dfc8ff0fc9378f58c5e930ee5e89a31f
3
+ size 114971
data/raw/source_1027_go-digital.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40f8ec60664d3ca3567ea0afc046cd9a4531eb278699053df33b3241eb6249f0
3
+ size 111535
data/raw/source_1028_health-drug-plans_part-d_basics_costs.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a56dae2563f922687dba892338cec94be1c3cd2b7985321da4b38051a841f7d3
3
+ size 141479
data/raw/source_1029_about-us_accessibility-nondiscrimination-notice.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:451a78b87608958e598d9c3831781aa6abf032b30418fba8f1332943dc714a1b
3
+ size 119328
data/raw/source_102_www.healthcare.gov.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4c79e729f04a54c97afb125f23373429c8ee5ff88a2c35d8ecd3c34347ddf98
3
+ size 378403
data/raw/source_1030_privacy-policy.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55e1f448dc1a57784d36d6eba707584cbbccee511a28c49d1d48729b732fc536
3
+ size 140958
data/raw/source_1031_basics.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ca61233512920ea4285e4c8afdcadab5428f55289e2977372e9b29c4745affb
3
+ size 113743
data/raw/source_1032_health-drug-plans.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a229e2b80ca055752e0d0f09c911cc452c54f597ef406ffcee101ac66bff3c2
3
+ size 110972
data/raw/source_1033_health-drug-plans_part-d.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7abff0f530e480c46257414377f76e76b20f87f29ba621e0fb038d4b1b83e99
3
+ size 114267
data/raw/source_1034_providers-services.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2637bc81366073a1b7848590d0fb4f64d5a44548dca8e9acc3170e219e4a1a40
3
+ size 109074
data/raw/source_1035_coverage.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b69cadcdd725dc06007cecfc070ce20cee10ec553971e02de531191941457b6
3
+ size 108066
data/raw/source_1036_sitemap.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:015e1a61783c3b51b7be98342e067a5bd1b3ef540797bfcb417afd240614b038
3
+ size 135048
data/raw/source_1037_medical-equipment-suppliers.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0740f04a4a0db0ca93d57f75eec6aa1950b450c074ccfa7bd6c975fb33ccd144
3
+ size 37046
data/raw/source_1038_medigap-supplemental-insurance-plans.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:392781a6d1d8be5f05a62fa4992a3149c7a697f458b430d2fa0386d5ed2f2f5a
3
+ size 143269
data/raw/source_1039_publications.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d69c2ac18df5c9851445077f34496bba0959cec6a93591a4db478d54008955de
3
+ size 123444