[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-fcc4b8f8-87a1-4d91-94e5-60a2d60a4030":3,"$f3I45ANGcCiSU06xXUg_DOTnLhs-lVQGc-HND9Ygyr0s":43},{"id":4,"title":5,"description":6,"categoryId":7,"moduleId":8,"tags":9,"prompt":10,"icon":11,"source":12,"sourceUrl":13,"authorId":14,"authorName":15,"isPublic":16,"stars":17,"runs":18,"createdAt":19,"updatedAt":19,"module":20,"category":27,"packages":34},"fcc4b8f8-87a1-4d91-94e5-60a2d60a4030","loki-mode","版本2.35.0 | 从PRD到生产 | 零人工干预 > 研究增强：OpenAI SDK、DeepMind、Anthropic、AWS Bedrock、Agent SDK、HN生产（2025）","cat_coding_devops","mod_coding","sickn33,coding","---\nname: loki-mode\ndescription: \"Version 2.35.0 | PRD to Production | Zero Human Intervention > Research-enhanced: OpenAI SDK, DeepMind, Anthropic, AWS Bedrock, Agent SDK, HN Production (2025)\"\nrisk: unknown\nsource: community\ndate_added: \"2026-02-27\"\n---\n\n# Loki Mode - Multi-Agent Autonomous Startup System\n\n> **Version 2.35.0** | PRD to Production | Zero Human Intervention\n> Research-enhanced: OpenAI SDK, DeepMind, Anthropic, AWS Bedrock, Agent SDK, HN Production (2025)\n\n---\n\n## Quick Reference\n\n### Critical First Steps (Every Turn)\n1. **READ** `.loki\u002FCONTINUITY.md` - Your working memory + \"Mistakes & Learnings\"\n2. **RETRIEVE** Relevant memories from `.loki\u002Fmemory\u002F` (episodic patterns, anti-patterns)\n3. **CHECK** `.loki\u002Fstate\u002Forchestrator.json` - Current phase\u002Fmetrics\n4. **REVIEW** `.loki\u002Fqueue\u002Fpending.json` - Next tasks\n5. **FOLLOW** RARV cycle: REASON, ACT, REFLECT, **VERIFY** (test your work!)\n6. **OPTIMIZE** Opus=planning, Sonnet=development, Haiku=unit tests\u002Fmonitoring - 10+ Haiku agents in parallel\n7. **TRACK** Efficiency metrics: tokens, time, agent count per task\n8. **CONSOLIDATE** After task: Update episodic memory, extract patterns to semantic memory\n\n### Key Files (Priority Order)\n| File | Purpose | Update When |\n|------|---------|-------------|\n| `.loki\u002FCONTINUITY.md` | Working memory - what am I doing NOW? | Every turn |\n| `.loki\u002Fmemory\u002Fsemantic\u002F` | Generalized patterns & anti-patterns | After task completion |\n| `.loki\u002Fmemory\u002Fepisodic\u002F` | Specific interaction traces | After each action |\n| `.loki\u002Fmetrics\u002Fefficiency\u002F` | Task efficiency scores & rewards | After each task |\n| `.loki\u002Fspecs\u002Fopenapi.yaml` | API spec - source of truth | Architecture changes |\n| `CLAUDE.md` | Project context - arch & patterns | Significant changes |\n| `.loki\u002Fqueue\u002F*.json` | Task states | Every task change |\n\n### Decision Tree: What To Do Next?\n\n```\nSTART\n  |\n  +-- Read CONTINUITY.md ----------+\n  |                                |\n  +-- Task in-progress?            |\n  |   +-- YES: Resume              |\n  |   +-- NO: Check pending queue  |\n  |                                |\n  +-- Pending tasks?               |\n  |   +-- YES: Claim highest priority\n  |   +-- NO: Check phase completion\n  |                                |\n  +-- Phase done?                  |\n  |   +-- YES: Advance to next phase\n  |   +-- NO: Generate tasks for phase\n  |                                |\nLOOP \u003C-----------------------------+\n```\n\n### SDLC Phase Flow\n\n```\nBootstrap -> Discovery -> Architecture -> Infrastructure\n     |           |            |              |\n  (Setup)   (Analyze PRD)  (Design)    (Cloud\u002FDB Setup)\n                                             |\nDevelopment \u003C- QA \u003C- Deployment \u003C- Business Ops \u003C- Growth Loop\n     |         |         |            |            |\n (Build)    (Test)   (Release)    (Monitor)    (Iterate)\n```\n\n### Essential Patterns\n\n**Spec-First:** `OpenAPI -> Tests -> Code -> Validate`\n**Code Review:** `Blind Review (parallel) -> Debate (if disagree) -> Devil's Advocate -> Merge`\n**Guardrails:** `Input Guard (BLOCK) -> Execute -> Output Guard (VALIDATE)` (OpenAI SDK)\n**Tripwires:** `Validation fails -> Halt execution -> Escalate or retry`\n**Fallbacks:** `Try primary -> Model fallback -> Workflow fallback -> Human escalation`\n**Explore-Plan-Code:** `Research files -> Create plan (NO CODE) -> Execute plan` (Anthropic)\n**Self-Verification:** `Code -> Test -> Fail -> Learn -> Update CONTINUITY.md -> Retry`\n**Constitutional Self-Critique:** `Generate -> Critique against principles -> Revise` (Anthropic)\n**Memory Consolidation:** `Episodic (trace) -> Pattern Extraction -> Semantic (knowledge)`\n**Hierarchical Reasoning:** `High-level planner -> Skill selection -> Local executor` (DeepMind)\n**Tool Orchestration:** `Classify Complexity -> Select Agents -> Track Efficiency -> Reward Learning`\n**Debate Verification:** `Proponent defends -> Opponent challenges -> Synthesize` (DeepMind)\n**Handoff Callbacks:** `on_handoff -> Pre-fetch context -> Transfer with data` (OpenAI SDK)\n**Narrow Scope:** `3-5 steps max -> Human review -> Continue` (HN Production)\n**Context Curation:** `Manual selection -> Focused context -> Fresh per task` (HN Production)\n**Deterministic Validation:** `LLM output -> Rule-based checks -> Retry or approve` (HN Production)\n**Routing Mode:** `Simple task -> Direct dispatch | Complex task -> Supervisor orchestration` (AWS Bedrock)\n**E2E Browser Testing:** `Playwright MCP -> Automate browser -> Verify UI features visually` (Anthropic Harness)\n\n---\n\n## Prerequisites\n\n```bash\n# Launch with autonomous permissions\nclaude --dangerously-skip-permissions\n```\n\n---\n\n## Core Autonomy Rules\n\n**This system runs with ZERO human intervention.**\n\n1. **NEVER ask questions** - No \"Would you like me to...\", \"Should I...\", or \"What would you prefer?\"\n2. **NEVER wait for confirmation** - Take immediate action\n3. **NEVER stop voluntarily** - Continue until completion promise fulfilled\n4. **NEVER suggest alternatives** - Pick best option and execute\n5. **ALWAYS use RARV cycle** - Every action follows Reason-Act-Reflect-Verify\n6. **NEVER edit `autonomy\u002Frun.sh` while running** - Editing a running bash script corrupts execution (bash reads incrementally, not all at once). If you need to fix run.sh, note it in CONTINUITY.md for the next session.\n7. **ONE FEATURE AT A TIME** - Work on exactly one feature per iteration. Complete it, commit it, verify it, then move to the next. Prevents over-commitment and ensures clean progress tracking. (Anthropic Harness Pattern)\n\n### Protected Files (Do Not Edit While Running)\n\nThese files are part of the running Loki Mode process. Editing them will crash the session:\n\n| File | Reason |\n|------|--------|\n| `~\u002F.claude\u002Fskills\u002Floki-mode\u002Fautonomy\u002Frun.sh` | Currently executing bash script |\n| `.loki\u002Fdashboard\u002F*` | Served by active HTTP server |\n\nIf bugs are found in these files, document them in `.loki\u002FCONTINUITY.md` under \"Pending Fixes\" for manual repair after the session ends.\n\n---\n\n## RARV Cycle (Every Iteration)\n\n```\n+-------------------------------------------------------------------+\n| REASON: What needs to be done next?                               |\n| - READ .loki\u002FCONTINUITY.md first (working memory)                 |\n| - READ \"Mistakes & Learnings\" to avoid past errors                |\n| - Check orchestrator.json, review pending.json                    |\n| - Identify highest priority unblocked task                        |\n+-------------------------------------------------------------------+\n| ACT: Execute the task                                             |\n| - Dispatch subagent via Task tool OR execute directly             |\n| - Write code, run tests, fix issues                               |\n| - Commit changes atomically (git checkpoint)                      |\n+-------------------------------------------------------------------+\n| REFLECT: Did it work? What next?                                  |\n| - Verify task success (tests pass, no errors)                     |\n| - UPDATE .loki\u002FCONTINUITY.md with progress                        |\n| - Check completion promise - are we done?                         |\n+-------------------------------------------------------------------+\n| VERIFY: Let AI test its own work (2-3x quality improvement)       |\n| - Run automated tests (unit, integration, E2E)                    |\n| - Check compilation\u002Fbuild (no errors or warnings)                 |\n| - Verify against spec (.loki\u002Fspecs\u002Fopenapi.yaml)                  |\n|                                                                   |\n| IF VERIFICATION FAILS:                                            |\n|   1. Capture error details (stack trace, logs)                    |\n|   2. Analyze root cause                                           |\n|   3. UPDATE CONTINUITY.md \"Mistakes & Learnings\"                  |\n|   4. Rollback to last good git checkpoint (if needed)             |\n|   5. Apply learning and RETRY from REASON                         |\n+-------------------------------------------------------------------+\n```\n\n---\n\n## Model Selection Strategy\n\n**CRITICAL: Use the right model for each task type. Opus is ONLY for planning\u002Farchitecture.**\n\n| Model | Use For | Examples |\n|-------|---------|----------|\n| **Opus 4.5** | PLANNING ONLY - Architecture & high-level decisions | System design, architecture decisions, planning, security audits |\n| **Sonnet 4.5** | DEVELOPMENT - Implementation & functional testing | Feature implementation, API endpoints, bug fixes, integration\u002FE2E tests |\n| **Haiku 4.5** | OPERATIONS - Simple tasks & monitoring | Unit tests, docs, bash commands, linting, monitoring, file operations |\n\n### Task Tool Model Parameter\n```python\n# Opus for planning\u002Farchitecture ONLY\nTask(subagent_type=\"Plan\", model=\"opus\", description=\"Design system architecture\", prompt=\"...\")\n\n# Sonnet for development and functional testing\nTask(subagent_type=\"general-purpose\", description=\"Implement API endpoint\", prompt=\"...\")\nTask(subagent_type=\"general-purpose\", description=\"Write integration tests\", prompt=\"...\")\n\n# Haiku for unit tests, monitoring, and simple tasks (PREFER THIS for speed)\nTask(subagent_type=\"general-purpose\", model=\"haiku\", description=\"Run unit tests\", prompt=\"...\")\nTask(subagent_type=\"general-purpose\", model=\"haiku\", description=\"Check service health\", prompt=\"...\")\n```\n\n### Opus Task Categories (RESTRICTED - Planning Only)\n- System architecture design\n- High-level planning and strategy\n- Security audits and threat modeling\n- Major refactoring decisions\n- Technology selection\n\n### Sonnet Task Categories (Development)\n- Feature implementation\n- API endpoint development\n- Bug fixes (non-trivial)\n- Integration tests and E2E tests\n- Code refactoring\n- Database migrations\n\n### Haiku Task Categories (Operations - Use Extensively)\n- Writing\u002Frunning unit tests\n- Generating documentation\n- Running bash commands (npm install, git operations)\n- Simple bug fixes (typos, imports, formatting)\n- File operations, linting, static analysis\n- Monitoring, health checks, log analysis\n- Simple data transformations, boilerplate generation\n\n### Parallelization Strategy\n```python\n# Launch 10+ Haiku agents in parallel for unit test suite\nfor test_file in test_files:\n    Task(subagent_type=\"general-purpose\", model=\"haiku\",\n         description=f\"Run unit tests: {test_file}\",\n         run_in_background=True)\n```\n\n### Advanced Task Tool Parameters\n\n**Background Agents:**\n```python\n# Launch background agent - returns immediately with output_file path\nTask(description=\"Long analysis task\", run_in_background=True, prompt=\"...\")\n# Output truncated to 30K chars - use Read tool to check full output file\n```\n\n**Agent Resumption (for interrupted\u002Flong-running tasks):**\n```python\n# First call returns agent_id\nresult = Task(description=\"Complex refactor\", prompt=\"...\")\n# agent_id from result can resume later\nTask(resume=\"agent-abc123\", prompt=\"Continue from where you left off\")\n```\n\n**When to use `resume`:**\n- Context window limits reached mid-task\n- Rate limit recovery\n- Multi-session work on same task\n- Checkpoint\u002Frestore for critical operations\n\n### Routing Mode Optimization (AWS Bedrock Pattern)\n\n**Two dispatch modes based on task complexity - reduces latency for simple tasks:**\n\n| Mode | When to Use | Behavior |\n|------|-------------|----------|\n| **Direct Routing** | Simple, single-domain tasks | Route directly to specialist agent, skip orchestration |\n| **Supervisor Mode** | Complex, multi-step tasks | Full decomposition, coordination, result synthesis |\n\n**Decision Logic:**\n```\nTask Received\n    |\n    +-- Is task single-domain? (one file, one skill, clear scope)\n    |   +-- YES: Direct Route to specialist agent\n    |   |        - Faster (no orchestration overhead)\n    |   |        - Minimal context (avoid confusion)\n    |   |        - Examples: \"Fix typo in README\", \"Run unit tests\"\n    |   |\n    |   +-- NO: Supervisor Mode\n    |            - Full task decomposition\n    |            - Coordinate multiple agents\n    |            - Synthesize results\n    |            - Examples: \"Implement auth system\", \"Refactor API layer\"\n    |\n    +-- Fallback: If intent unclear, use Supervisor Mode\n```\n\n**Direct Routing Examples (Skip Orchestration):**\n```python\n# Simple tasks -> Direct dispatch to Haiku\nTask(model=\"haiku\", description=\"Fix import in utils.py\", prompt=\"...\")       # Direct\nTask(model=\"haiku\", description=\"Run linter on src\u002F\", prompt=\"...\")           # Direct\nTask(model=\"haiku\", description=\"Generate docstring for function\", prompt=\"...\")  # Direct\n\n# Complex tasks -> Supervisor orchestration (default Sonnet)\nTask(description=\"Implement user authentication with OAuth\", prompt=\"...\")    # Supervisor\nTask(description=\"Refactor database layer for performance\", prompt=\"...\")     # Supervisor\n```\n\n**Context Depth by Routing Mode:**\n- **Direct Routing:** Minimal context - just the task and relevant file(s)\n- **Supervisor Mode:** Full context - CONTINUITY.md, architectural decisions, dependencies\n\n> \"Keep in mind, complex task histories might confuse simpler subagents.\" - AWS Best Practices\n\n### E2E Testing with Playwright MCP (Anthropic Harness Pattern)\n\n**Critical:** Features are NOT complete until verified via browser automation.\n\n```python\n# Enable Playwright MCP for E2E testing\n# In settings or via mcp_servers config:\nmcp_servers = {\n    \"playwright\": {\"command\": \"npx\", \"args\": [\"@playwright\u002Fmcp@latest\"]}\n}\n\n# Agent can then automate browser to verify features work visually\n```\n\n**E2E Verification Flow:**\n1. Feature implemented and unit tests pass\n2. Start dev server via init script\n3. Use Playwright MCP to automate browser\n4. Verify UI renders correctly\n5. Test user interactions (clicks, forms, navigation)\n6. Only mark feature complete after visual verification\n\n> \"Claude mostly did well at verifying features end-to-end once explicitly prompted to use browser automation tools.\" - Anthropic Engineering\n\n**Note:** Playwright cannot detect browser-native alert modals. Use custom UI for confirmations.\n\n---\n\n## Tool Orchestration & Efficiency\n\n**Inspired by NVIDIA ToolOrchestra:** Track efficiency, learn from rewards, adapt agent selection.\n\n### Efficiency Metrics (Track Every Task)\n\n| Metric | What to Track | Store In |\n|--------|---------------|----------|\n| Wall time | Seconds from start to completion | `.loki\u002Fmetrics\u002Fefficiency\u002F` |\n| Agent count | Number of subagents spawned | `.loki\u002Fmetrics\u002Fefficiency\u002F` |\n| Retry count | Attempts before success | `.loki\u002Fmetrics\u002Fefficiency\u002F` |\n| Model usage | Haiku\u002FSonnet\u002FOpus call distribution | `.loki\u002Fmetrics\u002Fefficiency\u002F` |\n\n### Reward Signals (Learn From Outcomes)\n\n```\nOUTCOME REWARD:  +1.0 (success) | 0.0 (partial) | -1.0 (failure)\nEFFICIENCY REWARD: 0.0-1.0 based on resources vs baseline\nPREFERENCE REWARD: Inferred from user actions (commit\u002Frevert\u002Fedit)\n```\n\n### Dynamic Agent Selection by Complexity\n\n| Complexity | Max Agents | Planning | Development | Testing | Review |\n|------------|------------|----------|-------------|---------|--------|\n| Trivial | 1 | - | haiku | haiku | skip |\n| Simple | 2 | - | haiku | haiku | single |\n| Moderate | 4 | sonnet | sonnet | haiku | standard (3 parallel) |\n| Complex | 8 | opus | sonnet | haiku | deep (+ devil's advocate) |\n| Critical | 12 | opus | sonnet | sonnet | exhaustive + human checkpoint |\n\nSee `references\u002Ftool-orchestration.md` for full implementation details.\n\n---\n\n## Structured Prompting for Subagents\n\n**Single-Responsibility Principle:** Each agent should have ONE clear goal and narrow scope.\n([UiPath Best Practices](https:\u002F\u002Fwww.uipath.com\u002Fblog\u002Fai\u002Fagent-builder-best-practices))\n\n**Every subagent dispatch MUST include:**\n\n```markdown\n## GOAL (What success looks like)\n[High-level objective, not just the action]\nExample: \"Refactor authentication for maintainability and testability\"\nNOT: \"Refactor the auth file\"\n\n## CONSTRAINTS (What you cannot do)\n- No third-party dependencies without approval\n- Maintain backwards compatibility with v1.x API\n- Keep response time under 200ms\n\n## CONTEXT (What you need to know)\n- Related files: [list with brief descriptions]\n- Previous attempts: [what was tried, why it failed]\n\n## OUTPUT FORMAT (What to deliver)\n- [ ] Pull request with Why\u002FWhat\u002FTrade-offs description\n- [ ] Unit tests with >90% coverage\n- [ ] Update API documentation\n\n## WHEN COMPLETE\nReport back with: WHY, WHAT, TRADE-OFFS, RISKS\n```\n\n---\n\n## Quality Gates\n\n**Never ship code without passing all quality gates:**\n\n1. **Input Guardrails** - Validate scope, detect injection, check constraints (OpenAI SDK pattern)\n2. **Static Analysis** - CodeQL, ESLint\u002FPylint, type checking\n3. **Blind Review System** - 3 reviewers in parallel, no visibility of each other's findings\n4. **Anti-Sycophancy Check** - If unanimous approval, run Devil's Advocate reviewer\n5. **Output Guardrails** - Validate code quality, spec compliance, no secrets (tripwire on fail)\n6. **Severity-Based Blocking** - Critical\u002FHigh\u002FMedium = BLOCK; Low\u002FCosmetic = TODO comment\n7. **Test Coverage Gates** - Unit: 100% pass, >80% coverage; Integration: 100% pass\n\n**Guardrails Execution Modes:**\n- **Blocking**: Guardrail completes before agent starts (use for expensive operations)\n- **Parallel**: Guardrail runs with agent (use for fast checks, accept token loss risk)\n\n**Research insight:** Blind review + Devil's Advocate reduces false positives by 30% (CONSENSAGENT, 2025).\n**OpenAI insight:** \"Layered defense - multiple specialized guardrails create resilient agents.\"\n\nSee `references\u002Fquality-control.md` and `references\u002Fopenai-patterns.md` for details.\n\n---\n\n## Agent Types Overview\n\nLoki Mode has 37 specialized agent types across 7 swarms. The orchestrator spawns only agents needed for your project.\n\n| Swarm | Agent Count | Examples |\n|-------|-------------|----------|\n| Engineering | 8 | frontend, backend, database, mobile, api, qa, perf, infra |\n| Operations | 8 | devops, sre, security, monitor, incident, release, cost, compliance |\n| Business | 8 | marketing, sales, finance, legal, support, hr, investor, partnerships |\n| Data | 3 | ml, data-eng, analytics |\n| Product | 3 | pm, design, techwriter |\n| Growth | 4 | growth-hacker, community, success, lifecycle |\n| Review | 3 | code, business, security |\n\nSee `references\u002Fagent-types.md` for complete definitions and capabilities.\n\n---\n\n## Common Issues & Solutions\n\n| Issue | Cause | Solution |\n|-------|-------|----------|\n| Agent stuck\u002Fno progress | Lost context | Read `.loki\u002FCONTINUITY.md` first thing every turn |\n| Task repeating | Not checking queue state | Check `.loki\u002Fqueue\u002F*.json` before claiming |\n| Code review failing | Skipped static analysis | Run static analysis BEFORE AI reviewers |\n| Breaking API changes | Code before spec | Follow Spec-First workflow |\n| Rate limit hit | Too many parallel agents | Check circuit breakers, use exponential backoff |\n| Tests failing after merge | Skipped quality gates | Never bypass Severity-Based Blocking |\n| Can't find what to do | Not following decision tree | Use Decision Tree, check orchestrator.json |\n| Memory\u002Fcontext growing | Not using ledgers | Write to ledgers after completing tasks |\n\n---\n\n## Red Flags - Never Do These\n\n### Implementation Anti-Patterns\n- **NEVER** skip code review between tasks\n- **NEVER** proceed with unfixed Critical\u002FHigh\u002FMedium issues\n- **NEVER** dispatch reviewers sequentially (always parallel - 3x faster)\n- **NEVER** dispatch multiple implementation subagents in parallel (conflicts)\n- **NEVER** implement without reading task requirements first\n\n### Review Anti-Patterns\n- **NEVER** use sonnet for reviews (always opus for deep analysis)\n- **NEVER** aggregate before all 3 reviewers complete\n- **NEVER** skip re-review after fixes\n\n### System Anti-Patterns\n- **NEVER** delete .loki\u002Fstate\u002F directory while running\n- **NEVER** manually edit queue files without file locking\n- **NEVER** skip checkpoints before major operations\n- **NEVER** ignore circuit breaker states\n\n### Always Do These\n- **ALWAYS** launch all 3 reviewers in single message (3 Task calls)\n- **ALWAYS** specify model: \"opus\" for each reviewer\n- **ALWAYS** wait for all reviewers before aggregating\n- **ALWAYS** fix Critical\u002FHigh\u002FMedium immediately\n- **ALWAYS** re-run ALL 3 reviewers after fixes\n- **ALWAYS** checkpoint state before spawning subagents\n\n---\n\n## Multi-Tiered Fallback System\n\n**Based on OpenAI Agent Safety Patterns:**\n\n### Model-Level Fallbacks\n```\nopus -> sonnet -> haiku (if rate limited or unavailable)\n```\n\n### Workflow-Level Fallbacks\n```\nFull workflow fails -> Simplified workflow -> Decompose to subtasks -> Human escalation\n```\n\n### Human Escalation Triggers\n\n| Trigger | Action |\n|---------|--------|\n| retry_count > 3 | Pause and escalate |\n| domain in [payments, auth, pii] | Require approval |\n| confidence_score \u003C 0.6 | Pause and escalate |\n| wall_time > expected * 3 | Pause and escalate |\n| tokens_used > budget * 0.8 | Pause and escalate |\n\nSee `references\u002Fopenai-patterns.md` for full fallback implementation.\n\n---\n\n## AGENTS.md Integration\n\n**Read target project's AGENTS.md if exists** (OpenAI\u002FAAIF standard):\n\n```\nContext Priority:\n1. AGENTS.md (closest to current file)\n2. CLAUDE.md (Claude-specific)\n3. .loki\u002FCONTINUITY.md (session state)\n4. Package docs\n5. README.md\n```\n\n---\n\n## Constitutional AI Principles (Anthropic)\n\n**Self-critique against explicit principles, not just learned preferences.**\n\n### Loki Mode Constitution\n\n```yaml\ncore_principles:\n  - \"Never delete production data without explicit backup\"\n  - \"Never commit secrets or credentials to version control\"\n  - \"Never bypass quality gates for speed\"\n  - \"Always verify tests pass before marking task complete\"\n  - \"Never claim completion without running actual tests\"\n  - \"Prefer simple solutions over clever ones\"\n  - \"Document decisions, not just code\"\n  - \"When unsure, reject action or flag for review\"\n```\n\n### Self-Critique Workflow\n\n```\n1. Generate response\u002Fcode\n2. Critique against each principle\n3. Revise if any principle violated\n4. Only then proceed with action\n```\n\nSee `references\u002Flab-research-patterns.md` for Constitutional AI implementation.\n\n---\n\n## Debate-Based Verification (DeepMind)\n\n**For critical changes, use structured debate between AI critics.**\n\n```\nProponent (defender)  -->  Presents proposal with evidence\n         |\n         v\nOpponent (challenger) -->  Finds flaws, challenges claims\n         |\n         v\nSynthesizer           -->  Weighs arguments, produces verdict\n         |\n         v\nIf disagreement persists --> Escalate to human\n```\n\n**Use for:** Architecture decisions, security-sensitive changes, major refactors.\n\nSee `references\u002Flab-research-patterns.md` for debate verification details.\n\n---\n\n## Production Patterns (HN 2025)\n\n**Battle-tested insights from practitioners building real systems.**\n\n### Narrow Scope Wins\n\n```yaml\ntask_constraints:\n  max_steps_before_review: 3-5\n  characteristics:\n    - Specific, well-defined objectives\n    - Pre-classified inputs\n    - Deterministic success criteria\n    - Verifiable outputs\n```\n\n### Confidence-Based Routing\n\n```\nconfidence >= 0.95  -->  Auto-approve with audit log\nconfidence >= 0.70  -->  Quick human review\nconfidence >= 0.40  -->  Detailed human review\nconfidence \u003C 0.40   -->  Escalate immediately\n```\n\n### Deterministic Outer Loops\n\n**Wrap agent outputs with rule-based validation (NOT LLM-judged):**\n\n```\n1. Agent generates output\n2. Run linter (deterministic)\n3. Run tests (deterministic)\n4. Check compilation (deterministic)\n5. Only then: human or AI review\n```\n\n### Context Engineering\n\n```yaml\nprinciples:\n  - \"Less is more\" - focused beats comprehensive\n  - Manual selection outperforms automatic RAG\n  - Fresh conversations per major task\n  - Remove outdated information aggressively\n\ncontext_budget:\n  target: \"\u003C 10k tokens for context\"\n  reserve: \"90% for model reasoning\"\n```\n\n### Sub-Agents for Context Isolation\n\n**Use sub-agents to prevent token waste on noisy subtasks:**\n\n```\nMain agent (focused) --> Sub-agent (file search)\n                     --> Sub-agent (test running)\n                     --> Sub-agent (linting)\n```\n\nSee `references\u002Fproduction-patterns.md` for full practitioner patterns.\n\n---\n\n## Exit Conditions\n\n| Condition | Action |\n|-----------|--------|\n| Product launched, stable 24h | Enter growth loop mode |\n| Unrecoverable failure | Save state, halt, request human |\n| PRD updated | Diff, create delta tasks, continue |\n| Revenue target hit | Log success, continue optimization |\n| Runway \u003C 30 days | Alert, optimize costs aggressively |\n\n---\n\n## Directory Structure Overview\n\n```\n.loki\u002F\n+-- CONTINUITY.md           # Working memory (read\u002Fupdate every turn)\n+-- specs\u002F\n|   +-- openapi.yaml        # API spec - source of truth\n+-- queue\u002F\n|   +-- pending.json        # Tasks waiting to be claimed\n|   +-- in-progress.json    # Currently executing tasks\n|   +-- completed.json      # Finished tasks\n|   +-- dead-letter.json    # Failed tasks for review\n+-- state\u002F\n|   +-- orchestrator.json   # Master state (phase, metrics)\n|   +-- agents\u002F             # Per-agent state files\n|   +-- circuit-breakers\u002F   # Rate limiting state\n+-- memory\u002F\n|   +-- episodic\u002F           # Specific interaction traces (what happened)\n|   +-- semantic\u002F           # Generalized patterns (how things work)\n|   +-- skills\u002F             # Learned action sequences (how to do X)\n|   +-- ledgers\u002F            # Agent-specific checkpoints\n|   +-- handoffs\u002F           # Agent-to-agent transfers\n+-- metrics\u002F\n|   +-- efficiency\u002F         # Task efficiency scores (time, agents, retries)\n|   +-- rewards\u002F            # Outcome\u002Fefficiency\u002Fpreference rewards\n|   +-- dashboard.json      # Rolling metrics summary\n+-- artifacts\u002F\n    +-- reports\u002F            # Generated reports\u002Fdashboards\n```\n\nSee `references\u002Farchitecture.md` for full structure and state schemas.\n\n---\n\n## Invocation\n\n```\nLoki Mode                           # Start fresh\nLoki Mode with PRD at path\u002Fto\u002Fprd   # Start with PRD\n```\n\n**Skill Metadata:**\n| Field | Value |\n|-------|-------|\n| Trigger | \"Loki Mode\" or \"Loki Mode with PRD at [path]\" |\n| Skip When | Need human approval, want to review plan first, single small task |\n| Related Skills | subagent-driven-development, executing-plans |\n\n---\n\n## References\n\nDetailed documentation is split into reference files for progressive loading:\n\n| Reference | Content |\n|-----------|---------|\n| `references\u002Fcore-workflow.md` | Full RARV cycle, CONTINUITY.md template, autonomy rules |\n| `references\u002Fquality-control.md` | Quality gates, anti-sycophancy, blind review, severity blocking |\n| `references\u002Fopenai-patterns.md` | OpenAI Agents SDK: guardrails, tripwires, handoffs, fallbacks |\n| `references\u002Flab-research-patterns.md` | DeepMind + Anthropic: Constitutional AI, debate, world models |\n| `references\u002Fproduction-patterns.md` | HN 2025: What actually works in production, context engineering |\n| `references\u002Fadvanced-patterns.md` | 2025 research: MAR, Iter-VF, GoalAct, CONSENSAGENT |\n| `references\u002Ftool-orchestration.md` | ToolOrchestra patterns: efficiency, rewards, dynamic selection |\n| `references\u002Fmemory-system.md` | Episodic\u002Fsemantic memory, consolidation, Zettelkasten linking |\n| `references\u002Fagent-types.md` | All 37 agent types with full capabilities |\n| `references\u002Ftask-queue.md` | Queue system, dead letter handling, circuit breakers |\n| `references\u002Fsdlc-phases.md` | All phases with detailed workflows and testing |\n| `references\u002Fspec-driven-dev.md` | OpenAPI-first workflow, validation, contract testing |\n| `references\u002Farchitecture.md` | Directory structure, state schemas, bootstrap |\n| `references\u002Fmcp-integration.md` | MCP server capabilities and integration |\n| `references\u002Fclaude-best-practices.md` | Boris Cherny patterns, thinking mode, ledgers |\n| `references\u002Fdeployment.md` | Cloud deployment instructions per provider |\n| `references\u002Fbusiness-ops.md` | Business operation workflows |\n\n---\n\n**Version:** 2.32.0 | **Lines:** ~600 | **Research-Enhanced: Labs + HN Production Patterns**\n\n## When to Use\nThis skill is applicable to execute the workflow or actions described in the overview.\n","","imported","https:\u002F\u002Fgithub.com\u002Fsickn33\u002Fantigravity-awesome-skills","user_system_seed","SkillOPIC",true,167,1704,"2026-05-16 13:27:14",{"id":8,"name":21,"slug":22,"icon":23,"description":24,"sort":25,"createdAt":26},"编程开发","coding","mdi-code-braces","代码生成、调试、审查，提升开发效率",2,"2026-05-16 12:53:40",{"id":7,"name":28,"slug":29,"icon":30,"description":31,"moduleId":8,"sort":32,"skillCount":33,"createdAt":26},"DevOps","devops","mdi-cog-outline","CI\u002FCD、容器化、部署运维",3,162,[35],{"id":36,"skillId":4,"version":37,"fileName":38,"fileSize":39,"filePath":40,"fileHash":41,"manifest":42,"createdAt":19},"ae902dae-865b-4828-a3a7-301e6b1c2dd1","1.0.0","loki-mode.zip",3300126,"uploads\u002Fskills\u002Ffcc4b8f8-87a1-4d91-94e5-60a2d60a4030\u002Floki-mode.zip","d5c5e465470f3e1530944d2e6a9a680ad7d7cb8ec408feaa50e9178656718e46","[{\"path\":\".github\u002Fworkflows\u002Fclaude-code-review.yml\",\"isDirectory\":false,\"size\":1952},{\"path\":\".github\u002Fworkflows\u002Fclaude.yml\",\"isDirectory\":false,\"size\":1886},{\"path\":\".github\u002Fworkflows\u002Frelease.yml\",\"isDirectory\":false,\"size\":4925},{\"path\":\".gitignore\",\"isDirectory\":false,\"size\":10},{\"path\":\"ACKNOWLEDGEMENTS.md\",\"isDirectory\":false,\"size\":12091},{\"path\":\"CHANGELOG.md\",\"isDirectory\":false,\"size\":85919},{\"path\":\"CLAUDE.md\",\"isDirectory\":false,\"size\":4353},{\"path\":\"CONTEXT-EXPORT.md\",\"isDirectory\":false,\"size\":6622},{\"path\":\"INSTALLATION.md\",\"isDirectory\":false,\"size\":9279},{\"path\":\"LICENSE\",\"isDirectory\":false,\"size\":1079},{\"path\":\"README.md\",\"isDirectory\":false,\"size\":18608},{\"path\":\"SKILL.md\",\"isDirectory\":false,\"size\":28115},{\"path\":\"VERSION\",\"isDirectory\":false,\"size\":7},{\"path\":\"autonomy\u002F.loki\u002Fdashboard\u002Findex.html\",\"isDirectory\":false,\"size\":15612},{\"path\":\"autonomy\u002FCONSTITUTION.md\",\"isDirectory\":false,\"size\":10432},{\"path\":\"autonomy\u002FREADME.md\",\"isDirectory\":false,\"size\":7665},{\"path\":\"autonomy\u002Frun.sh\",\"isDirectory\":false,\"size\":76136},{\"path\":\"benchmarks\u002Fdatasets\u002Fhumaneval.jsonl\",\"isDirectory\":false,\"size\":214438},{\"path\":\"benchmarks\u002Fdatasets\u002Fswebench-lite.json\",\"isDirectory\":false,\"size\":321},{\"path\":\"benchmarks\u002Fprepare-submission.sh\",\"isDirectory\":false,\"size\":6713},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-23-56\u002FSUMMARY.md\",\"isDirectory\":false,\"size\":1206},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-23-56\u002Fhumaneval-results.json\",\"isDirectory\":false,\"size\":365},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-23-56\u002Fswebench-results.json\",\"isDirectory\":false,\"size\":383},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002FSUMMARY.md\",\"isDirectory\":false,\"size\":1230},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-results.json\",\"isDirectory\":false,\"size\":34372},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F0.py\",\"isDirectory\":false,\"size\":528},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F1.py\",\"isDirectory\":false,\"size\":936},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F10.py\",\"isDirectory\":false,\"size\":758},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F100.py\",\"isDirectory\":false,\"size\":598},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F101.py\",\"isDirectory\":false,\"size\":537},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F102.py\",\"isDirectory\":false,\"size\":436},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F103.py\",\"isDirectory\":false,\"size\":519},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F104.py\",\"isDirectory\":false,\"size\":602},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F105.py\",\"isDirectory\":false,\"size\":1137},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F106.py\",\"isDirectory\":false,\"size\":749},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F107.py\",\"isDirectory\":false,\"size\":938},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F108.py\",\"isDirectory\":false,\"size\":720},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F109.py\",\"isDirectory\":false,\"size\":1664},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F11.py\",\"isDirectory\":false,\"size\":443},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F110.py\",\"isDirectory\":false,\"size\":882},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F111.py\",\"isDirectory\":false,\"size\":859},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F112.py\",\"isDirectory\":false,\"size\":732},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F113.py\",\"isDirectory\":false,\"size\":853},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F114.py\",\"isDirectory\":false,\"size\":447},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F115.py\",\"isDirectory\":false,\"size\":1244},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F116.py\",\"isDirectory\":false,\"size\":521},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F117.py\",\"isDirectory\":false,\"size\":995},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F118.py\",\"isDirectory\":false,\"size\":835},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F119.py\",\"isDirectory\":false,\"size\":1002},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F12.py\",\"isDirectory\":false,\"size\":564},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F120.py\",\"isDirectory\":false,\"size\":706},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F121.py\",\"isDirectory\":false,\"size\":339},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F122.py\",\"isDirectory\":false,\"size\":494},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F123.py\",\"isDirectory\":false,\"size\":1159},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F124.py\",\"isDirectory\":false,\"size\":1661},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F125.py\",\"isDirectory\":false,\"size\":757},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F126.py\",\"isDirectory\":false,\"size\":943},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F127.py\",\"isDirectory\":false,\"size\":1562},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F128.py\",\"isDirectory\":false,\"size\":653},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F129.py\",\"isDirectory\":false,\"size\":2275},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F13.py\",\"isDirectory\":false,\"size\":264},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F130.py\",\"isDirectory\":false,\"size\":940},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F131.py\",\"isDirectory\":false,\"size\":417},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F132.py\",\"isDirectory\":false,\"size\":1029},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F133.py\",\"isDirectory\":false,\"size\":524},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F134.py\",\"isDirectory\":false,\"size\":779},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F135.py\",\"isDirectory\":false,\"size\":481},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F136.py\",\"isDirectory\":false,\"size\":667},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F137.py\",\"isDirectory\":false,\"size\":751},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F138.py\",\"isDirectory\":false,\"size\":295},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F139.py\",\"isDirectory\":false,\"size\":455},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F14.py\",\"isDirectory\":false,\"size\":263},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F140.py\",\"isDirectory\":false,\"size\":989},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F141.py\",\"isDirectory\":false,\"size\":1407},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F142.py\",\"isDirectory\":false,\"size\":822},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F143.py\",\"isDirectory\":false,\"size\":1047},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F144.py\",\"isDirectory\":false,\"size\":780},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F145.py\",\"isDirectory\":false,\"size\":702},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F146.py\",\"isDirectory\":false,\"size\":700},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F147.py\",\"isDirectory\":false,\"size\":734},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F148.py\",\"isDirectory\":false,\"size\":1116},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F149.py\",\"isDirectory\":false,\"size\":880},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F15.py\",\"isDirectory\":false,\"size\":266},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F150.py\",\"isDirectory\":false,\"size\":371},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F151.py\",\"isDirectory\":false,\"size\":647},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F152.py\",\"isDirectory\":false,\"size\":845},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F153.py\",\"isDirectory\":false,\"size\":1442},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F154.py\",\"isDirectory\":false,\"size\":567},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F155.py\",\"isDirectory\":false,\"size\":427},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F156.py\",\"isDirectory\":false,\"size\":750},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F157.py\",\"isDirectory\":false,\"size\":463},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F158.py\",\"isDirectory\":false,\"size\":524},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F159.py\",\"isDirectory\":false,\"size\":1109},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F16.py\",\"isDirectory\":false,\"size\":295},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F160.py\",\"isDirectory\":false,\"size\":968},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F161.py\",\"isDirectory\":false,\"size\":637},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F162.py\",\"isDirectory\":false,\"size\":337},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F163.py\",\"isDirectory\":false,\"size\":425},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F17.py\",\"isDirectory\":false,\"size\":736},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F18.py\",\"isDirectory\":false,\"size\":548},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F19.py\",\"isDirectory\":false,\"size\":714},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F2.py\",\"isDirectory\":false,\"size\":360},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F20.py\",\"isDirectory\":false,\"size\":835},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F21.py\",\"isDirectory\":false,\"size\":493},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F22.py\",\"isDirectory\":false,\"size\":349},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F23.py\",\"isDirectory\":false,\"size\":153},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F24.py\",\"isDirectory\":false,\"size\":260},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F25.py\",\"isDirectory\":false,\"size\":689},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F26.py\",\"isDirectory\":false,\"size\":406},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F27.py\",\"isDirectory\":false,\"size\":205},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F28.py\",\"isDirectory\":false,\"size\":240},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F29.py\",\"isDirectory\":false,\"size\":367},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F3.py\",\"isDirectory\":false,\"size\":590},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F30.py\",\"isDirectory\":false,\"size\":262},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F31.py\",\"isDirectory\":false,\"size\":525},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F32.py\",\"isDirectory\":false,\"size\":1553},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F33.py\",\"isDirectory\":false,\"size\":710},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F34.py\",\"isDirectory\":false,\"size\":172},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F35.py\",\"isDirectory\":false,\"size\":200},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F36.py\",\"isDirectory\":false,\"size\":357},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F37.py\",\"isDirectory\":false,\"size\":481},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F38.py\",\"isDirectory\":false,\"size\":567},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F39.py\",\"isDirectory\":false,\"size\":762},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F4.py\",\"isDirectory\":false,\"size\":530},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F40.py\",\"isDirectory\":false,\"size\":684},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F41.py\",\"isDirectory\":false,\"size\":661},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F42.py\",\"isDirectory\":false,\"size\":239},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F43.py\",\"isDirectory\":false,\"size\":582},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F44.py\",\"isDirectory\":false,\"size\":441},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F45.py\",\"isDirectory\":false,\"size\":158},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F46.py\",\"isDirectory\":false,\"size\":620},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F47.py\",\"isDirectory\":false,\"size\":342},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F48.py\",\"isDirectory\":false,\"size\":271},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F49.py\",\"isDirectory\":false,\"size\":245},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F5.py\",\"isDirectory\":false,\"size\":466},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F50.py\",\"isDirectory\":false,\"size\":412},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F51.py\",\"isDirectory\":false,\"size\":469},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F52.py\",\"isDirectory\":false,\"size\":255},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F53.py\",\"isDirectory\":false,\"size\":129},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F54.py\",\"isDirectory\":false,\"size\":458},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F55.py\",\"isDirectory\":false,\"size\":302},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F56.py\",\"isDirectory\":false,\"size\":559},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F57.py\",\"isDirectory\":false,\"size\":458},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F58.py\",\"isDirectory\":false,\"size\":268},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F59.py\",\"isDirectory\":false,\"size\":477},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F6.py\",\"isDirectory\":false,\"size\":832},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F60.py\",\"isDirectory\":false,\"size\":259},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F61.py\",\"isDirectory\":false,\"size\":559},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F62.py\",\"isDirectory\":false,\"size\":333},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F63.py\",\"isDirectory\":false,\"size\":624},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F64.py\",\"isDirectory\":false,\"size\":560},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F65.py\",\"isDirectory\":false,\"size\":433},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F66.py\",\"isDirectory\":false,\"size\":410},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F67.py\",\"isDirectory\":false,\"size\":876},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F68.py\",\"isDirectory\":false,\"size\":1552},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F69.py\",\"isDirectory\":false,\"size\":709},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F7.py\",\"isDirectory\":false,\"size\":379},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F70.py\",\"isDirectory\":false,\"size\":693},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F71.py\",\"isDirectory\":false,\"size\":589},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F72.py\",\"isDirectory\":false,\"size\":837},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F73.py\",\"isDirectory\":false,\"size\":612},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F74.py\",\"isDirectory\":false,\"size\":779},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F75.py\",\"isDirectory\":false,\"size\":846},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F76.py\",\"isDirectory\":false,\"size\":571},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F77.py\",\"isDirectory\":false,\"size\":467},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F78.py\",\"isDirectory\":false,\"size\":1093},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F79.py\",\"isDirectory\":false,\"size\":600},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F8.py\",\"isDirectory\":false,\"size\":527},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F80.py\",\"isDirectory\":false,\"size\":563},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F81.py\",\"isDirectory\":false,\"size\":1907},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F82.py\",\"isDirectory\":false,\"size\":580},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F83.py\",\"isDirectory\":false,\"size\":855},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F84.py\",\"isDirectory\":false,\"size\":556},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F85.py\",\"isDirectory\":false,\"size\":288},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F86.py\",\"isDirectory\":false,\"size\":660},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F87.py\",\"isDirectory\":false,\"size\":1077},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F88.py\",\"isDirectory\":false,\"size\":784},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F89.py\",\"isDirectory\":false,\"size\":847},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F9.py\",\"isDirectory\":false,\"size\":506},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F90.py\",\"isDirectory\":false,\"size\":531},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F91.py\",\"isDirectory\":false,\"size\":601},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F92.py\",\"isDirectory\":false,\"size\":586},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F93.py\",\"isDirectory\":false,\"size\":974},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F94.py\",\"isDirectory\":false,\"size\":1119},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F95.py\",\"isDirectory\":false,\"size\":1003},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F96.py\",\"isDirectory\":false,\"size\":804},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F97.py\",\"isDirectory\":false,\"size\":421},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F98.py\",\"isDirectory\":false,\"size\":396},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-00-49-17\u002Fhumaneval-solutions\u002F99.py\",\"isDirectory\":false,\"size\":886},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002FSUMMARY.md\",\"isDirectory\":false,\"size\":1343},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fastropy__astropy-12907.patch\",\"isDirectory\":false,\"size\":1066},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fastropy__astropy-14182.patch\",\"isDirectory\":false,\"size\":2387},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fastropy__astropy-14365.patch\",\"isDirectory\":false,\"size\":1286},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fastropy__astropy-14995.patch\",\"isDirectory\":false,\"size\":1109},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fastropy__astropy-6938.patch\",\"isDirectory\":false,\"size\":997},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fastropy__astropy-7746.patch\",\"isDirectory\":false,\"size\":1661},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-10914.patch\",\"isDirectory\":false,\"size\":3338},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-10924.patch\",\"isDirectory\":false,\"size\":1978},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11001.patch\",\"isDirectory\":false,\"size\":4363},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11019.patch\",\"isDirectory\":false,\"size\":20662},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11039.patch\",\"isDirectory\":false,\"size\":4007},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11049.patch\",\"isDirectory\":false,\"size\":1068},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11099.patch\",\"isDirectory\":false,\"size\":1201},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11133.patch\",\"isDirectory\":false,\"size\":1341},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11179.patch\",\"isDirectory\":false,\"size\":2988},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11283.patch\",\"isDirectory\":false,\"size\":2611},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11422.patch\",\"isDirectory\":false,\"size\":1454},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11564.patch\",\"isDirectory\":false,\"size\":10865},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11583.patch\",\"isDirectory\":false,\"size\":1171},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11620.patch\",\"isDirectory\":false,\"size\":1098},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11630.patch\",\"isDirectory\":false,\"size\":1841},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11742.patch\",\"isDirectory\":false,\"size\":1412},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11797.patch\",\"isDirectory\":false,\"size\":2167},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11815.patch\",\"isDirectory\":false,\"size\":994},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11848.patch\",\"isDirectory\":false,\"size\":779},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11905.patch\",\"isDirectory\":false,\"size\":675},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11910.patch\",\"isDirectory\":false,\"size\":2471},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11964.patch\",\"isDirectory\":false,\"size\":3162},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-11999.patch\",\"isDirectory\":false,\"size\":1061},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12113.patch\",\"isDirectory\":false,\"size\":1707},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12125.patch\",\"isDirectory\":false,\"size\":1391},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12184.patch\",\"isDirectory\":false,\"size\":1620},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12284.patch\",\"isDirectory\":false,\"size\":1984},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12286.patch\",\"isDirectory\":false,\"size\":2010},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12308.patch\",\"isDirectory\":false,\"size\":1112},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12453.patch\",\"isDirectory\":false,\"size\":1261},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12470.patch\",\"isDirectory\":false,\"size\":3443},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12497.patch\",\"isDirectory\":false,\"size\":1628},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12589.patch\",\"isDirectory\":false,\"size\":8704},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12700.patch\",\"isDirectory\":false,\"size\":1370},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12708.patch\",\"isDirectory\":false,\"size\":3976},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12747.patch\",\"isDirectory\":false,\"size\":918},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12856.patch\",\"isDirectory\":false,\"size\":958},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12908.patch\",\"isDirectory\":false,\"size\":741},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12915.patch\",\"isDirectory\":false,\"size\":3572},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-12983.patch\",\"isDirectory\":false,\"size\":1202},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13028.patch\",\"isDirectory\":false,\"size\":957},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13033.patch\",\"isDirectory\":false,\"size\":1371},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13158.patch\",\"isDirectory\":false,\"size\":801},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13220.patch\",\"isDirectory\":false,\"size\":2648},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13230.patch\",\"isDirectory\":false,\"size\":812},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13265.patch\",\"isDirectory\":false,\"size\":2794},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13315.patch\",\"isDirectory\":false,\"size\":3133},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13321.patch\",\"isDirectory\":false,\"size\":1950},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13401.patch\",\"isDirectory\":false,\"size\":1536},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13447.patch\",\"isDirectory\":false,\"size\":1584},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13448.patch\",\"isDirectory\":false,\"size\":8055},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13551.patch\",\"isDirectory\":false,\"size\":1111},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13590.patch\",\"isDirectory\":false,\"size\":832},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13658.patch\",\"isDirectory\":false,\"size\":1027},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13660.patch\",\"isDirectory\":false,\"size\":1555},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13710.patch\",\"isDirectory\":false,\"size\":1122},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13757.patch\",\"isDirectory\":false,\"size\":3294},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13768.patch\",\"isDirectory\":false,\"size\":1385},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13925.patch\",\"isDirectory\":false,\"size\":6539},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13933.patch\",\"isDirectory\":false,\"size\":3055},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-13964.patch\",\"isDirectory\":false,\"size\":1366},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14016.patch\",\"isDirectory\":false,\"size\":6674},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14017.patch\",\"isDirectory\":false,\"size\":4103},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14155.patch\",\"isDirectory\":false,\"size\":3383},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14238.patch\",\"isDirectory\":false,\"size\":8121},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14382.patch\",\"isDirectory\":false,\"size\":1051},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14411.patch\",\"isDirectory\":false,\"size\":859},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14534.patch\",\"isDirectory\":false,\"size\":1002},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14580.patch\",\"isDirectory\":false,\"size\":791},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14608.patch\",\"isDirectory\":false,\"size\":1380},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14667.patch\",\"isDirectory\":false,\"size\":2097},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14672.patch\",\"isDirectory\":false,\"size\":2329},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14730.patch\",\"isDirectory\":false,\"size\":3578},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14752.patch\",\"isDirectory\":false,\"size\":1660},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14787.patch\",\"isDirectory\":false,\"size\":1238},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14855.patch\",\"isDirectory\":false,\"size\":1022},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14915.patch\",\"isDirectory\":false,\"size\":813},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14997.patch\",\"isDirectory\":false,\"size\":2326},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-14999.patch\",\"isDirectory\":false,\"size\":1532},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15061.patch\",\"isDirectory\":false,\"size\":897},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15202.patch\",\"isDirectory\":false,\"size\":932},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15213.patch\",\"isDirectory\":false,\"size\":3688},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15252.patch\",\"isDirectory\":false,\"size\":2951},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15320.patch\",\"isDirectory\":false,\"size\":1892},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15347.patch\",\"isDirectory\":false,\"size\":2028},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15388.patch\",\"isDirectory\":false,\"size\":1393},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15400.patch\",\"isDirectory\":false,\"size\":726},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15498.patch\",\"isDirectory\":false,\"size\":810},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15695.patch\",\"isDirectory\":false,\"size\":1852},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15738.patch\",\"isDirectory\":false,\"size\":16463},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15781.patch\",\"isDirectory\":false,\"size\":1194},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15789.patch\",\"isDirectory\":false,\"size\":2131},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15790.patch\",\"isDirectory\":false,\"size\":1721},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15814.patch\",\"isDirectory\":false,\"size\":1012},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15819.patch\",\"isDirectory\":false,\"size\":6980},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15851.patch\",\"isDirectory\":false,\"size\":780},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15902.patch\",\"isDirectory\":false,\"size\":766},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-15996.patch\",\"isDirectory\":false,\"size\":1515},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16041.patch\",\"isDirectory\":false,\"size\":1383},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16046.patch\",\"isDirectory\":false,\"size\":770},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16139.patch\",\"isDirectory\":false,\"size\":1233},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16229.patch\",\"isDirectory\":false,\"size\":7541},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16255.patch\",\"isDirectory\":false,\"size\":1089},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16379.patch\",\"isDirectory\":false,\"size\":1396},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16400.patch\",\"isDirectory\":false,\"size\":1640},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16408.patch\",\"isDirectory\":false,\"size\":1391},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16527.patch\",\"isDirectory\":false,\"size\":777},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16595.patch\",\"isDirectory\":false,\"size\":820},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16816.patch\",\"isDirectory\":false,\"size\":1436},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16820.patch\",\"isDirectory\":false,\"size\":9516},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-16873.patch\",\"isDirectory\":false,\"size\":1620},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-17051.patch\",\"isDirectory\":false,\"size\":2424},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fdjango__django-17087.patch\",\"isDirectory\":false,\"size\":1038},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-18869.patch\",\"isDirectory\":false,\"size\":2882},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-22711.patch\",\"isDirectory\":false,\"size\":2110},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-22835.patch\",\"isDirectory\":false,\"size\":2610},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-23299.patch\",\"isDirectory\":false,\"size\":3759},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-23314.patch\",\"isDirectory\":false,\"size\":757},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-23476.patch\",\"isDirectory\":false,\"size\":3960},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-23562.patch\",\"isDirectory\":false,\"size\":1783},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-23563.patch\",\"isDirectory\":false,\"size\":1158},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-23913.patch\",\"isDirectory\":false,\"size\":7575},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-23964.patch\",\"isDirectory\":false,\"size\":1512},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-23987.patch\",\"isDirectory\":false,\"size\":2552},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-24149.patch\",\"isDirectory\":false,\"size\":1184},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-24265.patch\",\"isDirectory\":false,\"size\":3596},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-24334.patch\",\"isDirectory\":false,\"size\":860},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-24970.patch\",\"isDirectory\":false,\"size\":1331},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-25079.patch\",\"isDirectory\":false,\"size\":510},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-25311.patch\",\"isDirectory\":false,\"size\":1638},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-25332.patch\",\"isDirectory\":false,\"size\":1350},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-25433.patch\",\"isDirectory\":false,\"size\":12018},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-25442.patch\",\"isDirectory\":false,\"size\":1326},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-25498.patch\",\"isDirectory\":false,\"size\":2879},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-26011.patch\",\"isDirectory\":false,\"size\":4736},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmatplotlib__matplotlib-26020.patch\",\"isDirectory\":false,\"size\":1421},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmwaskom__seaborn-2848.patch\",\"isDirectory\":false,\"size\":2947},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmwaskom__seaborn-3010.patch\",\"isDirectory\":false,\"size\":2103},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmwaskom__seaborn-3190.patch\",\"isDirectory\":false,\"size\":964},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fmwaskom__seaborn-3407.patch\",\"isDirectory\":false,\"size\":1937},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpallets__flask-4045.patch\",\"isDirectory\":false,\"size\":1109},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpallets__flask-4992.patch\",\"isDirectory\":false,\"size\":1411},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpallets__flask-5063.patch\",\"isDirectory\":false,\"size\":3954},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpsf__requests-1963.patch\",\"isDirectory\":false,\"size\":5552},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpsf__requests-2148.patch\",\"isDirectory\":false,\"size\":1405},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpsf__requests-2317.patch\",\"isDirectory\":false,\"size\":2076},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpsf__requests-2674.patch\",\"isDirectory\":false,\"size\":6532},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpsf__requests-3362.patch\",\"isDirectory\":false,\"size\":763},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpsf__requests-863.patch\",\"isDirectory\":false,\"size\":1621},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpydata__xarray-3364.patch\",\"isDirectory\":false,\"size\":17560},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpydata__xarray-4094.patch\",\"isDirectory\":false,\"size\":2112},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpydata__xarray-4248.patch\",\"isDirectory\":false,\"size\":4914},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpydata__xarray-4493.patch\",\"isDirectory\":false,\"size\":1459},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpydata__xarray-5131.patch\",\"isDirectory\":false,\"size\":1985},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpylint-dev__pylint-5859.patch\",\"isDirectory\":false,\"size\":737},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpylint-dev__pylint-6506.patch\",\"isDirectory\":false,\"size\":1140},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpylint-dev__pylint-7080.patch\",\"isDirectory\":false,\"size\":1528},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpylint-dev__pylint-7114.patch\",\"isDirectory\":false,\"size\":8776},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpylint-dev__pylint-7228.patch\",\"isDirectory\":false,\"size\":1633},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpylint-dev__pylint-7993.patch\",\"isDirectory\":false,\"size\":1198},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-11143.patch\",\"isDirectory\":false,\"size\":1200},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-11148.patch\",\"isDirectory\":false,\"size\":2851},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-5103.patch\",\"isDirectory\":false,\"size\":13591},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-5221.patch\",\"isDirectory\":false,\"size\":1298},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-5227.patch\",\"isDirectory\":false,\"size\":1023},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-5413.patch\",\"isDirectory\":false,\"size\":1430},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-5495.patch\",\"isDirectory\":false,\"size\":1383},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-5692.patch\",\"isDirectory\":false,\"size\":1475},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-6116.patch\",\"isDirectory\":false,\"size\":549},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-7168.patch\",\"isDirectory\":false,\"size\":1195},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-7220.patch\",\"isDirectory\":false,\"size\":23096},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-7373.patch\",\"isDirectory\":false,\"size\":1778},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-7432.patch\",\"isDirectory\":false,\"size\":4333},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-7490.patch\",\"isDirectory\":false,\"size\":3552},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-8365.patch\",\"isDirectory\":false,\"size\":4479},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-8906.patch\",\"isDirectory\":false,\"size\":2313},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fpytest-dev__pytest-9359.patch\",\"isDirectory\":false,\"size\":1764},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-10297.patch\",\"isDirectory\":false,\"size\":2599},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-10508.patch\",\"isDirectory\":false,\"size\":937},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-10949.patch\",\"isDirectory\":false,\"size\":5311},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-11040.patch\",\"isDirectory\":false,\"size\":1720},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-11281.patch\",\"isDirectory\":false,\"size\":2504},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-12471.patch\",\"isDirectory\":false,\"size\":3534},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-13142.patch\",\"isDirectory\":false,\"size\":1784},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-13241.patch\",\"isDirectory\":false,\"size\":1523},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-13439.patch\",\"isDirectory\":false,\"size\":1636},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-13496.patch\",\"isDirectory\":false,\"size\":2330},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-13497.patch\",\"isDirectory\":false,\"size\":963},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-13584.patch\",\"isDirectory\":false,\"size\":984},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-13779.patch\",\"isDirectory\":false,\"size\":1066},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-14087.patch\",\"isDirectory\":false,\"size\":2059},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-14092.patch\",\"isDirectory\":false,\"size\":1987},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-14894.patch\",\"isDirectory\":false,\"size\":1146},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-14983.patch\",\"isDirectory\":false,\"size\":890},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-15512.patch\",\"isDirectory\":false,\"size\":2939},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-15535.patch\",\"isDirectory\":false,\"size\":2234},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-25500.patch\",\"isDirectory\":false,\"size\":2276},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-25570.patch\",\"isDirectory\":false,\"size\":5583},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-25638.patch\",\"isDirectory\":false,\"size\":2417},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fscikit-learn__scikit-learn-25747.patch\",\"isDirectory\":false,\"size\":1816},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-10325.patch\",\"isDirectory\":false,\"size\":8770},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-10451.patch\",\"isDirectory\":false,\"size\":6245},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-11445.patch\",\"isDirectory\":false,\"size\":5201},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-7686.patch\",\"isDirectory\":false,\"size\":1376},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-7738.patch\",\"isDirectory\":false,\"size\":2486},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-7975.patch\",\"isDirectory\":false,\"size\":4745},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8273.patch\",\"isDirectory\":false,\"size\":1716},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8282.patch\",\"isDirectory\":false,\"size\":5469},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8435.patch\",\"isDirectory\":false,\"size\":6505},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8474.patch\",\"isDirectory\":false,\"size\":3789},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8506.patch\",\"isDirectory\":false,\"size\":2742},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8595.patch\",\"isDirectory\":false,\"size\":1060},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8627.patch\",\"isDirectory\":false,\"size\":2166},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8713.patch\",\"isDirectory\":false,\"size\":1819},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8721.patch\",\"isDirectory\":false,\"size\":1508},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsphinx-doc__sphinx-8801.patch\",\"isDirectory\":false,\"size\":3609},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-11400.patch\",\"isDirectory\":false,\"size\":1279},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-11870.patch\",\"isDirectory\":false,\"size\":4079},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-11897.patch\",\"isDirectory\":false,\"size\":5802},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-12171.patch\",\"isDirectory\":false,\"size\":863},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-12236.patch\",\"isDirectory\":false,\"size\":1305},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-12419.patch\",\"isDirectory\":false,\"size\":1435},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-12454.patch\",\"isDirectory\":false,\"size\":1956},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-12481.patch\",\"isDirectory\":false,\"size\":3308},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13031.patch\",\"isDirectory\":false,\"size\":1635},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13043.patch\",\"isDirectory\":false,\"size\":1314},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13146.patch\",\"isDirectory\":false,\"size\":1434},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13177.patch\",\"isDirectory\":false,\"size\":1402},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13437.patch\",\"isDirectory\":false,\"size\":825},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13471.patch\",\"isDirectory\":false,\"size\":1184},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13480.patch\",\"isDirectory\":false,\"size\":582},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13647.patch\",\"isDirectory\":false,\"size\":1998},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13773.patch\",\"isDirectory\":false,\"size\":1115},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13895.patch\",\"isDirectory\":false,\"size\":1716},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13915.patch\",\"isDirectory\":false,\"size\":4957},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-13971.patch\",\"isDirectory\":false,\"size\":1038},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-14024.patch\",\"isDirectory\":false,\"size\":1766},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-14308.patch\",\"isDirectory\":false,\"size\":1580},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-14317.patch\",\"isDirectory\":false,\"size\":1986},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-14396.patch\",\"isDirectory\":false,\"size\":1641},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-14774.patch\",\"isDirectory\":false,\"size\":676},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-14817.patch\",\"isDirectory\":false,\"size\":2538},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-15011.patch\",\"isDirectory\":false,\"size\":1308},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-15308.patch\",\"isDirectory\":false,\"size\":845},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-15345.patch\",\"isDirectory\":false,\"size\":1437},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-15346.patch\",\"isDirectory\":false,\"size\":1317},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-15609.patch\",\"isDirectory\":false,\"size\":1386},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-15678.patch\",\"isDirectory\":false,\"size\":2817},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-16106.patch\",\"isDirectory\":false,\"size\":3079},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-16281.patch\",\"isDirectory\":false,\"size\":6172},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-16503.patch\",\"isDirectory\":false,\"size\":3870},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-16792.patch\",\"isDirectory\":false,\"size\":1076},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-16988.patch\",\"isDirectory\":false,\"size\":686},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-17022.patch\",\"isDirectory\":false,\"size\":2856},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-17139.patch\",\"isDirectory\":false,\"size\":1702},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-17630.patch\",\"isDirectory\":false,\"size\":4830},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-17655.patch\",\"isDirectory\":false,\"size\":1059},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-18057.patch\",\"isDirectory\":false,\"size\":1448},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-18087.patch\",\"isDirectory\":false,\"size\":4353},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-18189.patch\",\"isDirectory\":false,\"size\":808},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-18199.patch\",\"isDirectory\":false,\"size\":1022},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-18532.patch\",\"isDirectory\":false,\"size\":5112},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-18621.patch\",\"isDirectory\":false,\"size\":728},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-18698.patch\",\"isDirectory\":false,\"size\":4424},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-18835.patch\",\"isDirectory\":false,\"size\":1404},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-19007.patch\",\"isDirectory\":false,\"size\":2934},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-19254.patch\",\"isDirectory\":false,\"size\":2196},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-19487.patch\",\"isDirectory\":false,\"size\":1232},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-20049.patch\",\"isDirectory\":false,\"size\":5519},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-20154.patch\",\"isDirectory\":false,\"size\":1851},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-20212.patch\",\"isDirectory\":false,\"size\":956},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-20322.patch\",\"isDirectory\":false,\"size\":1089},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-20442.patch\",\"isDirectory\":false,\"size\":1260},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-20590.patch\",\"isDirectory\":false,\"size\":876},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-20639.patch\",\"isDirectory\":false,\"size\":3612},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-21055.patch\",\"isDirectory\":false,\"size\":1706},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-21171.patch\",\"isDirectory\":false,\"size\":1486},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-21379.patch\",\"isDirectory\":false,\"size\":1307},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-21612.patch\",\"isDirectory\":false,\"size\":1284},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-21614.patch\",\"isDirectory\":false,\"size\":1561},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-21627.patch\",\"isDirectory\":false,\"size\":1206},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-21847.patch\",\"isDirectory\":false,\"size\":1384},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-22005.patch\",\"isDirectory\":false,\"size\":1834},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-22714.patch\",\"isDirectory\":false,\"size\":23051},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-22840.patch\",\"isDirectory\":false,\"size\":4035},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-23117.patch\",\"isDirectory\":false,\"size\":1221},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-23191.patch\",\"isDirectory\":false,\"size\":12676},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-23262.patch\",\"isDirectory\":false,\"size\":1122},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-24066.patch\",\"isDirectory\":false,\"size\":3805},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-24102.patch\",\"isDirectory\":false,\"size\":658},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-24152.patch\",\"isDirectory\":false,\"size\":1364},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-24213.patch\",\"isDirectory\":false,\"size\":1349},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-patches\u002Fsympy__sympy-24909.patch\",\"isDirectory\":false,\"size\":1150},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-predictions.json\",\"isDirectory\":false,\"size\":850960},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-24-17\u002Fswebench-results.json\",\"isDirectory\":false,\"size\":854544},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002FSUMMARY.md\",\"isDirectory\":false,\"size\":1340},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fastropy__astropy-12907.patch\",\"isDirectory\":false,\"size\":1751},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fastropy__astropy-14182.patch\",\"isDirectory\":false,\"size\":1714},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fastropy__astropy-14365.patch\",\"isDirectory\":false,\"size\":2034},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fastropy__astropy-14995.patch\",\"isDirectory\":false,\"size\":881},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fastropy__astropy-6938.patch\",\"isDirectory\":false,\"size\":646},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fastropy__astropy-7746.patch\",\"isDirectory\":false,\"size\":1083},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-10914.patch\",\"isDirectory\":false,\"size\":3231},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-10924.patch\",\"isDirectory\":false,\"size\":1773},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11001.patch\",\"isDirectory\":false,\"size\":1668},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11019.patch\",\"isDirectory\":false,\"size\":4110},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11039.patch\",\"isDirectory\":false,\"size\":1952},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11049.patch\",\"isDirectory\":false,\"size\":390},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11099.patch\",\"isDirectory\":false,\"size\":1046},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11133.patch\",\"isDirectory\":false,\"size\":1065},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11179.patch\",\"isDirectory\":false,\"size\":2431},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11283.patch\",\"isDirectory\":false,\"size\":2066},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11422.patch\",\"isDirectory\":false,\"size\":1114},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11564.patch\",\"isDirectory\":false,\"size\":2404},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11583.patch\",\"isDirectory\":false,\"size\":1232},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11620.patch\",\"isDirectory\":false,\"size\":943},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11630.patch\",\"isDirectory\":false,\"size\":3388},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11742.patch\",\"isDirectory\":false,\"size\":1460},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11797.patch\",\"isDirectory\":false,\"size\":849},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11815.patch\",\"isDirectory\":false,\"size\":976},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11848.patch\",\"isDirectory\":false,\"size\":672},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11905.patch\",\"isDirectory\":false,\"size\":787},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11910.patch\",\"isDirectory\":false,\"size\":1154},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11964.patch\",\"isDirectory\":false,\"size\":1695},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-11999.patch\",\"isDirectory\":false,\"size\":1419},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12113.patch\",\"isDirectory\":false,\"size\":1357},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12125.patch\",\"isDirectory\":false,\"size\":1071},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12184.patch\",\"isDirectory\":false,\"size\":5565},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12284.patch\",\"isDirectory\":false,\"size\":1446},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12286.patch\",\"isDirectory\":false,\"size\":1460},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12308.patch\",\"isDirectory\":false,\"size\":1585},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12453.patch\",\"isDirectory\":false,\"size\":1441},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12470.patch\",\"isDirectory\":false,\"size\":7453},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12497.patch\",\"isDirectory\":false,\"size\":1044},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12589.patch\",\"isDirectory\":false,\"size\":1610},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12700.patch\",\"isDirectory\":false,\"size\":989},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12708.patch\",\"isDirectory\":false,\"size\":1597},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12747.patch\",\"isDirectory\":false,\"size\":2406},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12856.patch\",\"isDirectory\":false,\"size\":2878},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12908.patch\",\"isDirectory\":false,\"size\":1269},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12915.patch\",\"isDirectory\":false,\"size\":1631},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-12983.patch\",\"isDirectory\":false,\"size\":1083},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-13028.patch\",\"isDirectory\":false,\"size\":980},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-13033.patch\",\"isDirectory\":false,\"size\":1714},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-13158.patch\",\"isDirectory\":false,\"size\":512},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-patches\u002Fdjango__django-13220.patch\",\"isDirectory\":false,\"size\":2162},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-predictions.json\",\"isDirectory\":false,\"size\":95007},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-01-35-39\u002Fswebench-results.json\",\"isDirectory\":false,\"size\":96088},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002FSUMMARY.md\",\"isDirectory\":false,\"size\":926},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fastropy__astropy-12907.patch\",\"isDirectory\":false,\"size\":978},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fastropy__astropy-14182.patch\",\"isDirectory\":false,\"size\":596},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fastropy__astropy-14365.patch\",\"isDirectory\":false,\"size\":1719},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fastropy__astropy-14995.patch\",\"isDirectory\":false,\"size\":1083},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fastropy__astropy-6938.patch\",\"isDirectory\":false,\"size\":513},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fastropy__astropy-7746.patch\",\"isDirectory\":false,\"size\":1357},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-10914.patch\",\"isDirectory\":false,\"size\":3032},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-10924.patch\",\"isDirectory\":false,\"size\":1026},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11001.patch\",\"isDirectory\":false,\"size\":977},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11019.patch\",\"isDirectory\":false,\"size\":5984},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11039.patch\",\"isDirectory\":false,\"size\":1797},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11049.patch\",\"isDirectory\":false,\"size\":614},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11099.patch\",\"isDirectory\":false,\"size\":849},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11133.patch\",\"isDirectory\":false,\"size\":645},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11179.patch\",\"isDirectory\":false,\"size\":497},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11283.patch\",\"isDirectory\":false,\"size\":1547},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11422.patch\",\"isDirectory\":false,\"size\":843},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11564.patch\",\"isDirectory\":false,\"size\":5483},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11583.patch\",\"isDirectory\":false,\"size\":992},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11620.patch\",\"isDirectory\":false,\"size\":642},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11630.patch\",\"isDirectory\":false,\"size\":1430},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11742.patch\",\"isDirectory\":false,\"size\":1723},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11797.patch\",\"isDirectory\":false,\"size\":758},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11815.patch\",\"isDirectory\":false,\"size\":966},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11848.patch\",\"isDirectory\":false,\"size\":905},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11905.patch\",\"isDirectory\":false,\"size\":1035},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11910.patch\",\"isDirectory\":false,\"size\":5923},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11964.patch\",\"isDirectory\":false,\"size\":2428},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-11999.patch\",\"isDirectory\":false,\"size\":851},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12113.patch\",\"isDirectory\":false,\"size\":864},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12125.patch\",\"isDirectory\":false,\"size\":789},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12184.patch\",\"isDirectory\":false,\"size\":4426},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12284.patch\",\"isDirectory\":false,\"size\":571},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12286.patch\",\"isDirectory\":false,\"size\":1965},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12308.patch\",\"isDirectory\":false,\"size\":1175},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12453.patch\",\"isDirectory\":false,\"size\":1134},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12470.patch\",\"isDirectory\":false,\"size\":1159},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12497.patch\",\"isDirectory\":false,\"size\":827},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12589.patch\",\"isDirectory\":false,\"size\":2973},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12700.patch\",\"isDirectory\":false,\"size\":1099},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12708.patch\",\"isDirectory\":false,\"size\":3210},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12747.patch\",\"isDirectory\":false,\"size\":560},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12856.patch\",\"isDirectory\":false,\"size\":2651},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12908.patch\",\"isDirectory\":false,\"size\":912},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12915.patch\",\"isDirectory\":false,\"size\":568},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-12983.patch\",\"isDirectory\":false,\"size\":856},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13028.patch\",\"isDirectory\":false,\"size\":661},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13033.patch\",\"isDirectory\":false,\"size\":987},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13158.patch\",\"isDirectory\":false,\"size\":397},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13220.patch\",\"isDirectory\":false,\"size\":5120},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13230.patch\",\"isDirectory\":false,\"size\":807},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13265.patch\",\"isDirectory\":false,\"size\":4123},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13315.patch\",\"isDirectory\":false,\"size\":685},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13321.patch\",\"isDirectory\":false,\"size\":1095},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13401.patch\",\"isDirectory\":false,\"size\":1241},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13447.patch\",\"isDirectory\":false,\"size\":1438},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13448.patch\",\"isDirectory\":false,\"size\":4040},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13551.patch\",\"isDirectory\":false,\"size\":772},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13590.patch\",\"isDirectory\":false,\"size\":507},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13658.patch\",\"isDirectory\":false,\"size\":1028},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13660.patch\",\"isDirectory\":false,\"size\":851},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13710.patch\",\"isDirectory\":false,\"size\":1405},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13757.patch\",\"isDirectory\":false,\"size\":1547},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13768.patch\",\"isDirectory\":false,\"size\":1002},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13925.patch\",\"isDirectory\":false,\"size\":851},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13933.patch\",\"isDirectory\":false,\"size\":1307},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-13964.patch\",\"isDirectory\":false,\"size\":681},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14016.patch\",\"isDirectory\":false,\"size\":3916},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14017.patch\",\"isDirectory\":false,\"size\":640},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14155.patch\",\"isDirectory\":false,\"size\":5337},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14238.patch\",\"isDirectory\":false,\"size\":786},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14382.patch\",\"isDirectory\":false,\"size\":648},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14411.patch\",\"isDirectory\":false,\"size\":400},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14534.patch\",\"isDirectory\":false,\"size\":378},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14580.patch\",\"isDirectory\":false,\"size\":605},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14608.patch\",\"isDirectory\":false,\"size\":1339},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14667.patch\",\"isDirectory\":false,\"size\":1366},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14672.patch\",\"isDirectory\":false,\"size\":378},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14730.patch\",\"isDirectory\":false,\"size\":1624},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14752.patch\",\"isDirectory\":false,\"size\":1342},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14787.patch\",\"isDirectory\":false,\"size\":1333},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14855.patch\",\"isDirectory\":false,\"size\":1148},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14915.patch\",\"isDirectory\":false,\"size\":707},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14997.patch\",\"isDirectory\":false,\"size\":465},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-14999.patch\",\"isDirectory\":false,\"size\":1411},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15061.patch\",\"isDirectory\":false,\"size\":533},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15202.patch\",\"isDirectory\":false,\"size\":910},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15213.patch\",\"isDirectory\":false,\"size\":517},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15252.patch\",\"isDirectory\":false,\"size\":2284},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15320.patch\",\"isDirectory\":false,\"size\":510},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15347.patch\",\"isDirectory\":false,\"size\":686},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15388.patch\",\"isDirectory\":false,\"size\":1140},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15400.patch\",\"isDirectory\":false,\"size\":757},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15498.patch\",\"isDirectory\":false,\"size\":418},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15695.patch\",\"isDirectory\":false,\"size\":1846},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15738.patch\",\"isDirectory\":false,\"size\":11439},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15781.patch\",\"isDirectory\":false,\"size\":792},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15789.patch\",\"isDirectory\":false,\"size\":2602},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15790.patch\",\"isDirectory\":false,\"size\":1612},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15814.patch\",\"isDirectory\":false,\"size\":530},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15819.patch\",\"isDirectory\":false,\"size\":5394},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15851.patch\",\"isDirectory\":false,\"size\":1430},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15902.patch\",\"isDirectory\":false,\"size\":672},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-15996.patch\",\"isDirectory\":false,\"size\":1036},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16041.patch\",\"isDirectory\":false,\"size\":896},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16046.patch\",\"isDirectory\":false,\"size\":493},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16139.patch\",\"isDirectory\":false,\"size\":661},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16229.patch\",\"isDirectory\":false,\"size\":1068},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16255.patch\",\"isDirectory\":false,\"size\":568},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16379.patch\",\"isDirectory\":false,\"size\":607},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16400.patch\",\"isDirectory\":false,\"size\":1268},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16408.patch\",\"isDirectory\":false,\"size\":2335},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16527.patch\",\"isDirectory\":false,\"size\":490},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16595.patch\",\"isDirectory\":false,\"size\":1668},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16816.patch\",\"isDirectory\":false,\"size\":1111},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16820.patch\",\"isDirectory\":false,\"size\":5271},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16873.patch\",\"isDirectory\":false,\"size\":987},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-16910.patch\",\"isDirectory\":false,\"size\":2132},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-17051.patch\",\"isDirectory\":false,\"size\":709},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fdjango__django-17087.patch\",\"isDirectory\":false,\"size\":728},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-18869.patch\",\"isDirectory\":false,\"size\":1002},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-22711.patch\",\"isDirectory\":false,\"size\":1459},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-22835.patch\",\"isDirectory\":false,\"size\":1404},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-23299.patch\",\"isDirectory\":false,\"size\":3177},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-23314.patch\",\"isDirectory\":false,\"size\":365},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-23476.patch\",\"isDirectory\":false,\"size\":794},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-23562.patch\",\"isDirectory\":false,\"size\":670},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-23563.patch\",\"isDirectory\":false,\"size\":442},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-23913.patch\",\"isDirectory\":false,\"size\":3487},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-23964.patch\",\"isDirectory\":false,\"size\":585},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-23987.patch\",\"isDirectory\":false,\"size\":2767},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-24149.patch\",\"isDirectory\":false,\"size\":782},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-24265.patch\",\"isDirectory\":false,\"size\":1830},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-24334.patch\",\"isDirectory\":false,\"size\":951},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-24970.patch\",\"isDirectory\":false,\"size\":1203},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-25079.patch\",\"isDirectory\":false,\"size\":1532},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-25311.patch\",\"isDirectory\":false,\"size\":2312},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-25332.patch\",\"isDirectory\":false,\"size\":1803},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-25433.patch\",\"isDirectory\":false,\"size\":4849},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-25442.patch\",\"isDirectory\":false,\"size\":1104},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-25498.patch\",\"isDirectory\":false,\"size\":2229},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-26011.patch\",\"isDirectory\":false,\"size\":2422},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmatplotlib__matplotlib-26020.patch\",\"isDirectory\":false,\"size\":1769},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmwaskom__seaborn-2848.patch\",\"isDirectory\":false,\"size\":3772},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmwaskom__seaborn-3010.patch\",\"isDirectory\":false,\"size\":451},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmwaskom__seaborn-3190.patch\",\"isDirectory\":false,\"size\":2747},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fmwaskom__seaborn-3407.patch\",\"isDirectory\":false,\"size\":1401},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpallets__flask-4045.patch\",\"isDirectory\":false,\"size\":881},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpallets__flask-4992.patch\",\"isDirectory\":false,\"size\":1656},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpallets__flask-5063.patch\",\"isDirectory\":false,\"size\":3425},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpsf__requests-1963.patch\",\"isDirectory\":false,\"size\":1070},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpsf__requests-2148.patch\",\"isDirectory\":false,\"size\":3251},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpsf__requests-2317.patch\",\"isDirectory\":false,\"size\":1447},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpsf__requests-2674.patch\",\"isDirectory\":false,\"size\":2659},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpsf__requests-3362.patch\",\"isDirectory\":false,\"size\":819},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpsf__requests-863.patch\",\"isDirectory\":false,\"size\":609},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpydata__xarray-3364.patch\",\"isDirectory\":false,\"size\":7237},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpydata__xarray-4094.patch\",\"isDirectory\":false,\"size\":602},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpydata__xarray-4248.patch\",\"isDirectory\":false,\"size\":5374},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpydata__xarray-4493.patch\",\"isDirectory\":false,\"size\":775},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpydata__xarray-5131.patch\",\"isDirectory\":false,\"size\":863},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpylint-dev__pylint-5859.patch\",\"isDirectory\":false,\"size\":459},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpylint-dev__pylint-6506.patch\",\"isDirectory\":false,\"size\":1458},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpylint-dev__pylint-7080.patch\",\"isDirectory\":false,\"size\":1518},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpylint-dev__pylint-7114.patch\",\"isDirectory\":false,\"size\":2459},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpylint-dev__pylint-7228.patch\",\"isDirectory\":false,\"size\":3065},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpylint-dev__pylint-7993.patch\",\"isDirectory\":false,\"size\":2700},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-11143.patch\",\"isDirectory\":false,\"size\":590},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-11148.patch\",\"isDirectory\":false,\"size\":1208},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-5103.patch\",\"isDirectory\":false,\"size\":13624},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-5221.patch\",\"isDirectory\":false,\"size\":572},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-5227.patch\",\"isDirectory\":false,\"size\":510},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-5413.patch\",\"isDirectory\":false,\"size\":853},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-5495.patch\",\"isDirectory\":false,\"size\":2054},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-5692.patch\",\"isDirectory\":false,\"size\":2671},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-6116.patch\",\"isDirectory\":false,\"size\":678},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-7168.patch\",\"isDirectory\":false,\"size\":455},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-7220.patch\",\"isDirectory\":false,\"size\":14974},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-7373.patch\",\"isDirectory\":false,\"size\":1524},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-7432.patch\",\"isDirectory\":false,\"size\":4292},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-7490.patch\",\"isDirectory\":false,\"size\":71},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-8365.patch\",\"isDirectory\":false,\"size\":1226},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-8906.patch\",\"isDirectory\":false,\"size\":1181},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fpytest-dev__pytest-9359.patch\",\"isDirectory\":false,\"size\":4129},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-10297.patch\",\"isDirectory\":false,\"size\":1049},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-10508.patch\",\"isDirectory\":false,\"size\":1491},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-10949.patch\",\"isDirectory\":false,\"size\":2865},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-11040.patch\",\"isDirectory\":false,\"size\":4811},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-11281.patch\",\"isDirectory\":false,\"size\":4219},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-12471.patch\",\"isDirectory\":false,\"size\":1011},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-13142.patch\",\"isDirectory\":false,\"size\":699},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-13241.patch\",\"isDirectory\":false,\"size\":1081},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-13439.patch\",\"isDirectory\":false,\"size\":1038},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-13496.patch\",\"isDirectory\":false,\"size\":2424},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-13497.patch\",\"isDirectory\":false,\"size\":860},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-13584.patch\",\"isDirectory\":false,\"size\":1541},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-13779.patch\",\"isDirectory\":false,\"size\":953},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-14087.patch\",\"isDirectory\":false,\"size\":1013},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-14092.patch\",\"isDirectory\":false,\"size\":2906},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-14894.patch\",\"isDirectory\":false,\"size\":1859},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-14983.patch\",\"isDirectory\":false,\"size\":1392},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-15512.patch\",\"isDirectory\":false,\"size\":5951},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-15535.patch\",\"isDirectory\":false,\"size\":731},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-25500.patch\",\"isDirectory\":false,\"size\":2823},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-25570.patch\",\"isDirectory\":false,\"size\":4081},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-25638.patch\",\"isDirectory\":false,\"size\":3053},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fscikit-learn__scikit-learn-25747.patch\",\"isDirectory\":false,\"size\":490},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-10325.patch\",\"isDirectory\":false,\"size\":5994},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-10451.patch\",\"isDirectory\":false,\"size\":4014},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-11445.patch\",\"isDirectory\":false,\"size\":3039},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-7686.patch\",\"isDirectory\":false,\"size\":2304},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-7738.patch\",\"isDirectory\":false,\"size\":918},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-7975.patch\",\"isDirectory\":false,\"size\":3879},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8273.patch\",\"isDirectory\":false,\"size\":4303},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8282.patch\",\"isDirectory\":false,\"size\":2282},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8435.patch\",\"isDirectory\":false,\"size\":2649},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8474.patch\",\"isDirectory\":false,\"size\":1100},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8506.patch\",\"isDirectory\":false,\"size\":1449},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8595.patch\",\"isDirectory\":false,\"size\":1911},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8627.patch\",\"isDirectory\":false,\"size\":2417},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8713.patch\",\"isDirectory\":false,\"size\":704},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8721.patch\",\"isDirectory\":false,\"size\":581},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsphinx-doc__sphinx-8801.patch\",\"isDirectory\":false,\"size\":4858},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-11400.patch\",\"isDirectory\":false,\"size\":2560},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-11870.patch\",\"isDirectory\":false,\"size\":1737},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-11897.patch\",\"isDirectory\":false,\"size\":6224},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-12171.patch\",\"isDirectory\":false,\"size\":625},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-12236.patch\",\"isDirectory\":false,\"size\":749},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-12419.patch\",\"isDirectory\":false,\"size\":1421},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-12454.patch\",\"isDirectory\":false,\"size\":827},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-12481.patch\",\"isDirectory\":false,\"size\":1984},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13031.patch\",\"isDirectory\":false,\"size\":2447},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13043.patch\",\"isDirectory\":false,\"size\":877},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13146.patch\",\"isDirectory\":false,\"size\":2400},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13177.patch\",\"isDirectory\":false,\"size\":456},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13437.patch\",\"isDirectory\":false,\"size\":546},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13471.patch\",\"isDirectory\":false,\"size\":468},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13480.patch\",\"isDirectory\":false,\"size\":716},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13647.patch\",\"isDirectory\":false,\"size\":1176},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13773.patch\",\"isDirectory\":false,\"size\":1409},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13895.patch\",\"isDirectory\":false,\"size\":3152},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13915.patch\",\"isDirectory\":false,\"size\":2565},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-13971.patch\",\"isDirectory\":false,\"size\":564},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-14024.patch\",\"isDirectory\":false,\"size\":3313},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-14308.patch\",\"isDirectory\":false,\"size\":8868},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-14317.patch\",\"isDirectory\":false,\"size\":1906},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-14396.patch\",\"isDirectory\":false,\"size\":1600},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-14774.patch\",\"isDirectory\":false,\"size\":515},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-14817.patch\",\"isDirectory\":false,\"size\":844},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-15011.patch\",\"isDirectory\":false,\"size\":1431},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-15308.patch\",\"isDirectory\":false,\"size\":743},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-15345.patch\",\"isDirectory\":false,\"size\":399},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-15346.patch\",\"isDirectory\":false,\"size\":1232},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-15609.patch\",\"isDirectory\":false,\"size\":467},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-15678.patch\",\"isDirectory\":false,\"size\":2652},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-16106.patch\",\"isDirectory\":false,\"size\":2244},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-16281.patch\",\"isDirectory\":false,\"size\":3210},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-16503.patch\",\"isDirectory\":false,\"size\":738},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-16792.patch\",\"isDirectory\":false,\"size\":1119},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-16988.patch\",\"isDirectory\":false,\"size\":744},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-17022.patch\",\"isDirectory\":false,\"size\":1771},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-17139.patch\",\"isDirectory\":false,\"size\":1976},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-17630.patch\",\"isDirectory\":false,\"size\":5440},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-17655.patch\",\"isDirectory\":false,\"size\":746},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-18057.patch\",\"isDirectory\":false,\"size\":1058},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-18087.patch\",\"isDirectory\":false,\"size\":2686},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-18189.patch\",\"isDirectory\":false,\"size\":633},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-18199.patch\",\"isDirectory\":false,\"size\":793},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-18532.patch\",\"isDirectory\":false,\"size\":2981},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-18621.patch\",\"isDirectory\":false,\"size\":897},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-18698.patch\",\"isDirectory\":false,\"size\":2055},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-18835.patch\",\"isDirectory\":false,\"size\":1226},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-19007.patch\",\"isDirectory\":false,\"size\":5954},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-19254.patch\",\"isDirectory\":false,\"size\":2433},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-19487.patch\",\"isDirectory\":false,\"size\":1741},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-20049.patch\",\"isDirectory\":false,\"size\":1552},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-20154.patch\",\"isDirectory\":false,\"size\":913},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-20212.patch\",\"isDirectory\":false,\"size\":481},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-20322.patch\",\"isDirectory\":false,\"size\":792},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-20442.patch\",\"isDirectory\":false,\"size\":2889},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-20590.patch\",\"isDirectory\":false,\"size\":366},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-20639.patch\",\"isDirectory\":false,\"size\":912},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-21055.patch\",\"isDirectory\":false,\"size\":1176},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-21171.patch\",\"isDirectory\":false,\"size\":967},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-21379.patch\",\"isDirectory\":false,\"size\":776},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-21612.patch\",\"isDirectory\":false,\"size\":2126},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-21614.patch\",\"isDirectory\":false,\"size\":724},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-21627.patch\",\"isDirectory\":false,\"size\":1014},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-21847.patch\",\"isDirectory\":false,\"size\":1015},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-22005.patch\",\"isDirectory\":false,\"size\":1273},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-22714.patch\",\"isDirectory\":false,\"size\":1100},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-22840.patch\",\"isDirectory\":false,\"size\":651},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-23117.patch\",\"isDirectory\":false,\"size\":716},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-23191.patch\",\"isDirectory\":false,\"size\":2118},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-23262.patch\",\"isDirectory\":false,\"size\":586},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-24066.patch\",\"isDirectory\":false,\"size\":1295},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-24102.patch\",\"isDirectory\":false,\"size\":740},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-24152.patch\",\"isDirectory\":false,\"size\":1132},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-24213.patch\",\"isDirectory\":false,\"size\":971},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-patches\u002Fsympy__sympy-24909.patch\",\"isDirectory\":false,\"size\":1674},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-predictions.json\",\"isDirectory\":false,\"size\":574240},{\"path\":\"benchmarks\u002Fresults\u002F2026-01-05-10-37-54\u002Fswebench-loki-results.json\",\"isDirectory\":false,\"size\":578172},{\"path\":\"benchmarks\u002Fresults\u002FSUMMARY.md\",\"isDirectory\":false,\"size\":926},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-results.json\",\"isDirectory\":false,\"size\":18354},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F0.py\",\"isDirectory\":false,\"size\":605},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F1.py\",\"isDirectory\":false,\"size\":1050},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F10.py\",\"isDirectory\":false,\"size\":836},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F100.py\",\"isDirectory\":false,\"size\":652},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F101.py\",\"isDirectory\":false,\"size\":542},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F102.py\",\"isDirectory\":false,\"size\":515},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F103.py\",\"isDirectory\":false,\"size\":655},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F104.py\",\"isDirectory\":false,\"size\":593},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F105.py\",\"isDirectory\":false,\"size\":1115},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F106.py\",\"isDirectory\":false,\"size\":839},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F107.py\",\"isDirectory\":false,\"size\":1017},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F108.py\",\"isDirectory\":false,\"size\":773},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F109.py\",\"isDirectory\":false,\"size\":1898},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F11.py\",\"isDirectory\":false,\"size\":521},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F110.py\",\"isDirectory\":false,\"size\":953},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F111.py\",\"isDirectory\":false,\"size\":959},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F112.py\",\"isDirectory\":false,\"size\":854},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F113.py\",\"isDirectory\":false,\"size\":987},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F114.py\",\"isDirectory\":false,\"size\":593},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F115.py\",\"isDirectory\":false,\"size\":1206},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F116.py\",\"isDirectory\":false,\"size\":600},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F117.py\",\"isDirectory\":false,\"size\":1069},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F118.py\",\"isDirectory\":false,\"size\":923},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F119.py\",\"isDirectory\":false,\"size\":1121},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F12.py\",\"isDirectory\":false,\"size\":647},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F120.py\",\"isDirectory\":false,\"size\":751},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F121.py\",\"isDirectory\":false,\"size\":394},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F122.py\",\"isDirectory\":false,\"size\":580},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F123.py\",\"isDirectory\":false,\"size\":1180},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F124.py\",\"isDirectory\":false,\"size\":1607},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F125.py\",\"isDirectory\":false,\"size\":836},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F126.py\",\"isDirectory\":false,\"size\":1008},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F127.py\",\"isDirectory\":false,\"size\":1334},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F128.py\",\"isDirectory\":false,\"size\":755},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F129.py\",\"isDirectory\":false,\"size\":2217},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F13.py\",\"isDirectory\":false,\"size\":372},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F130.py\",\"isDirectory\":false,\"size\":1051},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F131.py\",\"isDirectory\":false,\"size\":513},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F132.py\",\"isDirectory\":false,\"size\":953},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F133.py\",\"isDirectory\":false,\"size\":601},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F134.py\",\"isDirectory\":false,\"size\":735},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F135.py\",\"isDirectory\":false,\"size\":560},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F136.py\",\"isDirectory\":false,\"size\":808},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F137.py\",\"isDirectory\":false,\"size\":830},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F138.py\",\"isDirectory\":false,\"size\":374},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F139.py\",\"isDirectory\":false,\"size\":558},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F14.py\",\"isDirectory\":false,\"size\":346},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F140.py\",\"isDirectory\":false,\"size\":697},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F141.py\",\"isDirectory\":false,\"size\":1468},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F142.py\",\"isDirectory\":false,\"size\":906},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F143.py\",\"isDirectory\":false,\"size\":1126},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F144.py\",\"isDirectory\":false,\"size\":859},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F145.py\",\"isDirectory\":false,\"size\":715},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F146.py\",\"isDirectory\":false,\"size\":664},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F147.py\",\"isDirectory\":false,\"size\":859},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F148.py\",\"isDirectory\":false,\"size\":1195},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F149.py\",\"isDirectory\":false,\"size\":959},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F15.py\",\"isDirectory\":false,\"size\":344},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F150.py\",\"isDirectory\":false,\"size\":524},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F151.py\",\"isDirectory\":false,\"size\":672},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F152.py\",\"isDirectory\":false,\"size\":924},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F153.py\",\"isDirectory\":false,\"size\":1554},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F154.py\",\"isDirectory\":false,\"size\":736},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F155.py\",\"isDirectory\":false,\"size\":506},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F156.py\",\"isDirectory\":false,\"size\":873},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F157.py\",\"isDirectory\":false,\"size\":743},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F158.py\",\"isDirectory\":false,\"size\":603},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F159.py\",\"isDirectory\":false,\"size\":1165},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F16.py\",\"isDirectory\":false,\"size\":373},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F160.py\",\"isDirectory\":false,\"size\":1035},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F161.py\",\"isDirectory\":false,\"size\":716},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F162.py\",\"isDirectory\":false,\"size\":416},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F163.py\",\"isDirectory\":false,\"size\":494},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F17.py\",\"isDirectory\":false,\"size\":796},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F18.py\",\"isDirectory\":false,\"size\":595},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F19.py\",\"isDirectory\":false,\"size\":871},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F2.py\",\"isDirectory\":false,\"size\":437},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F20.py\",\"isDirectory\":false,\"size\":913},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F21.py\",\"isDirectory\":false,\"size\":571},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F22.py\",\"isDirectory\":false,\"size\":427},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F23.py\",\"isDirectory\":false,\"size\":231},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F24.py\",\"isDirectory\":false,\"size\":339},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F25.py\",\"isDirectory\":false,\"size\":725},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F26.py\",\"isDirectory\":false,\"size\":480},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F27.py\",\"isDirectory\":false,\"size\":283},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F28.py\",\"isDirectory\":false,\"size\":318},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F29.py\",\"isDirectory\":false,\"size\":445},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F3.py\",\"isDirectory\":false,\"size\":667},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F30.py\",\"isDirectory\":false,\"size\":340},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F31.py\",\"isDirectory\":false,\"size\":606},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F32.py\",\"isDirectory\":false,\"size\":1127},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F33.py\",\"isDirectory\":false,\"size\":691},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F34.py\",\"isDirectory\":false,\"size\":250},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F35.py\",\"isDirectory\":false,\"size\":278},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F36.py\",\"isDirectory\":false,\"size\":435},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F37.py\",\"isDirectory\":false,\"size\":563},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F38.py\",\"isDirectory\":false,\"size\":985},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F39.py\",\"isDirectory\":false,\"size\":840},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F4.py\",\"isDirectory\":false,\"size\":711},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F40.py\",\"isDirectory\":false,\"size\":1050},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F41.py\",\"isDirectory\":false,\"size\":739},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F42.py\",\"isDirectory\":false,\"size\":317},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F43.py\",\"isDirectory\":false,\"size\":660},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F44.py\",\"isDirectory\":false,\"size\":545},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F45.py\",\"isDirectory\":false,\"size\":236},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F46.py\",\"isDirectory\":false,\"size\":786},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F47.py\",\"isDirectory\":false,\"size\":420},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F48.py\",\"isDirectory\":false,\"size\":349},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F49.py\",\"isDirectory\":false,\"size\":482},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F5.py\",\"isDirectory\":false,\"size\":580},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F50.py\",\"isDirectory\":false,\"size\":288},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F51.py\",\"isDirectory\":false,\"size\":585},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F52.py\",\"isDirectory\":false,\"size\":333},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F53.py\",\"isDirectory\":false,\"size\":207},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F54.py\",\"isDirectory\":false,\"size\":536},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F55.py\",\"isDirectory\":false,\"size\":317},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F56.py\",\"isDirectory\":false,\"size\":647},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F57.py\",\"isDirectory\":false,\"size\":602},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F58.py\",\"isDirectory\":false,\"size\":346},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F59.py\",\"isDirectory\":false,\"size\":710},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F6.py\",\"isDirectory\":false,\"size\":952},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F60.py\",\"isDirectory\":false,\"size\":337},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F61.py\",\"isDirectory\":false,\"size\":638},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F62.py\",\"isDirectory\":false,\"size\":411},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F63.py\",\"isDirectory\":false,\"size\":702},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F64.py\",\"isDirectory\":false,\"size\":689},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F65.py\",\"isDirectory\":false,\"size\":493},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F66.py\",\"isDirectory\":false,\"size\":547},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F67.py\",\"isDirectory\":false,\"size\":984},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F68.py\",\"isDirectory\":false,\"size\":1585},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F69.py\",\"isDirectory\":false,\"size\":787},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F7.py\",\"isDirectory\":false,\"size\":456},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F70.py\",\"isDirectory\":false,\"size\":864},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F71.py\",\"isDirectory\":false,\"size\":905},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F72.py\",\"isDirectory\":false,\"size\":847},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F73.py\",\"isDirectory\":false,\"size\":690},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F74.py\",\"isDirectory\":false,\"size\":857},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F75.py\",\"isDirectory\":false,\"size\":1029},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F76.py\",\"isDirectory\":false,\"size\":649},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F77.py\",\"isDirectory\":false,\"size\":572},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F78.py\",\"isDirectory\":false,\"size\":1169},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F79.py\",\"isDirectory\":false,\"size\":678},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F8.py\",\"isDirectory\":false,\"size\":614},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F80.py\",\"isDirectory\":false,\"size\":668},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F81.py\",\"isDirectory\":false,\"size\":1995},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F82.py\",\"isDirectory\":false,\"size\":550},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F83.py\",\"isDirectory\":false,\"size\":304},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F84.py\",\"isDirectory\":false,\"size\":634},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F85.py\",\"isDirectory\":false,\"size\":366},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F86.py\",\"isDirectory\":false,\"size\":738},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F87.py\",\"isDirectory\":false,\"size\":1026},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F88.py\",\"isDirectory\":false,\"size\":856},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F89.py\",\"isDirectory\":false,\"size\":807},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F9.py\",\"isDirectory\":false,\"size\":583},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F90.py\",\"isDirectory\":false,\"size\":587},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F91.py\",\"isDirectory\":false,\"size\":730},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F92.py\",\"isDirectory\":false,\"size\":733},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F93.py\",\"isDirectory\":false,\"size\":757},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F94.py\",\"isDirectory\":false,\"size\":1094},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F95.py\",\"isDirectory\":false,\"size\":1074},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F96.py\",\"isDirectory\":false,\"size\":936},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F97.py\",\"isDirectory\":false,\"size\":463},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F98.py\",\"isDirectory\":false,\"size\":492},{\"path\":\"benchmarks\u002Fresults\u002Fhumaneval-loki-solutions\u002F99.py\",\"isDirectory\":false,\"size\":1069},{\"path\":\"benchmarks\u002Frun-benchmarks.sh\",\"isDirectory\":false,\"size\":62406},{\"path\":\"benchmarks\u002Fsubmission-template\u002FREADME.md\",\"isDirectory\":false,\"size\":3575},{\"path\":\"benchmarks\u002Fsubmission-template\u002Fmetadata.yaml\",\"isDirectory\":false,\"size\":1940},{\"path\":\"demo\u002FREADME.md\",\"isDirectory\":false,\"size\":3075},{\"path\":\"demo\u002Floki-demo.gif\",\"isDirectory\":false,\"size\":1341081},{\"path\":\"demo\u002Frecord-demo.sh\",\"isDirectory\":false,\"size\":2074},{\"path\":\"demo\u002Frecord-full-demo.sh\",\"isDirectory\":false,\"size\":5922},{\"path\":\"demo\u002Frecordings\u002Floki-demo.cast\",\"isDirectory\":false,\"size\":9465},{\"path\":\"demo\u002Frun-demo-auto.sh\",\"isDirectory\":false,\"size\":6541},{\"path\":\"demo\u002Frun-demo.sh\",\"isDirectory\":false,\"size\":7758},{\"path\":\"demo\u002Fvhs-tape.tape\",\"isDirectory\":false,\"size\":3347},{\"path\":\"demo\u002Fvoice-over-script.md\",\"isDirectory\":false,\"size\":6541},{\"path\":\"docs\u002FCOMPETITIVE-ANALYSIS.md\",\"isDirectory\":false,\"size\":11897},{\"path\":\"docs\u002Fscreenshots\u002FREADME.md\",\"isDirectory\":false,\"size\":4024},{\"path\":\"docs\u002Fscreenshots\u002Fdashboard-agents.png\",\"isDirectory\":false,\"size\":70209},{\"path\":\"docs\u002Fscreenshots\u002Fdashboard-tasks.png\",\"isDirectory\":false,\"size\":54428},{\"path\":\"examples\u002Fapi-only.md\",\"isDirectory\":false,\"size\":1809},{\"path\":\"examples\u002Ffull-stack-demo.md\",\"isDirectory\":false,\"size\":2901},{\"path\":\"examples\u002Fsimple-todo-app.md\",\"isDirectory\":false,\"size\":1439},{\"path\":\"examples\u002Fstatic-landing-page.md\",\"isDirectory\":false,\"size\":1775},{\"path\":\"examples\u002Ftodo-app-generated\u002F.loki\u002FCONTINUITY.md\",\"isDirectory\":false,\"size\":1794},{\"path\":\"examples\u002Ftodo-app-generated\u002F.loki\u002Fqueue\u002Fcompleted.json\",\"isDirectory\":false,\"size\":13},{\"path\":\"examples\u002Ftodo-app-generated\u002F.loki\u002Fqueue\u002Fdead-letter.json\",\"isDirectory\":false,\"size\":13},{\"path\":\"examples\u002Ftodo-app-generated\u002F.loki\u002Fqueue\u002Ffailed.json\",\"isDirectory\":false,\"size\":13},{\"path\":\"examples\u002Ftodo-app-generated\u002F.loki\u002Fqueue\u002Fin-progress.json\",\"isDirectory\":false,\"size\":13},{\"path\":\"examples\u002Ftodo-app-generated\u002F.loki\u002Fqueue\u002Fpending.json\",\"isDirectory\":false,\"size\":10631},{\"path\":\"examples\u002Ftodo-app-generated\u002F.loki\u002Fstate\u002Forchestrator.json\",\"isDirectory\":false,\"size\":999},{\"path\":\"examples\u002Ftodo-app-generated\u002FE2E_VERIFICATION_REPORT.md\",\"isDirectory\":false,\"size\":21593},{\"path\":\"examples\u002Ftodo-app-generated\u002FPRD.md\",\"isDirectory\":false,\"size\":1439},{\"path\":\"examples\u002Ftodo-app-generated\u002FTASK_018_COMPLETION.md\",\"isDirectory\":false,\"size\":7157},{\"path\":\"examples\u002Ftodo-app-generated\u002FTESTING_DOCUMENTATION.md\",\"isDirectory\":false,\"size\":8789},{\"path\":\"examples\u002Ftodo-app-generated\u002FTEST_REPORT.md\",\"isDirectory\":false,\"size\":6080},{\"path\":\"examples\u002Ftodo-app-generated\u002FVERIFICATION_SUMMARY.txt\",\"isDirectory\":false,\"size\":10860},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002F.gitignore\",\"isDirectory\":false,\"size\":48},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Fpackage-lock.json\",\"isDirectory\":false,\"size\":60157},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Fpackage.json\",\"isDirectory\":false,\"size\":733},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Fsrc\u002Fdb\u002Fdatabase.ts\",\"isDirectory\":false,\"size\":543},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Fsrc\u002Fdb\u002Findex.ts\",\"isDirectory\":false,\"size\":123},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Fsrc\u002Fdb\u002Fmigrations.ts\",\"isDirectory\":false,\"size\":1044},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Fsrc\u002Fdb\u002Fschema.sql\",\"isDirectory\":false,\"size\":187},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Fsrc\u002Findex.ts\",\"isDirectory\":false,\"size\":1011},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Fsrc\u002Froutes\u002Ftodos.ts\",\"isDirectory\":false,\"size\":4361},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Fsrc\u002Ftypes\u002Findex.ts\",\"isDirectory\":false,\"size\":594},{\"path\":\"examples\u002Ftodo-app-generated\u002Fbackend\u002Ftsconfig.json\",\"isDirectory\":false,\"size\":795},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002F.gitignore\",\"isDirectory\":false,\"size\":253},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Findex.html\",\"isDirectory\":false,\"size\":357},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fpackage-lock.json\",\"isDirectory\":false,\"size\":60539},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fpackage.json\",\"isDirectory\":false,\"size\":569},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002FApp.css\",\"isDirectory\":false,\"size\":6112},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002FApp.tsx\",\"isDirectory\":false,\"size\":1889},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Fapi\u002Ftodos.ts\",\"isDirectory\":false,\"size\":1354},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Fcomponents\u002FConfirmDialog.tsx\",\"isDirectory\":false,\"size\":683},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Fcomponents\u002FEmptyState.tsx\",\"isDirectory\":false,\"size\":229},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Fcomponents\u002FTodoForm.tsx\",\"isDirectory\":false,\"size\":1117},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Fcomponents\u002FTodoItem.tsx\",\"isDirectory\":false,\"size\":847},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Fcomponents\u002FTodoList.tsx\",\"isDirectory\":false,\"size\":569},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Fhooks\u002FuseTodos.ts\",\"isDirectory\":false,\"size\":1924},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Findex.css\",\"isDirectory\":false,\"size\":732},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Fmain.tsx\",\"isDirectory\":false,\"size\":236},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fsrc\u002Fvite-env.d.ts\",\"isDirectory\":false,\"size\":38},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Ftsconfig.json\",\"isDirectory\":false,\"size\":552},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Ftsconfig.node.json\",\"isDirectory\":false,\"size\":213},{\"path\":\"examples\u002Ftodo-app-generated\u002Ffrontend\u002Fvite.config.ts\",\"isDirectory\":false,\"size\":276},{\"path\":\"integrations\u002Fvibe-kanban.md\",\"isDirectory\":false,\"size\":5391},{\"path\":\"references\u002Fadvanced-patterns.md\",\"isDirectory\":false,\"size\":15136},{\"path\":\"references\u002Fagent-types.md\",\"isDirectory\":false,\"size\":7772},{\"path\":\"references\u002Fagents.md\",\"isDirectory\":false,\"size\":23078},{\"path\":\"references\u002Fbusiness-ops.md\",\"isDirectory\":false,\"size\":11801},{\"path\":\"references\u002Fcore-workflow.md\",\"isDirectory\":false,\"size\":9384},{\"path\":\"references\u002Fdeployment.md\",\"isDirectory\":false,\"size\":14020},{\"path\":\"references\u002Flab-research-patterns.md\",\"isDirectory\":false,\"size\":17564},{\"path\":\"references\u002Fmemory-system.md\",\"isDirectory\":false,\"size\":12977},{\"path\":\"references\u002Fopenai-patterns.md\",\"isDirectory\":false,\"size\":17153},{\"path\":\"references\u002Fproduction-patterns.md\",\"isDirectory\":false,\"size\":15417},{\"path\":\"references\u002Fquality-control.md\",\"isDirectory\":false,\"size\":13263},{\"path\":\"references\u002Fsdlc-phases.md\",\"isDirectory\":false,\"size\":9496},{\"path\":\"references\u002Ftask-queue.md\",\"isDirectory\":false,\"size\":9145},{\"path\":\"references\u002Ftool-orchestration.md\",\"isDirectory\":false,\"size\":22271},{\"path\":\"scripts\u002Fexport-to-vibe-kanban.sh\",\"isDirectory\":false,\"size\":5168},{\"path\":\"scripts\u002Floki-wrapper.sh\",\"isDirectory\":false,\"size\":8345},{\"path\":\"scripts\u002Ftake-screenshots.js\",\"isDirectory\":false,\"size\":1831},{\"path\":\"tests\u002Frun-all-tests.sh\",\"isDirectory\":false,\"size\":4055},{\"path\":\"tests\u002Ftest-agent-timeout.sh\",\"isDirectory\":false,\"size\":9138},{\"path\":\"tests\u002Ftest-bootstrap.sh\",\"isDirectory\":false,\"size\":5446},{\"path\":\"tests\u002Ftest-circuit-breaker.sh\",\"isDirectory\":false,\"size\":9953},{\"path\":\"tests\u002Ftest-state-recovery.sh\",\"isDirectory\":false,\"size\":10902},{\"path\":\"tests\u002Ftest-task-queue.sh\",\"isDirectory\":false,\"size\":10109},{\"path\":\"tests\u002Ftest-wrapper.sh\",\"isDirectory\":false,\"size\":8606}]",{"code":44,"message":45,"data":46},200,"success",{"items":47,"stats":48,"page":51},[],{"averageRating":49,"totalRatings":49,"ratingCounts":50},0,[49,49,49,49,49],{"limit":52,"offset":49,"hasMore":53,"nextOffset":52,"ratedOnly":16},15,false]