请审查一个历史代码变更对实现责任的影响，并明确比较证据不能建立的结论。

比较别名：review-base..review-head
backend：codegraph

请列出需要复核的实现位置，并区分结构证据与内容证据的边界。位置必须使用仓库相对 path 与文件内 qualname；不要把模块全限定名当作唯一身份。evidence_kind 必须从给定枚举中选择。

decision.outcome 只能是 review_required 或 review_required_with_uncertainty；decision.boundary 只能是 content_comparison_is_available、edge_delta_does_not_prove_behavior 或 content_comparison_is_unavailable。
review_loci 的每项必须包含 path、qualname、evidence_kind、rationale；evidence_kind 只能是 source_text、content_delta、graph_delta 或 graph_boundary。

只输出一个 JSON 对象，顶层字段只能是 decision、review_loci、trust：
{
  "decision": {"outcome": "...", "boundary": "...", "rationale": "..."},
  "review_loci": [
    {"path": "...", "qualname": "...", "evidence_kind": "...", "rationale": "..."}
  ],
  "trust": {
    "availability": "...",
    "comparison": {
      "base_ref": "review-base",
      "head_ref": "review-head",
      "base_backend": "codegraph",
      "head_backend": "codegraph",
      "base_provisioned": "...",
      "head_provisioned": "...",
      "content_comparison": {"status": "...", "reason": "..."}
    }
  }
}
