diff --git a/.dockerignore b/.dockerignore
index 2607305..1920e5f 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -1,28 +1,12 @@
-# Build artifacts
-target/
-*.rs.bk
-
-# Version control
-.git/
+.git
.gitignore
-
-# IDE
-.idea/
-.vscode/
-*.swp
-
-# CI
-.github/
-.forgejo/
-
-# Documentation
*.md
-!README.md
-
-# Tests (keep for build cache, exclude from runtime)
-tests/
-fixtures/
-
-# Logs
-log/
-*.log
+__pycache__
+*.pyc
+.env.local
+.venv
+venv/
+.pytest_cache
+.coverage
+htmlcov
+.DS_Store
diff --git a/.gitea/workflows/build-push.yml b/.gitea/workflows/build-push.yml
deleted file mode 100644
index 22d58b5..0000000
--- a/.gitea/workflows/build-push.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-name: Build & Push Memory Image
-
-on:
- push:
- branches:
- - main
-
-jobs:
- build-push:
- runs-on: rust
- env:
- REGISTRY: forgejo.riotpiao.com
- IMAGE: forgejo.riotpiao.com/rock/poimen-memory
- steps:
- - name: Checkout code
- uses: actions/checkout@v4
-
- - name: Get short SHA
- id: sha
- run: |
- SHORT_SHA=$(git rev-parse --short HEAD)
- echo "short_sha=${SHORT_SHA}" >> $GITHUB_OUTPUT
-
- - name: Registry login
- run: |
- echo "${REGISTRY_TOKEN}" | docker login "${REGISTRY}" \
- --username "${REGISTRY_USER}" --password-stdin
- env:
- REGISTRY_USER: ${{ secrets.FORGEJO_REGISTRY_USER }}
- REGISTRY_TOKEN: ${{ secrets.FORGEJO_REGISTRY_TOKEN }}
-
- - name: Build image
- run: |
- docker build --no-cache \
- -t "${IMAGE}:${{ steps.sha.outputs.short_sha }}" \
- -t "${IMAGE}:latest" \
- .
-
- - name: Push image
- run: |
- docker push "${IMAGE}:${{ steps.sha.outputs.short_sha }}"
- docker push "${IMAGE}:latest"
- echo "✓ Image pushed: ${IMAGE}:${{ steps.sha.outputs.short_sha }}"
diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml
deleted file mode 100644
index 7b19e39..0000000
--- a/.gitea/workflows/build.yaml
+++ /dev/null
@@ -1,80 +0,0 @@
-name: Build and Push
-
-on:
- push:
- branches: [main]
- pull_request:
- branches: [main]
-
-env:
- REGISTRY: forgejo.riotpiao.com
- IMAGE: forgejo.riotpiao.com/rock/poimen-memory
-
-jobs:
- test:
- name: Test
- runs-on: rust
- container: rust:1-bookworm
- steps:
- - name: Install node (required by JS-based actions)
- run: apt-get update && apt-get install -y --no-install-recommends nodejs
-
- - uses: actions/checkout@v4
-
- - name: Cache cargo
- uses: actions/cache@v4
- with:
- path: |
- ~/.cargo/registry
- ~/.cargo/git
- target
- key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
- restore-keys: |
- cargo-${{ runner.os }}-
-
- - name: Run tests
- run: cargo test --all
-
- build:
- name: Build and push image
- runs-on: golang
- needs: test
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
- container:
- image: docker:27-cli
- volumes:
- - /docker-certs/client:/docker-certs/client:ro
- env:
- DOCKER_HOST: tcp://localhost:2376
- DOCKER_TLS_VERIFY: "1"
- DOCKER_CERT_PATH: /docker-certs/client
- steps:
- - name: Install node (required by JS-based actions)
- run: apk add --no-cache nodejs git
-
- - uses: actions/checkout@v4
-
- - name: Get short SHA
- id: sha
- run: |
- SHORT_SHA=$(git rev-parse --short HEAD)
- echo "short_sha=${SHORT_SHA}" >> $GITHUB_OUTPUT
-
- - name: Registry login
- run: |
- echo "${REGISTRY_PAT}" | docker login "${REGISTRY}" \
- --username rock --password-stdin
- env:
- REGISTRY_PAT: ${{ secrets.REGISTRY_PAT }}
-
- - name: Build
- run: |
- docker build \
- -t "${IMAGE}:${{ steps.sha.outputs.short_sha }}" \
- -t "${IMAGE}:latest" \
- .
-
- - name: Push
- run: |
- docker push "${IMAGE}:${{ steps.sha.outputs.short_sha }}"
- docker push "${IMAGE}:latest"
diff --git a/fixtures/benchmarks/json-output.json b/fixtures/benchmarks/json-output.json
deleted file mode 100644
index 6e933e5..0000000
--- a/fixtures/benchmarks/json-output.json
+++ /dev/null
@@ -1,109 +0,0 @@
-{
- "events": [
- {
- "timestamp": "2024-08-20T12:00:00Z",
- "level": "ERROR",
- "message": "failed to connect to database",
- "context": {
- "service": "api-server",
- "instance": "pod-abc123",
- "error_code": "CONNECTION_TIMEOUT",
- "error_message": "connection refused after 5000ms",
- "stack_trace": "at Database.connect (src/db.rs:45)\nat Server.init (src/main.rs:123)",
- "attempt": 1,
- "max_attempts": 3
- }
- },
- {
- "timestamp": "2024-08-20T12:00:01Z",
- "level": "INFO",
- "message": "attempting reconnection strategy exponential_backoff",
- "context": {
- "service": "api-server",
- "instance": "pod-abc123",
- "strategy": "exponential_backoff",
- "initial_delay_ms": 100,
- "max_delay_ms": 30000,
- "backoff_multiplier": 2.0
- }
- },
- {
- "timestamp": "2024-08-20T12:00:02Z",
- "level": "DEBUG",
- "message": "opening new connection pool",
- "context": {
- "service": "api-server",
- "instance": "pod-abc123",
- "pool_size": 10,
- "min_idle": 2,
- "max_lifetime_seconds": 3600,
- "idle_timeout_seconds": 600
- }
- },
- {
- "timestamp": "2024-08-20T12:00:03Z",
- "level": "TRACE",
- "message": "acquiring connection from pool",
- "context": {
- "service": "api-server",
- "instance": "pod-abc123",
- "available_connections": 8,
- "waiting_requests": 0,
- "pool_stats": {
- "created": 10,
- "reused": 1234,
- "destroyed": 0
- }
- }
- },
- {
- "timestamp": "2024-08-20T12:00:04Z",
- "level": "DEBUG",
- "message": "connection timeout after 5000ms",
- "context": {
- "service": "api-server",
- "instance": "pod-abc123",
- "timeout_ms": 5000,
- "elapsed_ms": 5023,
- "reason": "no available connections"
- }
- },
- {
- "timestamp": "2024-08-20T12:00:05Z",
- "level": "ERROR",
- "message": "failed to connect to database",
- "context": {
- "service": "api-server",
- "instance": "pod-abc123",
- "error": "connection timeout",
- "details": {
- "host": "memory-db.poimen.svc.cluster.local",
- "port": 5432,
- "database": "memory",
- "username": "app_user"
- }
- }
- },
- {
- "timestamp": "2024-08-20T12:00:06Z",
- "level": "INFO",
- "message": "retrying with exponential backoff",
- "context": {
- "service": "api-server",
- "instance": "pod-abc123",
- "attempt": 1,
- "max_attempts": 3,
- "delay_ms": 100,
- "next_retry": "2024-08-20T12:00:06.100Z"
- }
- }
- ],
- "summary": {
- "total_events": 7,
- "errors": 2,
- "warnings": 0,
- "info": 2,
- "debug": 2,
- "trace": 1
- }
-}
diff --git a/fixtures/benchmarks/markdown-docs.txt b/fixtures/benchmarks/markdown-docs.txt
deleted file mode 100644
index 80d3a61..0000000
--- a/fixtures/benchmarks/markdown-docs.txt
+++ /dev/null
@@ -1,146 +0,0 @@
-# Poimen Memory System Architecture
-
-## Overview
-
-The Poimen Memory system is a distributed, multi-tier memory management platform designed for AI applications. It provides persistent storage, semantic search, and intelligent caching for conversations, logs, and structured data.
-
-## Core Components
-
-### 1. PostgreSQL with pgvector
-
-PostgreSQL serves as our primary data store with pgvector extension for semantic search. The system uses 768-dimensional embeddings generated by the nomic-embed-text-v2-moe model.
-
-Features:
-- HNSW indexes for fast approximate nearest neighbor search
-- Full ACID compliance with 2-node HA cluster
-- Automatic failover with 10-minute RTO
-- 10GB persistent volumes with daily backups
-
-### 2. OpenSearch Cluster
-
-OpenSearch provides full-text search and BM25 ranking. Documents are indexed with both raw text and preprocessed fields.
-
-Configuration:
-- 2-node cluster (1 master, 1 data)
-- 8GB heap per node
-- 20GB storage per node
-- Refresh interval: 10s
-- Index shards: 3, replicas: 1
-
-### 3. Memory Ingest Pipeline
-
-Records flow through a 4-stage pipeline:
-1. Source extraction (Pi sessions, Claude transcripts, doc corpus)
-2. Content routing (Magika ML classification)
-3. Type-specific compression (log, json, diff, text)
-4. Embedding generation and indexing
-
-### 4. Query Path (Hybrid Search)
-
-Queries use dual retrieval:
-- 60% pgvector semantic search (top-k nearest neighbors)
-- 40% OpenSearch BM25 ranking
-- Fusion via Reciprocal Rank Weighting (RRW)
-
-Results are re-ranked and deduplicated before LLM context window.
-
-## M3.8 Context Optimization
-
-The context optimizer runs at ingest time, improving data quality before embedding:
-
-### Compression Targets
-- Logs: 85-95% (remove timestamps, debug lines)
-- JSON: 70-90% (minify, remove verbose keys)
-- Text: 30-50% (remove markdown artifacts)
-- Diffs: 60-80% (remove context lines)
-
-### Benefits
-- Better pgvector embeddings (clean input = better semantic quality)
-- Better BM25 ranking (signal-rich text = stronger matches)
-- Reduced storage (lower bandwidth, faster queries)
-- All queries benefit (optimization happens once)
-
-## Performance Targets
-
-- Ingest latency: <1ms per record
-- Query latency: <100ms P95 (hybrid search)
-- Embedding generation: <500ms for 50-record batch
-- Indexing throughput: 1000+ records/sec
-- Search throughput: 100+ queries/sec
-
-## Monitoring & Observability
-
-### Metrics Exported
-
-Via Prometheus `/metrics` endpoint:
-- `m3_8_optimization_records_total` - records processed
-- `m3_8_optimization_compression_ratio` - overall compression %
-- `m3_8_optimization_compressor_ratio` - per-type compression
-- Query latency distribution (P50, P95, P99)
-- Embedding cache hit ratio
-
-### Logging
-
-Structured logs via tracing:
-- INFO: ingest completion, query execution, errors
-- DEBUG: compression stats, cache hits, routing decisions
-- TRACE: individual record processing
-
-## Deployment
-
-### Kubernetes
-
-Resources deployed in `poimen` namespace:
-- Deployment: memory-api (2 replicas)
-- StatefulSet: memory-db (PostgreSQL)
-- Deployment: opensearch (2 replicas)
-- ConfigMap: optimization settings
-- Secret: database credentials, API keys
-
-### Environment Variables
-
-- `MEM_CONTEXT_OPTIMIZER` - optimizer mode (on|off)
-- `MEM_COMPRESSION_TARGETS` - JSON targets per type
-- `MEM_CACHE_SIZE_MB` - compression cache size
-- `MEM_PROMETHEUS_ENABLED` - metrics export
-
-## Testing Strategy
-
-### Unit Tests (62 tests)
-- Individual compressor algorithms
-- Content routing accuracy
-- Cache behavior
-
-### Integration Tests (37 tests)
-- End-to-end ingest pipeline
-- Search quality on compressed content
-- Metrics collection accuracy
-
-### Benchmark Tests (16 tests)
-- Compression ratio validation
-- Query performance with/without optimization
-- Throughput and latency targets
-
-### Gate Tests (13 tests)
-- Safety assertions (no data loss)
-- Performance assertions (latency <3ms)
-- Quality assertions (compression targets met)
-
-## Roadmap
-
-### Current (M3.8)
-✅ Core optimizer (62 tests)
-✅ Ingest integration (5 tests)
-✅ Metrics & monitoring (7 tests)
-⏳ Benchmarks (16 tests)
-⏳ Gate verification (13 tests)
-
-### Next (M3.7.4-6)
-- Context endpoint (semantic + reference tiers)
-- Dual-write indexer (pgvector + OpenSearch)
-- Composition gate
-
-### Future (M4-M7)
-- Skill management
-- Source connectors (Obsidian, git)
-- Frontend React app
diff --git a/fixtures/benchmarks/mixed-logs.txt b/fixtures/benchmarks/mixed-logs.txt
deleted file mode 100644
index 81d8292..0000000
--- a/fixtures/benchmarks/mixed-logs.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-2024-08-20T12:00:00Z ERROR failed to connect to database
-2024-08-20T12:00:01Z INFO attempting reconnection strategy exponential_backoff
-2024-08-20T12:00:02Z DEBUG opening new connection pool size=10
-2024-08-20T12:00:03Z TRACE acquiring connection from pool
-2024-08-20T12:00:04Z DEBUG connection timeout after 5000ms
-2024-08-20T12:00:05Z ERROR failed to connect to database: connection timeout
-2024-08-20T12:00:06Z INFO retrying with exponential backoff attempt=1 delay=100ms
-2024-08-20T12:00:07Z DEBUG creating new TCP socket
-2024-08-20T12:00:08Z TRACE establishing TLS handshake
-2024-08-20T12:00:09Z DEBUG TLS version: TLSv1.3 cipher: TLS_AES_256_GCM_SHA384
-2024-08-20T12:00:10Z INFO connection established successfully
-2024-08-20T12:00:11Z DEBUG setting connection parameters max_connections=50
-2024-08-20T12:00:12Z TRACE executing connection setup queries
-2024-08-20T12:00:13Z DEBUG query: SELECT version() -> PostgreSQL 15.3
-2024-08-20T12:00:14Z INFO database initialization complete version=15.3
-2024-08-20T12:00:15Z DEBUG running schema migrations
-2024-08-20T12:00:16Z TRACE loading migration 001_init_schema.sql
-2024-08-20T12:00:17Z INFO applied migration 001_init_schema
-2024-08-20T12:00:18Z TRACE loading migration 002_add_indices.sql
-2024-08-20T12:00:19Z INFO applied migration 002_add_indices
-2024-08-20T12:00:20Z DEBUG creating index on chunks(embedding_id)
-2024-08-20T12:00:21Z TRACE index creation started
-2024-08-20T12:00:22Z DEBUG index chunks_embedding_idx created in 1234ms
-2024-08-20T12:00:23Z INFO all migrations complete
-2024-08-20T12:00:24Z DEBUG starting http server on 0.0.0.0:8080
-2024-08-20T12:00:25Z INFO listening on 0.0.0.0:8080
-2024-08-20T12:00:26Z TRACE handler registered: GET /health
-2024-08-20T12:00:27Z DEBUG handler registered: POST /memory/ingest
-2024-08-20T12:00:28Z TRACE handler registered: GET /memory/query
-2024-08-20T12:00:29Z INFO http server ready
-2024-08-20T12:00:30Z TRACE incoming request GET /health from 127.0.0.1:54321
-2024-08-20T12:00:31Z DEBUG request id=abc123
-2024-08-20T12:00:32Z TRACE processing request
-2024-08-20T12:00:33Z DEBUG cache hit for /health
-2024-08-20T12:00:34Z INFO request completed in 1ms status=200
-2024-08-20T12:00:35Z TRACE response sent to 127.0.0.1:54321
-2024-08-20T12:00:36Z DEBUG connection kept-alive
-2024-08-20T12:00:37Z INFO active connections: 1
-2024-08-20T12:00:38Z DEBUG monitoring metrics every 60s
-2024-08-20T12:00:39Z TRACE collecting metrics
-2024-08-20T12:00:40Z DEBUG requests_total=1234 errors=0 latency_p99=45ms
-2024-08-20T12:00:41Z INFO metrics: requests=1234 errors=0 uptime=41s
-2024-08-20T12:00:42Z TRACE finalizing metrics snapshot
-2024-08-20T12:00:43Z DEBUG memory usage: heap=24.5MB resident=32MB
-2024-08-20T12:00:44Z INFO health check passed
diff --git a/fixtures/claude-transcript-small.jsonl b/fixtures/claude-transcript-small.jsonl
deleted file mode 100644
index 38b91ae..0000000
--- a/fixtures/claude-transcript-small.jsonl
+++ /dev/null
@@ -1,8 +0,0 @@
-{"type":"session","sessionId":"sess-001","cwd":"/tmp/my-project","gitBranch":"main","timestamp":"2024-08-20T12:00:00Z"}
-{"type":"user","message":{"content":"Hello Claude"},"timestamp":"2024-08-20T12:00:01Z"}
-{"type":"assistant","message":{"content":"Hi there!"},"timestamp":"2024-08-20T12:00:02Z"}
-{"type":"queue-operation","operation":"enqueue","timestamp":"2024-08-20T12:00:03Z"}
-{"type":"system","subtype":"api_error","message":{"content":"Rate limit exceeded"},"timestamp":"2024-08-20T12:00:04Z"}
-{"type":"attachment","name":"file.txt","timestamp":"2024-08-20T12:00:05Z"}
-{"type":"summary","summary":"Conversation about Claude API","timestamp":"2024-08-20T12:00:06Z"}
-{"type":"assistant","message":{"content":[{"type":"text","text":"More response"},{"type":"tool_use","tool_name":"read_file"}]},"timestamp":"2024-08-20T12:00:07Z"}
diff --git a/fixtures/expected/prompt-t1.txt b/fixtures/expected/prompt-t1.txt
deleted file mode 100644
index 4eb8a40..0000000
--- a/fixtures/expected/prompt-t1.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-You are presented with a problem, a section of an article that may contain the answer to the problem, and a previous memory. Please read the provided section carefully. You should reason about whether the new section contains useful information about the problem, and then update the memory with the new information that helps to answer the problem.
-Be sure to retain all relevant details from the previous memory while adding any new, useful information. You should also carefully judge whether you have collected enough information to answer the problem.
-You should reason about whether the new section contains useful information, what to update, and what to do next first between and .
-If the new section contains useful information about the problem, you should first generate yes. After that, update the new memory between and .
-If the new section does not contain useful information about the problem, you should first generate no. After that, you should keep the previous memory unchanged between and .
-In the end, if you haven't collected enough information for the problem, return continue. ONLY when enough information is collected, return end.
- What architectural decisions were made?
- No previous memory
- [User] Tell me about the architecture
-
-[Assistant] We use a microservices design
diff --git a/fixtures/expected/prompt-tn.txt b/fixtures/expected/prompt-tn.txt
deleted file mode 100644
index 758774c..0000000
--- a/fixtures/expected/prompt-tn.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-You are presented with a problem, a section of an article that may contain the answer to the problem, and a previous memory. Please read the provided section carefully. You should reason about whether the new section contains useful information about the problem, and then update the memory with the new information that helps to answer the problem.
-Be sure to retain all relevant details from the previous memory while adding any new, useful information. You should also carefully judge whether you have collected enough information to answer the problem.
-You should reason about whether the new section contains useful information, what to update, and what to do next first between and .
-If the new section contains useful information about the problem, you should first generate yes. After that, update the new memory between and .
-If the new section does not contain useful information about the problem, you should first generate no. After that, you should keep the previous memory unchanged between and .
-In the end, if you haven't collected enough information for the problem, return continue. ONLY when enough information is collected, return end.
- What architectural decisions were made?
- We use a microservices design with REST APIs.
- [User] What about the database?
-
-[Assistant] We chose PostgreSQL for primary storage.
diff --git a/fixtures/failures/cargo-different.txt b/fixtures/failures/cargo-different.txt
deleted file mode 100644
index 0ce4a1d..0000000
--- a/fixtures/failures/cargo-different.txt
+++ /dev/null
@@ -1,12 +0,0 @@
- Compiling mem-core v0.1.0 (/home/runner/work/Poimen/memory/crates/mem-core)
-error[E0433]: cannot find function `extract` in this scope
- --> crates/mem-core/src/lesson.rs:456:23
- |
-456 | let sig = extract(&self.output)?;
- | ^^^^^^^ not found in this scope
- |
-help: consider importing this function
- |
-456 | use crate::extract;
-
-error: could not compile `mem-core` due to 1 previous error
diff --git a/fixtures/failures/cargo-run-a.txt b/fixtures/failures/cargo-run-a.txt
deleted file mode 100644
index 20fbb9d..0000000
--- a/fixtures/failures/cargo-run-a.txt
+++ /dev/null
@@ -1,12 +0,0 @@
- Compiling mem-cli v0.1.0 (/home/runner/work/Poimen/memory/crates/mem-cli)
-error[E0599]: no method named `unwrap_or` found for struct `Result` in this scope
- --> crates/mem-cli/src/main.rs:456:78
- |
-456 | let database_url = database_url.unwrap_or_else(|| std::env::var("DATABASE_URL").unwrap_or_else(|_| "postgresql://app:poimen@localhost:5432/memory".to_string()));
- | ^^^^^^^^^^^^^^^ method not found in `Result`
- |
- = note: the following candidate methods were found:
- as core::ops::try::Try>::into_ok
- as core::ops::try::Try>::into_err
-
-error: could not compile `mem-cli` due to 1 previous error
diff --git a/fixtures/failures/cargo-run-b.txt b/fixtures/failures/cargo-run-b.txt
deleted file mode 100644
index 644403e..0000000
--- a/fixtures/failures/cargo-run-b.txt
+++ /dev/null
@@ -1,12 +0,0 @@
- Compiling mem-cli v0.1.0 (/home/ubuntu/workplace/Poimen/memory/crates/mem-cli)
-error[E0599]: no method named `unwrap_or` found for struct `Result` in this scope
- --> crates/mem-cli/src/main.rs:456:78
- |
-456 | let database_url = database_url.unwrap_or_else(|| std::env::var("DATABASE_URL").unwrap_or_else(|_| "postgresql://app:poimen@localhost:5432/memory".to_string()));
- | ^^^^^^^^^^^^^^^ method not found in `Result`
- |
- = note: the following candidate methods were found:
- as core::ops::try::Try>::into_ok
- as core::ops::try::Try>::into_err
-
-error: could not compile `mem-cli` due to 1 previous error
diff --git a/fixtures/failures/kubectl-apply-a.txt b/fixtures/failures/kubectl-apply-a.txt
deleted file mode 100644
index 6ebe4b4..0000000
--- a/fixtures/failures/kubectl-apply-a.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-2026-08-21T10:02:11.482Z
-kubectl apply -f /home/runner/work/Poimen/memory/k8s/app/opensearch.yaml
-error: error validating "/home/runner/work/Poimen/memory/k8s/app/opensearch.yaml": error validating data: [ValidationError(PersistentVolumeClaim.metadata): unknown field "storageClassName" in io.k8s.api.core.v1.ObjectMeta, ValidationError(PersistentVolumeClaim.metadata): unknown field "capacity" in io.k8s.api.core.v1.ObjectMeta]
-The server is rejecting the request. (422)
diff --git a/fixtures/failures/kubectl-apply-b.txt b/fixtures/failures/kubectl-apply-b.txt
deleted file mode 100644
index c694b1c..0000000
--- a/fixtures/failures/kubectl-apply-b.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-2026-08-22T14:32:45.923Z
-kubectl apply -f /home/ubuntu/workplace/Poimen/memory/k8s/app/opensearch.yaml
-error: error validating "/home/ubuntu/workplace/Poimen/memory/k8s/app/opensearch.yaml": error validating data: [ValidationError(PersistentVolumeClaim.metadata): unknown field "storageClassName" in io.k8s.api.core.v1.ObjectMeta, ValidationError(PersistentVolumeClaim.metadata): unknown field "capacity" in io.k8s.api.core.v1.ObjectMeta]
-The server is rejecting the request. (422)
diff --git a/fixtures/failures/kubectl-different.txt b/fixtures/failures/kubectl-different.txt
deleted file mode 100644
index 8ca137e..0000000
--- a/fixtures/failures/kubectl-different.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-2026-08-21T08:15:22.100Z
-kubectl port-forward -n poimen svc/opensearch 9200:9200
-error: error forwarding port after handlers/portforward: Timeout occured, check if the service/pod is running and accessible
diff --git a/fixtures/failures/npm-different.txt b/fixtures/failures/npm-different.txt
deleted file mode 100644
index 5cd7308..0000000
--- a/fixtures/failures/npm-different.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-> mem@1.0.0 test
-> jest --coverage
-
-FAIL src/utils.test.ts
- ● Test suite failed to compile
-
- TypeError: Cannot find module 'typescript'
- at Function.Module._load (internal/modules/require.js:497:11)
- at Module.load (internal/modules/require.js:387:81)
- at Object. (/home/runner/work/Poimen/memory/src/setup.ts:1:1)
-
-npm ERR! code ELIFECYCLE
-npm ERR! errno 1
-npm ERR! mem@1.0.0 test: `jest --coverage`
-npm ERR! Exit status 1
-npm ERR!
-npm ERR! Failed at the mem@1.0.0 test stage.
-npm ERR! This is probably not a problem with npm.
-npm ERR! There is likely additional logging output above.
-
-npm WARN optional optional dependency failed, continuing fsevents@2.3.2
diff --git a/fixtures/failures/npm-run-a.txt b/fixtures/failures/npm-run-a.txt
deleted file mode 100644
index e6e4747..0000000
--- a/fixtures/failures/npm-run-a.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-> mem@1.0.0 build
-> cargo build --release
-
-Compiling mem-cli v0.1.0 (/home/runner/work/Poimen/memory/crates/mem-cli)
-error: unresolved import `mem_core`
- --> crates/mem-cli/src/main.rs:15:5
- |
-15 | use mem_core::{Record, Provenance, Role};
- | ^^^^^^^^ could not find `mem_core` in `extern prelude`
- |
- = note: consider adding `extern crate mem_core` to use the crate
-
-error: could not compile `mem-cli` due to previous error
-
-npm ERR! code ELIFECYCLE
-npm ERR! errno 1
-npm ERR! mem@1.0.0 build: `cargo build --release`
-npm ERR! Exit status 1
-npm ERR!
-npm ERR! Failed at the mem@1.0.0 build stage.
-npm ERR! Make sure you have the latest version of node.js and npm installed.
-
-npm WARN optional optional dependency failed, continuing fsevents@2.3.2
diff --git a/fixtures/failures/npm-run-b.txt b/fixtures/failures/npm-run-b.txt
deleted file mode 100644
index 65029a4..0000000
--- a/fixtures/failures/npm-run-b.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-> mem@1.0.0 build
-> cargo build --release
-
-Compiling mem-cli v0.1.0 (/home/ubuntu/workspace/Poimen/memory/crates/mem-cli)
-error: unresolved import `mem_core`
- --> crates/mem-cli/src/main.rs:15:5
- |
-15 | use mem_core::{Record, Provenance, Role};
- | ^^^^^^^^ could not find `mem_core` in `extern prelude`
- |
- = note: consider adding `extern crate mem_core` to use the crate
-
-error: could not compile `mem-cli` due to previous error
-
-npm ERR! code ELIFECYCLE
-npm ERR! errno 1
-npm ERR! mem@1.0.0 build: `cargo build --release`
-npm ERR! Exit status 1
-npm ERR!
-npm ERR! Failed at the mem@1.0.0 build stage.
-npm ERR! Make sure you have the latest version of node.js and npm installed.
-
-npm WARN optional optional dependency failed, continuing fsevents@2.3.2
diff --git a/fixtures/gate-response-nested-think.txt b/fixtures/gate-response-nested-think.txt
deleted file mode 100644
index 7c59810..0000000
--- a/fixtures/gate-response-nested-think.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-
-First thought - this might be relevant
-
-
-Actually this is the real thinking - the chunk shows a bug fix.
-Let me extract the key information.
-
-no
-Previous memory unchanged
-continue
diff --git a/fixtures/gate-response-valid.txt b/fixtures/gate-response-valid.txt
deleted file mode 100644
index f6a156c..0000000
--- a/fixtures/gate-response-valid.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-
-This chunk contains useful information about architecture decisions.
-The user made a deliberate choice to use microservices.
-
-yes
-Architecture uses microservices with REST APIs and PostgreSQL backend. Decision made to scale horizontally.
-continue
diff --git a/fixtures/pi-session-small.jsonl b/fixtures/pi-session-small.jsonl
deleted file mode 100644
index 5f2d660..0000000
--- a/fixtures/pi-session-small.jsonl
+++ /dev/null
@@ -1,8 +0,0 @@
-{"type":"session","version":"1.0","id":"sess-001","timestamp":"2024-08-20T12:00:00Z","cwd":"/tmp/my-project"}
-{"type":"message","id":"msg-001","parentId":null,"timestamp":"2024-08-20T12:00:01Z","message":{"role":"user","content":"Hello","timestamp":"2024-08-20T12:00:01Z"}}
-{"type":"message","id":"msg-002","parentId":"msg-001","timestamp":"2024-08-20T12:00:02Z","message":{"role":"assistant","content":"Hi there","timestamp":"2024-08-20T12:00:02Z"}}
-{"type":"model_change","from":"gpt-4","to":"claude-3","timestamp":"2024-08-20T12:00:03Z"}
-{"type":"message","id":"msg-003","parentId":"msg-002","timestamp":"2024-08-20T12:00:04Z","message":{"role":"toolResult","content":{"type":"text","text":"Tool output here"},"timestamp":"2024-08-20T12:00:04Z"}}
-{"type":"compaction","timestamp":"2024-08-20T12:00:05Z","message":"Context compacted at turn 10"}
-{"type":"thinking_level_change","level":2,"timestamp":"2024-08-20T12:00:06Z"}
-{"type":"message","id":"msg-004","parentId":"msg-003","timestamp":"2024-08-20T12:00:07Z","message":{"role":"assistant","content":[{"type":"text","text":"Response text"},{"type":"tool_use","tool_name":"search"}],"timestamp":"2024-08-20T12:00:07Z"}}
diff --git a/fixtures/query-bad-charset.yaml b/fixtures/query-bad-charset.yaml
deleted file mode 100644
index eeae742..0000000
--- a/fixtures/query-bad-charset.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-project: poimen
-roots:
- - /Users/rockliang/workplace/Poimen/agent-rust
-sources: [pi, claude]
-queries:
- - id: infra/root-causes
- question: What infrastructure bugs were found?
-defaults:
- memory_budget: 1024
- chunk_tokens: 5000
diff --git a/fixtures/query-duplicate-id.yaml b/fixtures/query-duplicate-id.yaml
deleted file mode 100644
index f17919b..0000000
--- a/fixtures/query-duplicate-id.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-project: poimen
-roots:
- - /Users/rockliang/workplace/Poimen/agent-rust
-sources: [pi, claude]
-queries:
- - id: duplicate
- question: First one?
- - id: duplicate
- question: Second one?
-defaults:
- memory_budget: 1024
- chunk_tokens: 5000
diff --git a/fixtures/query-empty-question.yaml b/fixtures/query-empty-question.yaml
deleted file mode 100644
index b451021..0000000
--- a/fixtures/query-empty-question.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-project: poimen
-roots:
- - /Users/rockliang/workplace/Poimen/agent-rust
-sources: [pi, claude]
-queries:
- - id: architecture-decisions
- question: What architectural decisions were made?
- - id: empty-question
- question: ""
-defaults:
- memory_budget: 1024
- chunk_tokens: 5000
diff --git a/fixtures/query-valid.yaml b/fixtures/query-valid.yaml
deleted file mode 100644
index b5963d2..0000000
--- a/fixtures/query-valid.yaml
+++ /dev/null
@@ -1,16 +0,0 @@
-project: poimen
-roots:
- - /Users/rockliang/workplace/Poimen/agent-rust
-sources: [pi, claude]
-queries:
- - id: architecture-decisions
- question: What architectural decisions were made?
- - id: infra-root-causes
- question: What infrastructure bugs were found?
-synthesis:
- question: What is the current state?
- exit_gate: true
-defaults:
- memory_budget: 1024
- chunk_tokens: 5000
- exit_gate: false
diff --git a/fixtures/refcorpus/large_section.md b/fixtures/refcorpus/large_section.md
deleted file mode 100644
index 3730ea6..0000000
--- a/fixtures/refcorpus/large_section.md
+++ /dev/null
@@ -1,804 +0,0 @@
-# Very Large Section
-
-This section contains a lot of content that will need to be split into multiple chunks.
-
-This is paragraph 1 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 2 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 3 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 4 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 5 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 6 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 7 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 8 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 9 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 10 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 11 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 12 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 13 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 14 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 15 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 16 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 17 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 18 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 19 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 20 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 21 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 22 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 23 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 24 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 25 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 26 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 27 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 28 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 29 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 30 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 31 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 32 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 33 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 34 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 35 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 36 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 37 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 38 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 39 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 40 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 41 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 42 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 43 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 44 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 45 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 46 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 47 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 48 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 49 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 50 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 51 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 52 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 53 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 54 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 55 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 56 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 57 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 58 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 59 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 60 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 61 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 62 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 63 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 64 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 65 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 66 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 67 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 68 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 69 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 70 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 71 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 72 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 73 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 74 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 75 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 76 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 77 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 78 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 79 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 80 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 81 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 82 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 83 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 84 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 85 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 86 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 87 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 88 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 89 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 90 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 91 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 92 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 93 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 94 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 95 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 96 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 97 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 98 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 99 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 100 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 101 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 102 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 103 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 104 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 105 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 106 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 107 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 108 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 109 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 110 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 111 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 112 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 113 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 114 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 115 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 116 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 117 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 118 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 119 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 120 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 121 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 122 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 123 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 124 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 125 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 126 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 127 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 128 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 129 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 130 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 131 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 132 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 133 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 134 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 135 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 136 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 137 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 138 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 139 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 140 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 141 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 142 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 143 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 144 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 145 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 146 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 147 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 148 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 149 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 150 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 151 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 152 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 153 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 154 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 155 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 156 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 157 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 158 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 159 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 160 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 161 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 162 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 163 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 164 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 165 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 166 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 167 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 168 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 169 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 170 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 171 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 172 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 173 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 174 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 175 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 176 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 177 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 178 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 179 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 180 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 181 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 182 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 183 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 184 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 185 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 186 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 187 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 188 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 189 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 190 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 191 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 192 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 193 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 194 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 195 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 196 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 197 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 198 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 199 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 200 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 201 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 202 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 203 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 204 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 205 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 206 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 207 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 208 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 209 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 210 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 211 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 212 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 213 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 214 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 215 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 216 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 217 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 218 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 219 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 220 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 221 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 222 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 223 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 224 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 225 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 226 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 227 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 228 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 229 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 230 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 231 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 232 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 233 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 234 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 235 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 236 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 237 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 238 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 239 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 240 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 241 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 242 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 243 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 244 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 245 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 246 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 247 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 248 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 249 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 250 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 251 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 252 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 253 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 254 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 255 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 256 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 257 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 258 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 259 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 260 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 261 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 262 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 263 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 264 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 265 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 266 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 267 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 268 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 269 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 270 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 271 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 272 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 273 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 274 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 275 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 276 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 277 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 278 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 279 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 280 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 281 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 282 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 283 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 284 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 285 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 286 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 287 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 288 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 289 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 290 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 291 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 292 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 293 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 294 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 295 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 296 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 297 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 298 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 299 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 300 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 301 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 302 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 303 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 304 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 305 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 306 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 307 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 308 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 309 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 310 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 311 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 312 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 313 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 314 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 315 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 316 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 317 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 318 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 319 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 320 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 321 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 322 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 323 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 324 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 325 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 326 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 327 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 328 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 329 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 330 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 331 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 332 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 333 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 334 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 335 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 336 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 337 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 338 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 339 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 340 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 341 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 342 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 343 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 344 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 345 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 346 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 347 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 348 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 349 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 350 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 351 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 352 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 353 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 354 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 355 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 356 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 357 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 358 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 359 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 360 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 361 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 362 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 363 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 364 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 365 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 366 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 367 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 368 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 369 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 370 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 371 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 372 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 373 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 374 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 375 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 376 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 377 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 378 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 379 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 380 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 381 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 382 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 383 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 384 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 385 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 386 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 387 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 388 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 389 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 390 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 391 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 392 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 393 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 394 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 395 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 396 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 397 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 398 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 399 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 400 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 401 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 402 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 403 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 404 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 405 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 406 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 407 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 408 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 409 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 410 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 411 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 412 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 413 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 414 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 415 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 416 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 417 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 418 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 419 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 420 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 421 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 422 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 423 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 424 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 425 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 426 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 427 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 428 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 429 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 430 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 431 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 432 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 433 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 434 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 435 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 436 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 437 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 438 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 439 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 440 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 441 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 442 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 443 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 444 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 445 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 446 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 447 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 448 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 449 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 450 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 451 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 452 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 453 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 454 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 455 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 456 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 457 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 458 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 459 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 460 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 461 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 462 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 463 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 464 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 465 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 466 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 467 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 468 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 469 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 470 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 471 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 472 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 473 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 474 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 475 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 476 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 477 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 478 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 479 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 480 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 481 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 482 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 483 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 484 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 485 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 486 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 487 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 488 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 489 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 490 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 491 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 492 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 493 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 494 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 495 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 496 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 497 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 498 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 499 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 500 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 501 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 502 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 503 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 504 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 505 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 506 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 507 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 508 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 509 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 510 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 511 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 512 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 513 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 514 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 515 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 516 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 517 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 518 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 519 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 520 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 521 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 522 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 523 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 524 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 525 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 526 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 527 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 528 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 529 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 530 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 531 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 532 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 533 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 534 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 535 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 536 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 537 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 538 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 539 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 540 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 541 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 542 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 543 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 544 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 545 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 546 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 547 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 548 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 549 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 550 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 551 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 552 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 553 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 554 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 555 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 556 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 557 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 558 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 559 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 560 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 561 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 562 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 563 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 564 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 565 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 566 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 567 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 568 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 569 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 570 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 571 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 572 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 573 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 574 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 575 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 576 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 577 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 578 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 579 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 580 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 581 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 582 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 583 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 584 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 585 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 586 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 587 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 588 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 589 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 590 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 591 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 592 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 593 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 594 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 595 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 596 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 597 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 598 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 599 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 600 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 601 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 602 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 603 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 604 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 605 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 606 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 607 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 608 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 609 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 610 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 611 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 612 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 613 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 614 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 615 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 616 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 617 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 618 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 619 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 620 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 621 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 622 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 623 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 624 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 625 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 626 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 627 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 628 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 629 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 630 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 631 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 632 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 633 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 634 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 635 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 636 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 637 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 638 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 639 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 640 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 641 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 642 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 643 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 644 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 645 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 646 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 647 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 648 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 649 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 650 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 651 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 652 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 653 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 654 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 655 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 656 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 657 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 658 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 659 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 660 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 661 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 662 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 663 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 664 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 665 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 666 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 667 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 668 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 669 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 670 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 671 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 672 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 673 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 674 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 675 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 676 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 677 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 678 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 679 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 680 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 681 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 682 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 683 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 684 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 685 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 686 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 687 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 688 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 689 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 690 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 691 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 692 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 693 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 694 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 695 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 696 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 697 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 698 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 699 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 700 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 701 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 702 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 703 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 704 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 705 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 706 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 707 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 708 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 709 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 710 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 711 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 712 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 713 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 714 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 715 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 716 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 717 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 718 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 719 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 720 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 721 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 722 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 723 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 724 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 725 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 726 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 727 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 728 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 729 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 730 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 731 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 732 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 733 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 734 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 735 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 736 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 737 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 738 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 739 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 740 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 741 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 742 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 743 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 744 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 745 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 746 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 747 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 748 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 749 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 750 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 751 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 752 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 753 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 754 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 755 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 756 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 757 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 758 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 759 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 760 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 761 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 762 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 763 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 764 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 765 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 766 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 767 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 768 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 769 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 770 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 771 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 772 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 773 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 774 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 775 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 776 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 777 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 778 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 779 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 780 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 781 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 782 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 783 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 784 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 785 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 786 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 787 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 788 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 789 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 790 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 791 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 792 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 793 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 794 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 795 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 796 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 797 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 798 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 799 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
-This is paragraph 800 with some filler content to make the section large enough to require splitting when processed by the chunker. The content here is deliberately verbose to simulate a real documentation file that has extensive explanations and examples.
diff --git a/fixtures/refcorpus/nested.md b/fixtures/refcorpus/nested.md
deleted file mode 100644
index 8a6704d..0000000
--- a/fixtures/refcorpus/nested.md
+++ /dev/null
@@ -1,45 +0,0 @@
-# kubectl Reference
-
-Introduction to kubectl commands.
-
-## Common Issues
-
-Overview of common issues.
-
-### CrashLoopBackOff
-
-A pod is in CrashLoopBackOff when it repeatedly crashes.
-
-**Symptoms:**
-- Pod status shows CrashLoopBackOff
-- Container restarts frequently
-
-**Resolution:**
-1. Check logs: `kubectl logs `
-2. Check events: `kubectl describe pod `
-
-### ImagePullBackOff
-
-The container image cannot be pulled.
-
-**Resolution:**
-1. Verify image name and tag
-2. Check registry credentials
-
-## Best Practices
-
-### Resource Limits
-
-Always set resource limits on containers.
-
-### Health Checks
-
-Configure liveness and readiness probes.
-
-#### Liveness Probes
-
-Check if container is running.
-
-#### Readiness Probes
-
-Check if container is ready to serve traffic.
diff --git a/fixtures/refcorpus/skip_me.json b/fixtures/refcorpus/skip_me.json
deleted file mode 100644
index 0f3a15a..0000000
--- a/fixtures/refcorpus/skip_me.json
+++ /dev/null
@@ -1 +0,0 @@
-{"type": "not-markdown", "content": "This should be skipped"}
diff --git a/fixtures/refcorpus/small.md b/fixtures/refcorpus/small.md
deleted file mode 100644
index 1d57d3f..0000000
--- a/fixtures/refcorpus/small.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Small File
-
-This is a small test file with minimal content.
-
-## Section A
-
-Content for section A.
-
-## Section B
-
-Content for section B.
diff --git a/fixtures/search_queries.yaml b/fixtures/search_queries.yaml
deleted file mode 100644
index 240fce4..0000000
--- a/fixtures/search_queries.yaml
+++ /dev/null
@@ -1,104 +0,0 @@
-# M8.8 Test Query Set for Accuracy Benchmarks
-# 20 diverse queries with known-relevant document IDs
-# Format: query_id, query_text, relevant_doc_ids (for NDCG/Recall calculation)
-
-queries:
- - id: q1
- text: "kubernetes networking configuration"
- relevant_docs: ["k8s-networking-1", "k8s-networking-2", "network-config"]
- query_type: "factual"
-
- - id: q2
- text: "how to troubleshoot pod failures"
- relevant_docs: ["pod-debugging", "troubleshoot-failures", "k8s-errors"]
- query_type: "procedural"
-
- - id: q3
- text: "database connection pooling best practices"
- relevant_docs: ["db-pooling", "connection-management", "performance-tuning"]
- query_type: "factual"
-
- - id: q4
- text: "fix memory leak in golang application"
- relevant_docs: ["golang-memory", "leak-detection", "profiling"]
- query_type: "troubleshooting"
-
- - id: q5
- text: "compare kubernetes and docker swarm"
- relevant_docs: ["k8s-vs-swarm", "container-orchestration", "architecture-comparison"]
- query_type: "comparative"
-
- - id: q6
- text: "OpenSearch tuning for search performance"
- relevant_docs: ["opensearch-config", "search-optimization", "performance"]
- query_type: "factual"
-
- - id: q7
- text: "SSL certificate renewal automation"
- relevant_docs: ["ssl-certs", "cert-renewal", "automation"]
- query_type: "procedural"
-
- - id: q8
- text: "PostgreSQL replication setup"
- relevant_docs: ["pg-replication", "high-availability", "backup"]
- query_type: "procedural"
-
- - id: q9
- text: "service mesh traffic routing"
- relevant_docs: ["service-mesh", "istio", "networking"]
- query_type: "factual"
-
- - id: q10
- text: "k8s resource limits and requests"
- relevant_docs: ["k8s-resources", "limits", "scheduling"]
- query_type: "factual"
-
- - id: q11
- text: "debugging distributed tracing issues"
- relevant_docs: ["tracing", "jaeger", "observability"]
- query_type: "troubleshooting"
-
- - id: q12
- text: "terraform state management best practices"
- relevant_docs: ["terraform-state", "infrastructure-as-code", "best-practices"]
- query_type: "factual"
-
- - id: q13
- text: "rate limiting API endpoints"
- relevant_docs: ["rate-limiting", "api-gateway", "performance"]
- query_type: "procedural"
-
- - id: q14
- text: "monitoring and alerting setup"
- relevant_docs: ["monitoring", "prometheus", "alerts"]
- query_type: "factual"
-
- - id: q15
- text: "optimize database query performance"
- relevant_docs: ["query-optimization", "indexing", "execution-plan"]
- query_type: "procedural"
-
- - id: q16
- text: "microservices design patterns"
- relevant_docs: ["microservices", "architecture", "patterns"]
- query_type: "factual"
-
- - id: q17
- text: "handle concurrent requests in api"
- relevant_docs: ["concurrency", "api-design", "threading"]
- query_type: "procedural"
-
- - id: q18
- text: "security hardening checklist"
- relevant_docs: ["security", "hardening", "compliance"]
- query_type: "factual"
-
- - id: q19
- text: "restore from database backup"
- relevant_docs: ["backup", "disaster-recovery", "restore"]
- query_type: "procedural"
-
- - id: q20
- text: "error handling and retry logic"
- relevant_docs: ["error-handling", "resilience", "retries"]
- query_type: "factual"