{
  "experiment": "ci-run",
  "generated_at": "2026-05-03 17:00 UTC",
  "workload_docs": {
    "uri-bytestring": [
      {
        "mutations": [
          "userinfo_missing_at_749eda6_1"
        ],
        "tasks": [
          {
            "property": "RoundTripUri",
            "witnesses": [
              {
                "test_fn": "witness_round_trip_uri_case_userinfo",
                "note": "URI http://alice:secret@example.com/path must round-trip"
              }
            ]
          }
        ],
        "source": {
          "repo": "https://github.com/Soostone/uri-bytestring",
          "commits": [
            "749eda6df2d4e8647f556c51e5e3bf55e12e1fdf"
          ],
          "commit_subjects": [
            "Fix serialization bug with userinfo"
          ],
          "origin": "internal",
          "summary": "serializeUserInfo emitted '<user>:<pass>' with no trailing '@', so a serialized URI omitted the separator between userinfo and the host. Reversing the fix restores the original bug."
        },
        "injection": {
          "kind": "patch",
          "files": [
            "src/URI/ByteString/Internal.hs"
          ],
          "locations": [
            {
              "file": "src/URI/ByteString/Internal.hs",
              "line": 338,
              "symbol": "serializeUserInfo"
            }
          ],
          "patch": "patches/userinfo_missing_at_749eda6_1.patch"
        },
        "bug": {
          "short_name": "userinfo_serialize_missing_at",
          "invariant": "For any URI containing userinfo, parseURI strict (serializeURIRef' uri) must yield a URI equal to the original.",
          "how_triggered": "Reverse-applying the patch removes the trailing '<> c8 '@'' from serializeUserInfo. A URI with userinfo serializes to '<scheme>://<user>:<pass><host>...' which the strict parser rejects (or re-parses with the userinfo absorbed into the host)."
        }
      },
      {
        "mutations": [
          "authority_missing_double_slash_ac784c3_1"
        ],
        "tasks": [
          {
            "property": "RelRefRoundTrip",
            "witnesses": [
              {
                "test_fn": "witness_rel_ref_round_trip_case_double_slash",
                "note": "RelativeRef //example.org:1234/api/v1 must round-trip"
              }
            ]
          }
        ],
        "source": {
          "repo": "https://github.com/Soostone/uri-bytestring",
          "commits": [
            "ac784c373ef013046ddcb08f73fdc1af0f0272a1"
          ],
          "commit_subjects": [
            "Fix resialisation of authority"
          ],
          "origin": "internal",
          "summary": "serializeAuthority did not emit the leading '//' before host; serializeURI compensated by emitting 'scheme://' rather than 'scheme:'. The fix moves '//' into serializeAuthority where it belongs and keeps serializeURI emitting the bare ':' separator. Reversing the patch reinstates both halves of the bug."
        },
        "injection": {
          "kind": "patch",
          "files": [
            "src/URI/ByteString/Internal.hs"
          ],
          "locations": [
            {
              "file": "src/URI/ByteString/Internal.hs",
              "line": 193,
              "symbol": "normalizeURI"
            },
            {
              "file": "src/URI/ByteString/Internal.hs",
              "line": 313,
              "symbol": "serializeAuthority"
            }
          ],
          "patch": "patches/authority_missing_double_slash_ac784c3_1.patch"
        },
        "bug": {
          "short_name": "authority_serialize_missing_double_slash",
          "invariant": "parseRelativeRef strict (serializeURIRef' rr) must equal rr for any RelativeRef with authority.",
          "how_triggered": "Reversing the patch makes normalizeURI emit '<scheme>://' AND serializeAuthority drop the '//' prefix. For absolute URIs the two changes self-compensate (the joined output is unchanged), so the bug only surfaces for RelativeRefs: a relrr serializes without the leading '//' and re-parses as a path-only URI."
        }
      },
      {
        "mutations": [
          "relative_ref_drops_port_83adbc7_1"
        ],
        "tasks": [
          {
            "property": "RelRefRoundTrip",
            "witnesses": [
              {
                "test_fn": "witness_rel_ref_round_trip_case_with_port",
                "note": "RelativeRef //example.com:8080/path must round-trip"
              }
            ]
          }
        ],
        "source": {
          "repo": "https://github.com/Soostone/uri-bytestring",
          "commits": [
            "83adbc78cc64438a6d4fd4975e900f935baaee7c"
          ],
          "commit_subjects": [
            "Fix bug: RelativeRef serialization dropped port"
          ],
          "origin": "internal",
          "summary": "serializeAuthority's effectivePort was 'p <- authorityPort; scheme <- mScheme; dropPort scheme p'. For a RelativeRef there is no scheme, so mScheme is Nothing and the Maybe monad short-circuits, dropping the port unconditionally. The fix splits dropPort into Nothing/Just-Scheme cases so the Nothing case keeps the port."
        },
        "injection": {
          "kind": "patch",
          "files": [
            "src/URI/ByteString/Internal.hs"
          ],
          "locations": [
            {
              "file": "src/URI/ByteString/Internal.hs",
              "line": 322,
              "symbol": "serializeAuthority.effectivePort"
            }
          ],
          "patch": "patches/relative_ref_drops_port_83adbc7_1.patch"
        },
        "bug": {
          "short_name": "relative_ref_drops_port",
          "invariant": "parseRelativeRef strict (serializeURIRef' rr) must equal rr for any RelativeRef whose authority has a port set.",
          "how_triggered": "Reversing the patch reinstates the Maybe-Scheme threading. Serializing 'RelativeRef Just(Authority Nothing host (Just port)) ...' drops the port entirely, so the round-trip yields a port-less RelativeRef."
        }
      },
      {
        "mutations": [
          "fragment_serialize_no_encode_8e7ef60_1"
        ],
        "tasks": [
          {
            "property": "RoundTripUri",
            "witnesses": [
              {
                "test_fn": "witness_round_trip_uri_case_fragment_special",
                "note": "URI with fragment 'hello world' must round-trip"
              }
            ]
          }
        ],
        "source": {
          "repo": "https://github.com/Soostone/uri-bytestring",
          "commits": [
            "8e7ef60bbb42773c2f9b93004dbfb61ab11dfe3a"
          ],
          "commit_subjects": [
            "Encode fragments on serialization"
          ],
          "origin": "internal",
          "summary": "Fragment percent-decoding was added to the parser but the serializer continued to emit fragment bytes verbatim. URIs with fragments containing reserved or unsafe characters fail to round-trip because the serializer produces an invalid URI string."
        },
        "injection": {
          "kind": "patch",
          "files": [
            "src/URI/ByteString/Internal.hs"
          ],
          "locations": [
            {
              "file": "src/URI/ByteString/Internal.hs",
              "line": 306,
              "symbol": "serializeFragment"
            }
          ],
          "patch": "patches/fragment_serialize_no_encode_8e7ef60_1.patch"
        },
        "bug": {
          "short_name": "fragment_serialize_no_pct_encode",
          "invariant": "parseURI strict (serializeURIRef' uri) must equal uri for any URI whose fragment contains characters needing pct-encoding.",
          "how_triggered": "Reversing the patch flips serializeFragment from 'urlEncodeQuery s' to plain 'bs s'. A URI with a fragment containing a space (or any non-pchar character) serializes to an invalid URI string that the strict parser rejects."
        }
      },
      {
        "mutations": [
          "trailing_ampersand_afc9302_1"
        ],
        "tasks": [
          {
            "property": "QueryNoEmptyPair",
            "witnesses": [
              {
                "test_fn": "witness_query_no_empty_pair_case_trailing_amp",
                "note": "URI ending in '&' must not yield empty key/value pair"
              }
            ]
          }
        ],
        "source": {
          "repo": "https://github.com/Soostone/uri-bytestring",
          "commits": [
            "afc9302ca80beec70d4382f58fb870afa8dbe9b6"
          ],
          "commit_subjects": [
            "Fixed bug with trailing ampersands"
          ],
          "origin": "internal",
          "summary": "queryParser used 'sepBy' (queryItemParser opts) (word8' ampersand)' with no post-filter. A URI of the form '?a=b&' parses to queryPairs = [(\"a\",\"b\"),(\"\",\"\")] because sepBy' admits a trailing empty match. The fix filters out empty-key pairs."
        },
        "injection": {
          "kind": "patch",
          "files": [
            "src/URI/ByteString/Internal.hs"
          ],
          "locations": [
            {
              "file": "src/URI/ByteString/Internal.hs",
              "line": 643,
              "symbol": "queryParser.itemsParser"
            }
          ],
          "patch": "patches/trailing_ampersand_afc9302_1.patch"
        },
        "bug": {
          "short_name": "trailing_ampersand_yields_empty_pair",
          "invariant": "parseURI strict 'http://h.com/p?<pairs>&' must produce a Query with no empty-key pair.",
          "how_triggered": "Reversing the patch removes the 'filter neQuery' wrapper. parseURI 'http://example.com/p?a=b&' then yields uriQuery = Query [(\"a\",\"b\"),(\"\",\"\")] instead of Query [(\"a\",\"b\")]."
        }
      },
      {
        "mutations": [
          "normalization_segs_empty_slash_f52a33f_1"
        ],
        "tasks": [
          {
            "property": "NormalizeRootPathKept",
            "witnesses": [
              {
                "test_fn": "witness_normalize_root_path_kept_case_root_with_query",
                "note": "Normalizing http://example.com/?x=y must keep the slash"
              }
            ]
          }
        ],
        "source": {
          "repo": "https://github.com/Soostone/uri-bytestring",
          "commits": [
            "f52a33fb02f31ca8a701d42bdc7335e58bb4630b"
          ],
          "commit_subjects": [
            "Fix normalization bug"
          ],
          "origin": "internal",
          "summary": "normalizeRelativeRef's path-rendering chain handled the rrPath==\"\" case (under unoSlashEmptyPath) but not segs==[\"\"], which is what BS.split slash \"/\" produces under httpNormalization. A URI 'http://h/?q' normalized to 'http://h?q', losing the slash between authority and query."
        },
        "injection": {
          "kind": "patch",
          "files": [
            "src/URI/ByteString/Internal.hs"
          ],
          "locations": [
            {
              "file": "src/URI/ByteString/Internal.hs",
              "line": 208,
              "symbol": "normalizeRelativeRef.path"
            }
          ],
          "patch": "patches/normalization_segs_empty_slash_f52a33f_1.patch"
        },
        "bug": {
          "short_name": "normalize_drops_root_path_slash",
          "invariant": "normalizeURIRef' httpNormalization (URI{path=\"/\", query non-empty, fragment Nothing}) must contain '/?' between authority and query.",
          "how_triggered": "Reversing the patch removes the segs==[\"\"] guard from normalizeRelativeRef. Normalizing 'http://example.com/?x=y' under httpNormalization yields 'http://example.com?x=y' (no slash before '?')."
        }
      }
    ]
  },
  "metrics": [
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:49.807544369+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "334us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"lc\",\"qz\"), uaHost = \"th.gp\", uaPort = Nothing, uaPath = \"/vz\", uaQuery = [], uaFragment = Just \"yJ|\"}parse of serialized URI failed: MalformedPath (serialized: \"http://lc:qzth.gp/vz#yJ%7C\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"lc\", uiPassword = \"qz\"}), authorityHost = Host {hostBS = \"th.gp\"}, authorityPort = Nothing}), uriPath = \"/vz\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"yJ|\"})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:49.992785253+00:00",
      "status": "failed",
      "tests": 2,
      "discards": 0,
      "time": "398us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"d\",\"\"), uaHost = \"jv.we\", uaPort = Just 50847, uaPath = \"/yueex\", uaQuery = [], uaFragment = Just \"4Xu4\"}parse of serialized URI failed: MalformedPath (serialized: \"http://d:jv.we:50847/yueex#4Xu4\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"d\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"jv.we\"}, authorityPort = Just (Port {portNumber = 50847})}), uriPath = \"/yueex\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"4Xu4\"})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:50.178454399+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "428us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"x\", uaUserInfo = Just (\"ghoae\",\"q\"), uaHost = \"rw.cbsn\", uaPort = Nothing, uaPath = \"/dsrwu\", uaQuery = [(\"ig\",\"3q\"),(\"iur\",\"FsB\")], uaFragment = Just \"gr|D\"}parse of serialized URI failed: MalformedPath (serialized: \"x://ghoae:qrw.cbsn/dsrwu?ig=3q&iur=FsB#gr%7CD\", original: URI {uriScheme = Scheme {schemeBS = \"x\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"ghoae\", uiPassword = \"q\"}), authorityHost = Host {hostBS = \"rw.cbsn\"}, authorityPort = Nothing}), uriPath = \"/dsrwu\", uriQuery = Query {queryPairs = [(\"ig\",\"3q\"),(\"iur\",\"FsB\")]}, uriFragment = Just \"gr|D\"})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:50.353693283+00:00",
      "status": "failed",
      "tests": 4,
      "discards": 0,
      "time": "436us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"cuq\",\"eoh\"), uaHost = \"jkhf.aw\", uaPort = Nothing, uaPath = \"/njmrg\", uaQuery = [(\"ecai\",\"-7b\")], uaFragment = Just \"0oE\"}parse of serialized URI failed: MalformedPath (serialized: \"http://cuq:eohjkhf.aw/njmrg?ecai=-7b#0oE\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"cuq\", uiPassword = \"eoh\"}), authorityHost = Host {hostBS = \"jkhf.aw\"}, authorityPort = Nothing}), uriPath = \"/njmrg\", uriQuery = Query {queryPairs = [(\"ecai\",\"-7b\")]}, uriFragment = Just \"0oE\"})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:50.528872003+00:00",
      "status": "failed",
      "tests": 4,
      "discards": 0,
      "time": "441us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"cwsbx\",\"e\"), uaHost = \"itemf\", uaPort = Just 48405, uaPath = \"/jfj\", uaQuery = [], uaFragment = Just \"Xym-.5\"}parse of serialized URI failed: MalformedPath (serialized: \"http://cwsbx:eitemf:48405/jfj#Xym-.5\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"cwsbx\", uiPassword = \"e\"}), authorityHost = Host {hostBS = \"itemf\"}, authorityPort = Just (Port {portNumber = 48405})}), uriPath = \"/jfj\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"Xym-.5\"})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:50.704212714+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "337us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"x\", uaUserInfo = Just (\"tvkqg\",\"k\"), uaHost = \"fapx\", uaPort = Nothing, uaPath = \"/t/jqvrf\", uaQuery = [(\"oxmu\",\"_k~R\"),(\"e\",\"Ka0\")], uaFragment = Just \"kzvE\"}parse of serialized URI failed: MalformedPath (serialized: \"x://tvkqg:kfapx/t/jqvrf?oxmu=_k~R&e=Ka0#kzvE\", original: URI {uriScheme = Scheme {schemeBS = \"x\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"tvkqg\", uiPassword = \"k\"}), authorityHost = Host {hostBS = \"fapx\"}, authorityPort = Nothing}), uriPath = \"/t/jqvrf\", uriQuery = Query {queryPairs = [(\"oxmu\",\"_k~R\"),(\"e\",\"Ka0\")]}, uriFragment = Just \"kzvE\"})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:50.880237357+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "312us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"https\", uaUserInfo = Just (\"klr\",\"voyqp\"), uaHost = \"zofp.gj\", uaPort = Nothing, uaPath = \"/ohz\", uaQuery = [], uaFragment = Nothing}parse of serialized URI failed: MalformedPath (serialized: \"https://klr:voyqpzofp.gj/ohz\", original: URI {uriScheme = Scheme {schemeBS = \"https\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"klr\", uiPassword = \"voyqp\"}), authorityHost = Host {hostBS = \"zofp.gj\"}, authorityPort = Nothing}), uriPath = \"/ohz\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:51.076082880+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "350us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"lloz\",\"l\"), uaHost = \"ihu.j\", uaPort = Just 6465, uaPath = \"/lnq\", uaQuery = [(\"msh\",\"f7\")], uaFragment = Just \"fBgt4L\"}parse of serialized URI failed: MalformedPath (serialized: \"http://lloz:lihu.j:6465/lnq?msh=f7#fBgt4L\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"lloz\", uiPassword = \"l\"}), authorityHost = Host {hostBS = \"ihu.j\"}, authorityPort = Just (Port {portNumber = 6465})}), uriPath = \"/lnq\", uriQuery = Query {queryPairs = [(\"msh\",\"f7\")]}, uriFragment = Just \"fBgt4L\"})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:51.260665665+00:00",
      "status": "failed",
      "tests": 6,
      "discards": 0,
      "time": "569us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"x\", uaUserInfo = Just (\"jt\",\"gx\"), uaHost = \"h.btw\", uaPort = Just 29870, uaPath = \"/qyjio/xlc\", uaQuery = [], uaFragment = Just \"1MI\"}parse of serialized URI failed: MalformedPath (serialized: \"x://jt:gxh.btw:29870/qyjio/xlc#1MI\", original: URI {uriScheme = Scheme {schemeBS = \"x\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"jt\", uiPassword = \"gx\"}), authorityHost = Host {hostBS = \"h.btw\"}, authorityPort = Just (Port {portNumber = 29870})}), uriPath = \"/qyjio/xlc\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"1MI\"})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:51.446029924+00:00",
      "status": "failed",
      "tests": 2,
      "discards": 0,
      "time": "448us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"suvpf\",\"zurvk\"), uaHost = \"zi\", uaPort = Nothing, uaPath = \"/cdp\", uaQuery = [(\"rukv\",\"aLe\")], uaFragment = Just \"\"}parse of serialized URI failed: MalformedPath (serialized: \"http://suvpf:zurvkzi/cdp?rukv=aLe#\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"suvpf\", uiPassword = \"zurvk\"}), authorityHost = Host {hostBS = \"zi\"}, authorityPort = Nothing}), uriPath = \"/cdp\", uriQuery = Query {queryPairs = [(\"rukv\",\"aLe\")]}, uriFragment = Just \"\"})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:51.621261265+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1885us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:51.796650996+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2053us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:51.971844203+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2086us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:52.147524829+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2074us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:52.324161293+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2300us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:52.509851308+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2029us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:52.685514435+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2016us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:52.861256135+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2046us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:53.047152778+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1853us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:53.232550310+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2429us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:53.409101420+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "436us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:53.584584353+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "479us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:53.760162547+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "271us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:53.945802977+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "641us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:54.121313522+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "397us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:54.296500751+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "317us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:54.472092959+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "323us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:54.657633578+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "653us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:54.833761862+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "687us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:55.019495938+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "870us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Nothing}: parse of serialized URI failed: MalformedPath (serialized: \"http://a:a.a:1/a\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Nothing})",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:55.195090702+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "2986us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:55.370494117+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "2894us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:55.545730840+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "2904us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:55.721502271+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "2935us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:55.897372859+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "2897us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:56.073572782+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "2978us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:56.259540154+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "3001us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:56.445509882+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "2957us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:56.630753952+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "2942us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "userinfo_missing_at_749eda6_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:58:56.806195969+00:00",
      "status": "failed",
      "tests": 145,
      "discards": 0,
      "time": "2978us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Just (\\\"u\\\",\\\"p\\\"), uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Nothing}\"] (PropertyFalse Nothing)",
      "hash": "1d7e4b5bdc4ab50a210d9f42ddc97afec15d91bc"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:04.181459580+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "268us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"hmrw\",\"va\"), rraHost = \"gepr\", rraPort = 41771, rraPath = \"/y\"}parseRelativeRef failed: MalformedPath (serialized: \"hmrw:va@gepr:41771/y\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"hmrw\", uiPassword = \"va\"}), authorityHost = Host {hostBS = \"gepr\"}, authorityPort = Just (Port {portNumber = 41771})}), rrPath = \"/y\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:04.357071777+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "283us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Nothing, rraHost = \"sadcba\", rraPort = 5647, rraPath = \"/bwlkb/l\"}parseRelativeRef failed: MalformedPath (serialized: \"sadcba:5647/bwlkb/l\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"sadcba\"}, authorityPort = Just (Port {portNumber = 5647})}), rrPath = \"/bwlkb/l\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:04.542544542+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "264us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Nothing, rraHost = \"zl.ja\", rraPort = 61964, rraPath = \"/edz/jrj\"}parseRelativeRef failed: MalformedPath (serialized: \"zl.ja:61964/edz/jrj\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"zl.ja\"}, authorityPort = Just (Port {portNumber = 61964})}), rrPath = \"/edz/jrj\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:04.717861082+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "272us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"i\",\"kzrim\"), rraHost = \"v\", rraPort = 15804, rraPath = \"/ioccx\"}parseRelativeRef failed: MalformedPath (serialized: \"i:kzrim@v:15804/ioccx\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"i\", uiPassword = \"kzrim\"}), authorityHost = Host {hostBS = \"v\"}, authorityPort = Just (Port {portNumber = 15804})}), rrPath = \"/ioccx\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:04.894498741+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "257us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Nothing, rraHost = \"bx\", rraPort = 20979, rraPath = \"/aye/xrsf\"}parseRelativeRef failed: MalformedPath (serialized: \"bx:20979/aye/xrsf\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"bx\"}, authorityPort = Just (Port {portNumber = 20979})}), rrPath = \"/aye/xrsf\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:05.070353828+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "256us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Nothing, rraHost = \"pxi\", rraPort = 49216, rraPath = \"/dlz/iee\"}parseRelativeRef failed: MalformedPath (serialized: \"pxi:49216/dlz/iee\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"pxi\"}, authorityPort = Just (Port {portNumber = 49216})}), rrPath = \"/dlz/iee\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:05.256062303+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "343us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"ah\",\"now\"), rraHost = \"vr\", rraPort = 53875, rraPath = \"/ib\"}parseRelativeRef failed: MalformedPath (serialized: \"ah:now@vr:53875/ib\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"ah\", uiPassword = \"now\"}), authorityHost = Host {hostBS = \"vr\"}, authorityPort = Just (Port {portNumber = 53875})}), rrPath = \"/ib\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:05.442352687+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "272us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"q\",\"mwfdt\"), rraHost = \"vpasl.rcdv\", rraPort = 12183, rraPath = \"/j\"}parseRelativeRef failed: MalformedPath (serialized: \"q:mwfdt@vpasl.rcdv:12183/j\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"q\", uiPassword = \"mwfdt\"}), authorityHost = Host {hostBS = \"vpasl.rcdv\"}, authorityPort = Just (Port {portNumber = 12183})}), rrPath = \"/j\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:05.627999343+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "258us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Nothing, rraHost = \"qtuh.t\", rraPort = 13543, rraPath = \"/z\"}parseRelativeRef failed: MalformedPath (serialized: \"qtuh.t:13543/z\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"qtuh.t\"}, authorityPort = Just (Port {portNumber = 13543})}), rrPath = \"/z\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:05.803882793+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "259us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Nothing, rraHost = \"j.ehfl\", rraPort = 1275, rraPath = \"/mgkhq\"}parseRelativeRef failed: MalformedPath (serialized: \"j.ehfl:1275/mgkhq\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"j.ehfl\"}, authorityPort = Just (Port {portNumber = 1275})}), rrPath = \"/mgkhq\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:05.980103924+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1505us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:06.155667603+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1341us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:06.341571694+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1379us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:06.527481318+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1488us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:06.703231286+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1411us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:06.879346220+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1328us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:07.065200909+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1309us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:07.251121880+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1371us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:07.437140687+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1396us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:07.612989772+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1426us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:07.798749274+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "192us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:07.974766583+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "197us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:08.150343580+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "201us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:08.326110169+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "230us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:08.512888676+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "193us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:08.688420898+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "211us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:08.874086635+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "231us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:09.060270158+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "240us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:09.246113511+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "210us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:09.431857626+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "182us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: parseRelativeRef failed: MalformedPath (serialized: \"a:@a.a:1/a\", original: RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing})",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:09.608100741+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "89us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:09.793631878+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "91us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:09.969844295+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "91us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:10.155792752+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "89us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:10.331205795+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "90us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:10.506482645+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "106us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:10.681833243+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "90us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:10.867561186+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "115us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:11.054091109+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "90us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "authority_missing_double_slash_ac784c3_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:11.230252532+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "112us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "acfdd002eb2d871006b241a152e2bd4e62b3d5aa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:18.736924078+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "260us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"pj\",\"ipt\"), rraHost = \"ywmmc\", rraPort = 23745, rraPath = \"/mypr\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"pj\", uiPassword = \"ipt\"}), authorityHost = Host {hostBS = \"ywmmc\"}, authorityPort = Just (Port {portNumber = 23745})}), rrPath = \"/mypr\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//pj:ipt@ywmmc/mypr\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"pj\", uiPassword = \"ipt\"}), authorityHost = Host {hostBS = \"ywmmc\"}, authorityPort = Nothing}), rrPath = \"/mypr\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:18.912768899+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "271us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"pgwb\",\"x\"), rraHost = \"bxvtvc.bep\", rraPort = 39693, rraPath = \"/wn/r\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"pgwb\", uiPassword = \"x\"}), authorityHost = Host {hostBS = \"bxvtvc.bep\"}, authorityPort = Just (Port {portNumber = 39693})}), rrPath = \"/wn/r\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//pgwb:x@bxvtvc.bep/wn/r\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"pgwb\", uiPassword = \"x\"}), authorityHost = Host {hostBS = \"bxvtvc.bep\"}, authorityPort = Nothing}), rrPath = \"/wn/r\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:19.088339602+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "267us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"qm\",\"h\"), rraHost = \"hgp.x\", rraPort = 4888, rraPath = \"/n/t\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"qm\", uiPassword = \"h\"}), authorityHost = Host {hostBS = \"hgp.x\"}, authorityPort = Just (Port {portNumber = 4888})}), rrPath = \"/n/t\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//qm:h@hgp.x/n/t\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"qm\", uiPassword = \"h\"}), authorityHost = Host {hostBS = \"hgp.x\"}, authorityPort = Nothing}), rrPath = \"/n/t\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:19.274218885+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "285us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"huusm\",\"xljmk\"), rraHost = \"ujpysc\", rraPort = 24513, rraPath = \"/keor/wtj\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"huusm\", uiPassword = \"xljmk\"}), authorityHost = Host {hostBS = \"ujpysc\"}, authorityPort = Just (Port {portNumber = 24513})}), rrPath = \"/keor/wtj\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//huusm:xljmk@ujpysc/keor/wtj\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"huusm\", uiPassword = \"xljmk\"}), authorityHost = Host {hostBS = \"ujpysc\"}, authorityPort = Nothing}), rrPath = \"/keor/wtj\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:19.460887446+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "236us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Nothing, rraHost = \"cj\", rraPort = 21108, rraPath = \"/tukxs/o\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"cj\"}, authorityPort = Just (Port {portNumber = 21108})}), rrPath = \"/tukxs/o\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//cj/tukxs/o\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"cj\"}, authorityPort = Nothing}), rrPath = \"/tukxs/o\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:19.646751217+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "309us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"o\",\"ip\"), rraHost = \"ltoqn.he\", rraPort = 64953, rraPath = \"/ad/etso\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"o\", uiPassword = \"ip\"}), authorityHost = Host {hostBS = \"ltoqn.he\"}, authorityPort = Just (Port {portNumber = 64953})}), rrPath = \"/ad/etso\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//o:ip@ltoqn.he/ad/etso\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"o\", uiPassword = \"ip\"}), authorityHost = Host {hostBS = \"ltoqn.he\"}, authorityPort = Nothing}), rrPath = \"/ad/etso\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:19.833345830+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "245us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Nothing, rraHost = \"nc.juap\", rraPort = 20165, rraPath = \"/jjxx/db\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"nc.juap\"}, authorityPort = Just (Port {portNumber = 20165})}), rrPath = \"/jjxx/db\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//nc.juap/jjxx/db\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"nc.juap\"}, authorityPort = Nothing}), rrPath = \"/jjxx/db\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:20.009140621+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "261us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"f\",\"b\"), rraHost = \"etxl.nr\", rraPort = 39437, rraPath = \"/mom\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"f\", uiPassword = \"b\"}), authorityHost = Host {hostBS = \"etxl.nr\"}, authorityPort = Just (Port {portNumber = 39437})}), rrPath = \"/mom\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//f:b@etxl.nr/mom\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"f\", uiPassword = \"b\"}), authorityHost = Host {hostBS = \"etxl.nr\"}, authorityPort = Nothing}), rrPath = \"/mom\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:20.184497700+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "260us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"m\",\"gc\"), rraHost = \"wj.imt\", rraPort = 45831, rraPath = \"/k/eiiqc\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"m\", uiPassword = \"gc\"}), authorityHost = Host {hostBS = \"wj.imt\"}, authorityPort = Just (Port {portNumber = 45831})}), rrPath = \"/k/eiiqc\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//m:gc@wj.imt/k/eiiqc\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"m\", uiPassword = \"gc\"}), authorityHost = Host {hostBS = \"wj.imt\"}, authorityPort = Nothing}), rrPath = \"/k/eiiqc\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:20.370526069+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "264us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "RelRefArgs {rraUserInfo = Nothing, rraHost = \"gwpia.qyj\", rraPort = 29414, rraPath = \"/ad\"}rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"gwpia.qyj\"}, authorityPort = Just (Port {portNumber = 29414})}), rrPath = \"/ad\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//gwpia.qyj/ad\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"gwpia.qyj\"}, authorityPort = Nothing}), rrPath = \"/ad\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:20.546234531+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1504us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:20.731985755+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1434us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:20.918760963+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1633us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:21.093923914+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1484us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:21.269327449+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1489us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:21.454665511+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1529us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:21.640121111+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1603us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:21.825475614+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1519us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:22.000654707+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1596us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:22.185884577+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1596us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:22.361792410+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "240us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:22.537157712+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "251us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:22.712346175+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "234us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:22.887866364+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "272us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:23.063507391+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "206us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:23.239113823+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "220us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:23.414714394+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "220us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:23.590201513+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "195us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:23.775812084+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "246us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:23.951853681+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "254us",
      "error": null,
      "tool": "falsify",
      "counterexample": "RelRefArgs {rraUserInfo = Just (\"a\",\"\"), rraHost = \"a.a\", rraPort = 1, rraPath = \"/a\"}: rel-ref round-trip mismatch: original=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}; serialized=\"//a:@a.a/a\"; reparsed=RelativeRef {rrAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Nothing}), rrPath = \"/a\", rrQuery = Query {queryPairs = []}, rrFragment = Nothing}",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:24.127908552+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "116us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:24.303731869+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "118us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:24.489529891+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "117us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:24.674809381+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "117us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:24.850644811+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "136us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:25.036669245+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "114us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:25.222277959+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "130us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:25.407958922+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "114us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:25.583519960+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "134us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RelRefRoundTrip",
      "mutations": [
        "relative_ref_drops_port_83adbc7_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:25.759360390+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "118us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"RelRefArgs {rraUserInfo = Nothing, rraHost = \\\"a\\\", rraPort = 80, rraPath = \\\"/p\\\"}\"] (PropertyFalse Nothing)",
      "hash": "ba28c52aeeffa47d754a7669f1b99cb576723efa"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:32.154969081+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "394us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Nothing, uaHost = \"l.rfa\", uaPort = Nothing, uaPath = \"/u\", uaQuery = [], uaFragment = Just \"tjp|0L\"}parse of serialized URI failed: MalformedFragment (serialized: \"http://l.rfa/u#tjp|0L\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"l.rfa\"}, authorityPort = Nothing}), uriPath = \"/u\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"tjp|0L\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:32.330541482+00:00",
      "status": "failed",
      "tests": 5,
      "discards": 0,
      "time": "499us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Nothing, uaHost = \"iifxue\", uaPort = Just 25316, uaPath = \"/hga\", uaQuery = [(\"zjd\",\"XF8VS\")], uaFragment = Just \"l`_jT\"}parse of serialized URI failed: MalformedFragment (serialized: \"http://iifxue:25316/hga?zjd=XF8VS#l`_jT\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"iifxue\"}, authorityPort = Just (Port {portNumber = 25316})}), uriPath = \"/hga\", uriQuery = Query {queryPairs = [(\"zjd\",\"XF8VS\")]}, uriFragment = Just \"l`_jT\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:32.506080016+00:00",
      "status": "failed",
      "tests": 2,
      "discards": 0,
      "time": "423us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"g\",\"v\"), uaHost = \"lau\", uaPort = Nothing, uaPath = \"/bzamb/b\", uaQuery = [(\"gll\",\"-n\")], uaFragment = Just \"S lt3\"}parse of serialized URI failed: MalformedFragment (serialized: \"http://g:v@lau/bzamb/b?gll=-n#S lt3\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"g\", uiPassword = \"v\"}), authorityHost = Host {hostBS = \"lau\"}, authorityPort = Nothing}), uriPath = \"/bzamb/b\", uriQuery = Query {queryPairs = [(\"gll\",\"-n\")]}, uriFragment = Just \"S lt3\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:32.682368413+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "323us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"x\", uaUserInfo = Nothing, uaHost = \"nnuggm.r\", uaPort = Nothing, uaPath = \"/hkes\", uaQuery = [], uaFragment = Just \"C70\\\\IMb\"}parse of serialized URI failed: MalformedFragment (serialized: \"x://nnuggm.r/hkes#C70\\\\IMb\", original: URI {uriScheme = Scheme {schemeBS = \"x\"}, uriAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"nnuggm.r\"}, authorityPort = Nothing}), uriPath = \"/hkes\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"C70\\\\IMb\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:32.857921138+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "323us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Nothing, uaHost = \"tgxx\", uaPort = Nothing, uaPath = \"/qkc/nm\", uaQuery = [], uaFragment = Just \"W]y\"}parse of serialized URI failed: MalformedFragment (serialized: \"http://tgxx/qkc/nm#W]y\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"tgxx\"}, authorityPort = Nothing}), uriPath = \"/qkc/nm\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"W]y\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:33.034059092+00:00",
      "status": "failed",
      "tests": 12,
      "discards": 0,
      "time": "695us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"x\", uaUserInfo = Nothing, uaHost = \"gtv.loe\", uaPort = Just 2681, uaPath = \"/dkc/mklfd\", uaQuery = [], uaFragment = Just \"J[\"}parse of serialized URI failed: MalformedFragment (serialized: \"x://gtv.loe:2681/dkc/mklfd#J[\", original: URI {uriScheme = Scheme {schemeBS = \"x\"}, uriAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"gtv.loe\"}, authorityPort = Just (Port {portNumber = 2681})}), uriPath = \"/dkc/mklfd\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"J[\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:33.219698329+00:00",
      "status": "failed",
      "tests": 4,
      "discards": 0,
      "time": "510us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"https\", uaUserInfo = Just (\"o\",\"hoc\"), uaHost = \"tsx\", uaPort = Nothing, uaPath = \"/jfqpv\", uaQuery = [(\"aizg\",\"plOc\"),(\"cjl\",\"d\")], uaFragment = Just \"yO[\"}parse of serialized URI failed: MalformedFragment (serialized: \"https://o:hoc@tsx/jfqpv?aizg=plOc&cjl=d#yO[\", original: URI {uriScheme = Scheme {schemeBS = \"https\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"o\", uiPassword = \"hoc\"}), authorityHost = Host {hostBS = \"tsx\"}, authorityPort = Nothing}), uriPath = \"/jfqpv\", uriQuery = Query {queryPairs = [(\"aizg\",\"plOc\"),(\"cjl\",\"d\")]}, uriFragment = Just \"yO[\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:33.395243959+00:00",
      "status": "failed",
      "tests": 5,
      "discards": 0,
      "time": "556us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"https\", uaUserInfo = Just (\"o\",\"k\"), uaHost = \"gznly.ts\", uaPort = Just 44284, uaPath = \"/ztfx/uo\", uaQuery = [(\"ldc\",\"\")], uaFragment = Just \"5Z\\\"vOP\"}parse of serialized URI failed: MalformedFragment (serialized: \"https://o:k@gznly.ts:44284/ztfx/uo?ldc=#5Z\\\"vOP\", original: URI {uriScheme = Scheme {schemeBS = \"https\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"o\", uiPassword = \"k\"}), authorityHost = Host {hostBS = \"gznly.ts\"}, authorityPort = Just (Port {portNumber = 44284})}), uriPath = \"/ztfx/uo\", uriQuery = Query {queryPairs = [(\"ldc\",\"\")]}, uriFragment = Just \"5Z\\\"vOP\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:33.570826030+00:00",
      "status": "failed",
      "tests": 2,
      "discards": 0,
      "time": "435us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"https\", uaUserInfo = Nothing, uaHost = \"p\", uaPort = Just 45946, uaPath = \"/sh\", uaQuery = [(\"f\",\"yZA\"),(\"jy\",\"oR0.\")], uaFragment = Just \"o15\\\".qh\"}parse of serialized URI failed: MalformedFragment (serialized: \"https://p:45946/sh?f=yZA&jy=oR0.#o15\\\".qh\", original: URI {uriScheme = Scheme {schemeBS = \"https\"}, uriAuthority = Just (Authority {authorityUserInfo = Nothing, authorityHost = Host {hostBS = \"p\"}, authorityPort = Just (Port {portNumber = 45946})}), uriPath = \"/sh\", uriQuery = Query {queryPairs = [(\"f\",\"yZA\"),(\"jy\",\"oR0.\")]}, uriFragment = Just \"o15\\\".qh\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:33.746514517+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "464us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"wmwmx\",\"xd\"), uaHost = \"a.ggiv\", uaPort = Just 52008, uaPath = \"/nsge\", uaQuery = [(\"qbma\",\"t1\"),(\"bfbj\",\"o\")], uaFragment = Just \"q00<X\"}parse of serialized URI failed: MalformedFragment (serialized: \"http://wmwmx:xd@a.ggiv:52008/nsge?qbma=t1&bfbj=o#q00<X\", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"wmwmx\", uiPassword = \"xd\"}), authorityHost = Host {hostBS = \"a.ggiv\"}, authorityPort = Just (Port {portNumber = 52008})}), uriPath = \"/nsge\", uriQuery = Query {queryPairs = [(\"qbma\",\"t1\"),(\"bfbj\",\"o\")]}, uriFragment = Just \"q00<X\"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:33.923357814+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2903us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:34.098959110+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2238us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:34.274553172+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2364us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:34.450203920+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2124us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:34.625734193+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2267us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:34.801384031+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2141us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:34.977352393+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2633us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:35.153079111+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2475us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:35.328768644+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2308us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:35.504490765+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2152us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:35.680864663+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "269us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:35.856563623+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1188us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:36.032771169+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "986us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:36.208485008+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "454us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:36.394394588+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "615us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:36.570116631+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1374us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:36.745842979+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "370us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:36.922184147+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "758us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:37.098175534+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "560us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:37.274495703+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1755us",
      "error": null,
      "tool": "falsify",
      "counterexample": "UriArgs {uaScheme = \"http\", uaUserInfo = Just (\"a\",\"\"), uaHost = \"a.a\", uaPort = Just 1, uaPath = \"/a\", uaQuery = [], uaFragment = Just \"a \"}: parse of serialized URI failed: MalformedFragment (serialized: \"http://a:@a.a:1/a#a \", original: URI {uriScheme = Scheme {schemeBS = \"http\"}, uriAuthority = Just (Authority {authorityUserInfo = Just (UserInfo {uiUsername = \"a\", uiPassword = \"\"}), authorityHost = Host {hostBS = \"a.a\"}, authorityPort = Just (Port {portNumber = 1})}), uriPath = \"/a\", uriQuery = Query {queryPairs = []}, uriFragment = Just \"a \"})",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:37.461354178+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "167us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:37.647259791+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "169us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:37.833968279+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "166us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:38.009553568+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "175us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:38.185498292+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "184us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:38.361295617+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "166us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:38.547219283+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "166us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:38.732660983+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "184us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:38.908469026+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "163us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "RoundTripUri",
      "mutations": [
        "fragment_serialize_no_encode_8e7ef60_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:39.084579941+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "187us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"UriArgs {uaScheme = \\\"http\\\", uaUserInfo = Nothing, uaHost = \\\"a\\\", uaPort = Nothing, uaPath = \\\"/p\\\", uaQuery = [], uaFragment = Just \\\"x y\\\"}\"] (PropertyFalse Nothing)",
      "hash": "c799c228779fb4a1c265472bc15f4102b6ac7a35"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:45.531839042+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "314us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"ftp\", qaHost = \"xmmiv.kxyf\", qaPath = \"/bo/wmoc\", qaPairs = [(\"lst\",\"BD1\"),(\"bsqg\",\"wr\"),(\"wa\",\"3HMP\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"ftp://xmmiv.kxyf/bo/wmoc?lst=BD1&bsqg=wr&wa=3HMP&\", parsed: [(\"lst\",\"BD1\"),(\"bsqg\",\"wr\"),(\"wa\",\"3HMP\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:45.708002217+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "233us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"ocqxgc.csiy\", qaPath = \"/b/pog\", qaPairs = [(\"hs\",\"iPl0\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://ocqxgc.csiy/b/pog?hs=iPl0&\", parsed: [(\"hs\",\"iPl0\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:45.893452378+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "282us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"nkh.cdkh\", qaPath = \"/j\", qaPairs = [(\"qph\",\"Y\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://nkh.cdkh/j?qph=Y&\", parsed: [(\"qph\",\"Y\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:46.069270506+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "241us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"ftp\", qaHost = \"x\", qaPath = \"/qrjhc\", qaPairs = [(\"hh\",\"En\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"ftp://x/qrjhc?hh=En&\", parsed: [(\"hh\",\"En\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:46.255307675+00:00",
      "status": "failed",
      "tests": 2,
      "discards": 0,
      "time": "277us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"wvwphp.xk\", qaPath = \"/hhj\", qaPairs = [(\"bs\",\"VY\"),(\"oir\",\"sKN8\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://wvwphp.xk/hhj?bs=VY&oir=sKN8&\", parsed: [(\"bs\",\"VY\"),(\"oir\",\"sKN8\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:46.441149937+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "262us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"x\", qaHost = \"dle.l\", qaPath = \"/rx/tqo\", qaPairs = [(\"lja\",\"Oo1\"),(\"fw\",\"Gyg\"),(\"l\",\"9kd6\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"x://dle.l/rx/tqo?lja=Oo1&fw=Gyg&l=9kd6&\", parsed: [(\"lja\",\"Oo1\"),(\"fw\",\"Gyg\"),(\"l\",\"9kd6\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:46.618042167+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "241us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"ftp\", qaHost = \"wnw\", qaPath = \"/j\", qaPairs = [(\"skn\",\"GeO\"),(\"v\",\"7v_v\"),(\"hjrv\",\"w_\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"ftp://wnw/j?skn=GeO&v=7v_v&hjrv=w_&\", parsed: [(\"skn\",\"GeO\"),(\"v\",\"7v_v\"),(\"hjrv\",\"w_\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:46.793546852+00:00",
      "status": "failed",
      "tests": 2,
      "discards": 0,
      "time": "252us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"x\", qaHost = \"wajaw\", qaPath = \"/hhd/dxes\", qaPairs = [(\"bev\",\"\"),(\"b\",\"\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"x://wajaw/hhd/dxes?bev=&b=&\", parsed: [(\"bev\",\"\"),(\"b\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:46.970124736+00:00",
      "status": "failed",
      "tests": 3,
      "discards": 0,
      "time": "285us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"https\", qaHost = \"dv\", qaPath = \"/woe/dsot\", qaPairs = [(\"b\",\"y\"),(\"x\",\"4\"),(\"nmb\",\"89\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"https://dv/woe/dsot?b=y&x=4&nmb=89&\", parsed: [(\"b\",\"y\"),(\"x\",\"4\"),(\"nmb\",\"89\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:47.155729712+00:00",
      "status": "failed",
      "tests": 2,
      "discards": 0,
      "time": "251us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": "QueryArgs {qaScheme = \"ftp\", qaHost = \"p.zl\", qaPath = \"/lr\", qaPairs = [(\"qa\",\"9J\")], qaTrail = True}parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"ftp://p.zl/lr?qa=9J&\", parsed: [(\"qa\",\"9J\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:47.342512947+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1630us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:47.528158213+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1364us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:47.713663467+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1657us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:47.899829869+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1841us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:48.075528979+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1555us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:48.251125076+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1505us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:48.426765459+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1699us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:48.612430492+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "2030us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:48.787649477+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1558us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:48.964294965+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "1824us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:49.150451079+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "303us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:49.325687263+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "441us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:49.501421952+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "519us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:49.687460120+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "287us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:49.863172785+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "267us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:50.069420345+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "420us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:50.254783967+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "416us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:50.430213816+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "363us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:50.605810366+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "300us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:50.781494799+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "495us",
      "error": null,
      "tool": "falsify",
      "counterexample": "QueryArgs {qaScheme = \"http\", qaHost = \"a.a\", qaPath = \"/a\", qaPairs = [(\"a\",\"\")], qaTrail = True}: parsed query contains empty key pair(s): [(\"\",\"\")] (input: \"http://a.a/a?a=&\", parsed: [(\"a\",\"\"),(\"\",\"\")])",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:50.958704650+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "125us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:51.134596252+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "132us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:51.310619487+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "124us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:51.496434365+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "124us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:51.672352810+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "125us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:51.857866222+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "127us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:52.033557002+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "123us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:52.209421169+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "124us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:52.385177619+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "125us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "QueryNoEmptyPair",
      "mutations": [
        "trailing_ampersand_afc9302_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:52.560854132+00:00",
      "status": "failed",
      "tests": 1,
      "discards": 0,
      "time": "125us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": "CounterExample [\"QueryArgs {qaScheme = \\\"http\\\", qaHost = \\\"a\\\", qaPath = \\\"/p\\\", qaPairs = [(\\\"a\\\",\\\"b\\\")], qaTrail = True}\"] (PropertyFalse Nothing)",
      "hash": "276520d20da8b2bd74bfeb131b955a5b88822db5"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:58.988472443+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1897us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:59.164192915+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1930us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:59.339846686+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1904us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:59.515741480+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1865us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:59.691102655+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1861us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T16:59:59.866851227+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1888us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:00.042820208+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1900us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:00.218307985+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1886us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:00.393704539+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1864us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "quickcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:00.569243331+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "1867us",
      "error": null,
      "tool": "quickcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:00.755925931+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "5034us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:00.942619932+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "4807us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:01.128691860+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "4977us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:01.314132434+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "5024us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:01.499889311+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "4922us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:01.685680457+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "4895us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:01.871521444+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "4892us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:02.057262494+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "5049us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:02.242699754+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "4839us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "hedgehog",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:02.428653304+00:00",
      "status": "passed",
      "tests": 200,
      "discards": 0,
      "time": "4874us",
      "error": null,
      "tool": "hedgehog",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:02.615504506+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2746us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:02.801329322+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2742us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:02.986269506+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2800us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:03.172242171+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2797us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:03.358360958+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2856us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:03.544431393+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2807us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:03.730321349+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2897us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:03.916081304+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2698us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:04.102223634+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2810us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "falsify",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:04.288371745+00:00",
      "status": "passed",
      "tests": 100,
      "discards": 0,
      "time": "2833us",
      "error": null,
      "tool": "falsify",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 0,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:04.475670249+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "78us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 1,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:04.661383263+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "80us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 2,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:04.847784615+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "82us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 3,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:05.034354817+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "80us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 4,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:05.220187491+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "78us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 5,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:05.395653941+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "79us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 6,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:05.581650199+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "79us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 7,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:05.767748831+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "100us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 8,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:05.953827747+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "79us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    },
    {
      "experiment": "ci-run",
      "workload": "uri-bytestring",
      "language": "haskell",
      "strategy": "smallcheck",
      "property": "NormalizeRootPathKept",
      "mutations": [
        "normalization_segs_empty_slash_f52a33f_1"
      ],
      "mode": "solve",
      "trial": 9,
      "timeout": 60.0,
      "timestamp": "2026-05-03T17:00:06.139221752+00:00",
      "status": "passed",
      "tests": 2,
      "discards": 0,
      "time": "78us",
      "error": null,
      "tool": "smallcheck",
      "counterexample": null,
      "hash": "b53278d495cb938bf87a5c9aefdf4f7b64d0bc71"
    }
  ]
}