diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02b2bc3..2fe31ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [main, "chore/**"] + branches: [main, "chore/**", "feat/**"] pull_request: jobs: @@ -25,8 +25,10 @@ jobs: pip install -r requirements.txt - name: Ruff run: ruff check app tests - - name: Pytest + - name: Unit + integration tests run: pytest -q + - name: Golden scenarios (G1–G6) + run: pytest -q tests/test_instrumentation.py tests/test_release_compare.py -k "g1 or g2 or g3 or g4 or g5 or g6" web: name: Web (lint + typecheck + build) @@ -51,3 +53,29 @@ jobs: run: npm run build env: GITHUB_PAGES: "false" + + release-state: + name: Release state (snapshot + secret scan) + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + - name: Install API deps + run: | + python -m pip install --upgrade pip + pip install -r apps/api/requirements.txt + - name: Regenerate snapshot and require byte-identical output + run: python scripts/generate_release_snapshot.py && git diff --exit-code -- apps/web/public/data/release-intelligence.json apps/web/lib/release-intelligence.json + - name: Snapshot payload sanity + run: python -c "import json;d=json.load(open('apps/web/public/data/release-intelligence.json'));assert d['baseline']=='v2.2.0-healthy';assert len(d['releases'])==3;assert 'instrumentation' in d and 'journey_diffs' in d" + - name: Secret scan (current tree) + shell: bash + run: | + ! grep -rInE 'AKIA[0-9A-Z]{16}|ghp_[A-Za-z0-9]{36}|gho_[A-Za-z0-9]{36}|github_pat_[A-Za-z0-9_]{22,}|sk-[A-Za-z0-9_-]{20,}|-----BEGIN (RSA |EC |OPENSSH )?PRIVATE KEY-----' \ + --exclude-dir=node_modules --exclude-dir=.venv --exclude-dir=out --exclude-dir=.next . + - name: PII scan on fixtures and docs + shell: bash + run: | + ! grep -rInE '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}' data/seed/releases docs/RELEASE_INTELLIGENCE_METHOD.md diff --git a/README.md b/README.md index e0de0c6..5aaaf58 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,41 @@ Métricas de vaidade (“quantos se cadastraram?”) escondem o caminho. --- +## Release Intelligence + +Depois de uma release, o funil “melhora”. Mas foi o produto ou a instrumentação? + +O lab agora valida **contratos de tracking** antes de comparar releases: + +- `data/contracts/events.yml` — contrato versionado por evento (owner, props obrigatórias, ordem, cardinalidade, versão) +- Validador determinístico: missing props, order violations, duplicate `insert_id`, cardinality, unknown events e event drift +- Comparação **raw vs trusted** por usuário único com veredito explícito +- Intervalos de confiança de Wilson; linguagem estritamente observacional + +Golden scenario (fixtures sintéticas determinísticas): + +```text +v2.3.0-buggy raw onboarding_completed +24.3% → trusted −0.9% ⇒ artefato de instrumentação +v2.3.0-fixed activation_completed +9.1% → trusted +9.1% ⇒ melhora real +``` + +Demo: [`/releases`](https://barujafe1.github.io/BehaviorGraph/releases/) · Método: [docs/RELEASE_INTELLIGENCE_METHOD.md](./docs/RELEASE_INTELLIGENCE_METHOD.md) + + + + + + +
+ Buggy release verdict +
v2.3.0-buggy — raw +24.3% desaparece no trusted (−0.9%): artefato de instrumentação +
+ Fixed release verdict +
v2.3.0-fixed — +9.1% sobrevive ao filtro trusted: melhora real +
+ +--- + ## Escopo e limites - **É:** estúdio lab de behavioral analytics. @@ -131,6 +166,41 @@ Conversion vanity metrics (“how many signed up?”) hide the path. --- +## Release Intelligence + +After a release, the funnel “improves”. But was it the product — or the instrumentation? + +The lab now validates **tracking contracts** before comparing releases: + +- `data/contracts/events.yml` — versioned per-event contract (owner, required props, sequence, cardinality, introduced-in) +- Deterministic validator: missing props, order violations, duplicate `insert_id`, cardinality, unknown events and event drift +- **Raw vs trusted** comparison on unique users with an explicit verdict +- Wilson confidence intervals; strictly observational language + +Golden scenario (deterministic synthetic fixtures): + +```text +v2.3.0-buggy raw onboarding_completed +24.3% → trusted −0.9% ⇒ instrumentation artifact +v2.3.0-fixed activation_completed +9.1% → trusted +9.1% ⇒ real improvement +``` + +Demo: [`/releases`](https://barujafe1.github.io/BehaviorGraph/releases/) · Method: [docs/RELEASE_INTELLIGENCE_METHOD.md](./docs/RELEASE_INTELLIGENCE_METHOD.md) + + + + + + +
+ Buggy release verdict +
v2.3.0-buggy — raw +24.3% vanishes under trusted (−0.9%): instrumentation artifact +
+ Fixed release verdict +
v2.3.0-fixed — +9.1% survives the trusted filter: real improvement +
+ +--- + ## Scope and limits - **Is:** behavioral analytics studio lab. @@ -303,8 +373,8 @@ More: [docs/TESTING.md](./docs/TESTING.md) · Deploy: [docs/DEPLOYMENT.md](./doc ## Roadmap - **MVP (done):** taxonomy, nested funnel, cohorts, graph, friction, memo, static demo, CI -- **Phase 2 (in progress):** release intelligence — tracking contracts, instrumentation validator, raw vs trusted funnel comparison per release -- **Phase 3:** minimal SDK, near-real-time ingest, experiment tags +- **Phase 2 (done):** release intelligence — tracking contracts, instrumentation validator, raw vs trusted funnel comparison per release +- **Phase 3 (planned):** minimal SDK, near-real-time ingest, experiment tags Non-goals: Mixpanel clone, generic metrics dashboard, production tracking. diff --git a/apps/api/app/api/releases.py b/apps/api/app/api/releases.py new file mode 100644 index 0000000..e80d83a --- /dev/null +++ b/apps/api/app/api/releases.py @@ -0,0 +1,63 @@ +from dataclasses import asdict + +from fastapi import APIRouter, HTTPException + +from app.models.release import ( + InstrumentationReportModel, + JourneyDiffModel, + ReleaseComparisonModel, + ReleasesOverviewModel, +) +from app.services.instrumentation import validate_release +from app.services.journey_diff import diff_journeys +from app.services.release_compare import build_overview, compare_release +from app.services.release_fixture import RELEASE_PROFILES + +router = APIRouter(tags=["releases"]) + + +def _ensure_known_release(release: str) -> None: + if release not in RELEASE_PROFILES: + raise HTTPException( + status_code=404, + detail=( + f"unknown release '{release}'. Known releases: " + + ", ".join(sorted(RELEASE_PROFILES)) + ), + ) + + +@router.get("/releases/overview", response_model=ReleasesOverviewModel) +def releases_overview() -> ReleasesOverviewModel: + return ReleasesOverviewModel.model_validate(build_overview()) + + +@router.get("/releases/diff", response_model=JourneyDiffModel) +def journey_diff( + baseline: str = "v2.2.0-healthy", + target: str = "v2.3.0-buggy", + min_support: int = 10, +) -> JourneyDiffModel: + _ensure_known_release(baseline) + _ensure_known_release(target) + return JourneyDiffModel.model_validate( + diff_journeys(baseline, target, min_support=min_support) + ) + + +@router.get("/releases/{release}/instrumentation", response_model=InstrumentationReportModel) +def release_instrumentation(release: str) -> InstrumentationReportModel: + _ensure_known_release(release) + report = validate_release(release) + payload = asdict(report) + payload["violations"] = [asdict(v) for v in report.violations] + payload["unknown_events"] = list(report.unknown_events) + return InstrumentationReportModel.model_validate(payload) + + +@router.get("/releases/{release}/comparison", response_model=ReleaseComparisonModel) +def release_comparison(release: str) -> ReleaseComparisonModel: + _ensure_known_release(release) + comparison = compare_release(release) + payload = asdict(comparison) + return ReleaseComparisonModel.model_validate(payload) diff --git a/apps/api/app/main.py b/apps/api/app/main.py index bc7746a..1a375fb 100644 --- a/apps/api/app/main.py +++ b/apps/api/app/main.py @@ -1,7 +1,17 @@ from fastapi import FastAPI from fastapi.middleware.cors import CORSMiddleware -from app.api import cohorts, demo, events, friction, funnel, health, journeys, segments +from app.api import ( + cohorts, + demo, + events, + friction, + funnel, + health, + journeys, + releases, + segments, +) app = FastAPI( title="BehaviorGraph API", @@ -31,3 +41,4 @@ app.include_router(journeys.router, prefix="/api") app.include_router(segments.router, prefix="/api") app.include_router(friction.router, prefix="/api") +app.include_router(releases.router, prefix="/api") diff --git a/apps/api/app/models/release.py b/apps/api/app/models/release.py new file mode 100644 index 0000000..4f032a8 --- /dev/null +++ b/apps/api/app/models/release.py @@ -0,0 +1,87 @@ +"""Pydantic response models for release intelligence endpoints.""" + +from __future__ import annotations + +from pydantic import BaseModel, Field + + +class ViolationModel(BaseModel): + event_name: str + code: str + release: str + user_count: int = Field(ge=0) + evidence_count: int = Field(ge=0) + severity: str + + +class InstrumentationReportModel(BaseModel): + release: str + total_events: int = Field(ge=0) + trusted_events: int = Field(ge=0) + violations: list[ViolationModel] + unknown_events: list[str] + status: str + + +class ReleaseFunnelStep(BaseModel): + step: str + users: int = Field(ge=0) + conversion_from_start: float = Field(ge=0, le=1) + unique_user_basis: bool + + +class VerdictModel(BaseModel): + classification: str + raw_looks_better: bool + survives_trusted_filter: bool + gain_step: str | None + raw_gain_pct: float + trusted_gain_pct: float + + +class ReleaseComparisonModel(BaseModel): + release: str + total_events: int = Field(ge=0) + trusted_events: int = Field(ge=0) + raw_funnel: list[ReleaseFunnelStep] + trusted_funnel: list[ReleaseFunnelStep] + activation_raw_rate: float = Field(ge=0, le=1) + activation_trusted_rate: float = Field(ge=0, le=1) + verdict: VerdictModel + + +class OverviewReleaseModel(BaseModel): + release: str + total_events: int = Field(ge=0) + trusted_events: int = Field(ge=0) + activation_raw_rate: float = Field(ge=0, le=1) + activation_trusted_rate: float = Field(ge=0, le=1) + activation_trusted_ci: tuple[float, float] + instrumentation_status: str + verdict: VerdictModel + raw_funnel: list[ReleaseFunnelStep] + trusted_funnel: list[ReleaseFunnelStep] + + +class ReleasesOverviewModel(BaseModel): + method: str + baseline: str + observational_notice: str + releases: list[OverviewReleaseModel] + + +class JourneyEdgeDiff(BaseModel): + source: str + target: str + target_weight: int | None = Field(default=None, ge=0) + baseline_weight: int | None = Field(default=None, ge=0) + + +class JourneyDiffModel(BaseModel): + baseline: str + target: str + min_support: int = Field(ge=1) + baseline_edges: list[list[str]] + added: list[JourneyEdgeDiff] + removed: list[JourneyEdgeDiff] + notice: str diff --git a/apps/api/app/services/instrumentation.py b/apps/api/app/services/instrumentation.py new file mode 100644 index 0000000..639ba5b --- /dev/null +++ b/apps/api/app/services/instrumentation.py @@ -0,0 +1,347 @@ +"""Instrumentation health: tracking contracts + violation detection. + +Contracts are declared in ``data/contracts/events.yml`` (versioned source of +truth). The validator inspects synthetic release event streams and reports +semantic breakage as evidence-backed violations — it never silently drops or +rewrites events. +""" + +from __future__ import annotations + +import json +from dataclasses import dataclass +from functools import lru_cache +from pathlib import Path + +import pandas as pd +import yaml + +ROOT = Path(__file__).resolve().parents[4] +CONTRACTS_PATH = ROOT / "data" / "contracts" / "events.yml" + +BASELINE_RELEASE = "v2.2.0-healthy" +DRIFT_RATE_RATIO_THRESHOLD = 1.25 +SEVERITY_RANK = {"block": 0, "warning": 1} + + +@dataclass(frozen=True) +class EventContract: + """Declarative tracking contract for a single event.""" + + name: str + owner: str + required_properties: tuple[str, ...] = () + must_follow: tuple[str, ...] = () + max_per_user_session: int | None = None + introduced_in: str | None = None + + +@dataclass(frozen=True) +class TrackingContract: + version: int + events: dict[str, EventContract] + + +@dataclass(frozen=True) +class InstrumentationViolation: + """One semantic instrumentation finding, backed by evidence counts.""" + + event_name: str + code: str + release: str + user_count: int + evidence_count: int + severity: str + + +@lru_cache(maxsize=1) +def load_tracking_contract() -> TrackingContract: + if not CONTRACTS_PATH.exists(): + raise FileNotFoundError( + f"Tracking contract file not found: {CONTRACTS_PATH}. " + "data/contracts/events.yml is required for release intelligence." + ) + raw = yaml.safe_load(CONTRACTS_PATH.read_text(encoding="utf-8")) + if not isinstance(raw, dict) or "version" not in raw or "events" not in raw: + raise ValueError("events.yml must declare top-level 'version' and 'events'") + events_raw = raw["events"] + if not isinstance(events_raw, dict) or not events_raw: + raise ValueError("events.yml must declare at least one event") + + events: dict[str, EventContract] = {} + for name, spec in events_raw.items(): + spec = spec or {} + owner = spec.get("owner") + required = tuple(spec.get("required_properties") or ()) + if not owner: + raise ValueError(f"event '{name}' is missing an owner") + if not required: + raise ValueError(f"event '{name}' declares no required_properties") + max_per_session = spec.get("max_per_user_session") + events[str(name)] = EventContract( + name=str(name), + owner=str(owner), + required_properties=required, + must_follow=tuple(spec.get("must_follow") or ()), + max_per_user_session=int(max_per_session) + if max_per_session is not None + else None, + introduced_in=str(spec["introduced_in"]) + if spec.get("introduced_in") + else None, + ) + + for name, spec in events.items(): + for prerequisite in spec.must_follow: + if prerequisite not in events: + raise ValueError( + f"event '{name}' must_follow references undeclared '{prerequisite}'" + ) + + return TrackingContract(version=int(raw["version"]), events=events) + + +def clear_contract_cache() -> None: + load_tracking_contract.cache_clear() + validate_release.cache_clear() + + +@dataclass(frozen=True) +class InstrumentationReport: + """Deterministic health verdict for one release's event stream.""" + + release: str + total_events: int + trusted_events: int + violations: tuple[InstrumentationViolation, ...] + unknown_events: tuple[str, ...] + status: str + + +def _load_release_frame(release: str) -> pd.DataFrame: + from app.services.release_fixture import load_release_frame + + return load_release_frame(release) + + +def _row_properties(row: pd.Series) -> dict: + try: + parsed = json.loads(row["properties"]) if row["properties"] else {} + except (TypeError, ValueError): + parsed = {} + return parsed if isinstance(parsed, dict) else {} + + +def _missing_props(frame: pd.DataFrame) -> pd.Index: + """Row indices missing at least one contract-required property.""" + contract = load_tracking_contract() + offenders: list[int] = [] + props_by_row = {idx: _row_properties(row) for idx, row in frame.iterrows()} + for idx, row in frame.iterrows(): + spec = contract.events.get(str(row["event_name"])) + if spec is None: + continue + available = set(props_by_row[idx]) | { + key for key in frame.columns if pd.notna(row.get(key)) + } + if any(prop not in available for prop in spec.required_properties): + offenders.append(idx) + return pd.Index(offenders) + + +def _order_violation_rows(frame: pd.DataFrame) -> pd.Index: + """Rows whose must_follow prerequisites were not seen earlier in-session.""" + contract = load_tracking_contract() + offenders: list[int] = [] + for _, session in frame.groupby("session_id", sort=False): + ordered = session.sort_values(["ts", "event_id"]) + seen: set[str] = set() + for idx, row in ordered.iterrows(): + name = str(row["event_name"]) + spec = contract.events.get(name) + if spec and any(prerequisite not in seen for prerequisite in spec.must_follow): + offenders.append(idx) + seen.add(name) + return pd.Index(offenders) + + +def _duplicate_insert_rows(frame: pd.DataFrame) -> tuple[pd.Index, int]: + """Extra rows reusing an insert_id; returns their indices and user count.""" + counts = frame.groupby(["user_id", "insert_id"]).cumcount() + extra = frame[counts > 0] + if extra.empty: + return pd.Index([]), 0 + users = int(extra["user_id"].nunique()) + return extra.index, users + + +def _cardinality_rows(frame: pd.DataFrame) -> pd.Index: + """Excess occurrences of an event within one user session. + + Counts DISTINCT logical events: duplicate insert_id rows are deduped + first so one client retry is never double-reported as a breach. + """ + contract = load_tracking_contract() + dup_idx, _ = _duplicate_insert_rows(frame) + deduped = frame.drop(index=dup_idx) + offenders: list[int] = [] + grouped = deduped.groupby(["user_id", "session_id", "event_name"], sort=False) + for (_, _, event_name), group in grouped: + spec = contract.events.get(str(event_name)) + if spec is None or spec.max_per_user_session is None: + continue + if len(group) <= spec.max_per_user_session: + continue + ordered = group.sort_values(["ts", "event_id"]) + offenders.extend(ordered.index[spec.max_per_user_session :]) + return pd.Index(offenders) + + +def _unknown_events(frame: pd.DataFrame) -> tuple[str, ...]: + contract = load_tracking_contract() + observed = set(frame["event_name"].astype(str)) + return tuple(sorted(observed - set(contract.events))) + + +@lru_cache(maxsize=8) +def invalid_row_indices_for(release: str) -> tuple[int, ...]: + """Row positions failing any block-level contract check (stable order).""" + frame = _load_release_frame(release) + missing_idx = _missing_props(frame) + order_idx = _order_violation_rows(frame) + dup_idx, _ = _duplicate_insert_rows(frame) + card_idx = _cardinality_rows(frame) + return tuple(sorted(set(missing_idx) | set(order_idx) | set(dup_idx) | set(card_idx))) + + +@lru_cache(maxsize=8) +def validate_release(release: str) -> InstrumentationReport: + """Run every deterministic instrumentation check against one release.""" + from app.services.release_fixture import RELEASE_PROFILES + + if release not in RELEASE_PROFILES: + raise KeyError(f"unknown release '{release}'") + + frame = _load_release_frame(release) + contract = load_tracking_contract() + total = int(len(frame)) + violations: list[InstrumentationViolation] = [] + + # 1. Unknown events — warning only, never silently dropped. + unknown = _unknown_events(frame) + for event_name in unknown: + affected = frame[frame["event_name"] == event_name] + violations.append( + InstrumentationViolation( + event_name=event_name, + code="unknown_event", + release=release, + user_count=int(affected["user_id"].nunique()), + evidence_count=int(len(affected)), + severity="warning", + ) + ) + + # 2. Missing required properties. + missing_idx = _missing_props(frame) + if len(missing_idx): + missing_frame = frame.loc[missing_idx] + by_event = missing_frame.groupby("event_name") + for event_name, group in by_event: + violations.append( + InstrumentationViolation( + event_name=str(event_name), + code="missing_required_property", + release=release, + user_count=int(group["user_id"].nunique()), + evidence_count=int(len(group)), + severity="block", + ) + ) + + # 3. Order violations (must_follow within session). + order_idx = _order_violation_rows(frame) + if len(order_idx): + order_frame = frame.loc[order_idx] + for event_name, group in order_frame.groupby("event_name"): + violations.append( + InstrumentationViolation( + event_name=str(event_name), + code="order_violation", + release=release, + user_count=int(group["user_id"].nunique()), + evidence_count=int(len(group)), + severity="block", + ) + ) + + # 4. Duplicate insert_ids (client retries shipping the same id). + dup_idx, dup_users = _duplicate_insert_rows(frame) + if len(dup_idx): + dup_frame = frame.loc[dup_idx] + violations.append( + InstrumentationViolation( + event_name=str(dup_frame["event_name"].mode().iat[0]), + code="duplicate_insert_id", + release=release, + user_count=dup_users, + evidence_count=int(len(dup_idx)), + severity="block", + ) + ) + + # 5. Cardinality breaches (max_per_user_session). + cardinality_idx = _cardinality_rows(frame) + if len(cardinality_idx): + card_frame = frame.loc[cardinality_idx] + for event_name, group in card_frame.groupby("event_name"): + violations.append( + InstrumentationViolation( + event_name=str(event_name), + code="cardinality_breach", + release=release, + user_count=int(group["user_id"].nunique()), + evidence_count=int(len(group)), + severity="block", + ) + ) + + # 6. Event drift vs baseline release (heuristic rate comparison). + baseline = _load_release_frame(BASELINE_RELEASE) + baseline_users = max(int(baseline["user_id"].nunique()), 1) + current_users = max(int(frame["user_id"].nunique()), 1) + for name in sorted(set(contract.events) & set(frame["event_name"])): + base_rate = int((baseline["event_name"] == name).sum()) / baseline_users + curr_rate = int((frame["event_name"] == name).sum()) / current_users + if base_rate > 0 and curr_rate / base_rate > DRIFT_RATE_RATIO_THRESHOLD: + violations.append( + InstrumentationViolation( + event_name=name, + code="event_drift", + release=release, + user_count=int( + frame.loc[frame["event_name"] == name, "user_id"].nunique() + ), + evidence_count=int((frame["event_name"] == name).sum()), + severity="warning", + ) + ) + + # Trusted view: drop block-invalid rows (union of flagged index sets). + invalid = pd.Index( + sorted(set(missing_idx) | set(order_idx) | set(dup_idx) | set(cardinality_idx)) + ) + trusted = total - int(len(invalid)) + + violations.sort(key=lambda v: (SEVERITY_RANK[v.severity], v.code, v.event_name)) + has_block = any(v.severity == "block" for v in violations) + status = "block" if has_block else ("warn" if violations else "pass") + + return InstrumentationReport( + release=release, + total_events=total, + trusted_events=trusted, + violations=tuple(violations), + unknown_events=unknown, + status=status, + ) diff --git a/apps/api/app/services/journey_diff.py b/apps/api/app/services/journey_diff.py new file mode 100644 index 0000000..1f661f9 --- /dev/null +++ b/apps/api/app/services/journey_diff.py @@ -0,0 +1,70 @@ +"""Journey diff: which session-transition edges appear or vanish per release. + +Edges are counted from time-ordered events inside each synthetic session. +A minimum support threshold keeps one-off noise out of the narrative. The +diff is descriptive evidence for instrumentation conversations — not causal +attribution and not a Markov model. +""" + +from __future__ import annotations + +from collections import Counter + +from app.services.release_fixture import load_release_frame + +DIFF_NOTICE = ( + "Observational edge diff between release journey graphs. New edges show " + "where tracking or behavior changed; they never prove causation." +) + + +def _session_transitions(frame) -> Counter[tuple[str, str]]: + transitions: Counter[tuple[str, str]] = Counter() + ordered = frame.sort_values(["ts", "event_id"]) + for _, session in ordered.groupby("session_id", sort=False): + names = session["event_name"].tolist() + for src, dst in zip(names, names[1:], strict=False): + if src != dst: + transitions[(src, dst)] += 1 + return transitions + + +def diff_journeys(baseline_release: str, target_release: str, min_support: int = 10) -> dict: + min_support = max(1, int(min_support)) + baseline_edges = { + edge: weight + for edge, weight in _session_transitions( + load_release_frame(baseline_release) + ).items() + if weight >= min_support + } + target_edges = { + edge: weight + for edge, weight in _session_transitions( + load_release_frame(target_release) + ).items() + if weight >= min_support + } + + added = sorted(target_edges.keys() - baseline_edges.keys()) + removed = sorted(baseline_edges.keys() - target_edges.keys()) + + return { + "baseline": baseline_release, + "target": target_release, + "min_support": min_support, + "baseline_edges": [list(edge) for edge in sorted(baseline_edges)], + "added": [ + {"source": src, "target": dst, "target_weight": target_edges[(src, dst)]} + for src, dst in added + ], + "removed": [ + { + "source": src, + "target": dst, + "baseline_weight": baseline_edges[(src, dst)], + } + for src, dst in removed + ], + "notice": DIFF_NOTICE, + } diff --git a/apps/api/app/services/release_compare.py b/apps/api/app/services/release_compare.py new file mode 100644 index 0000000..c6398e9 --- /dev/null +++ b/apps/api/app/services/release_compare.py @@ -0,0 +1,187 @@ +"""Release comparison: raw vs trusted metrics, per unique user. + +Raw funnels use every ingested event. Trusted funnels drop rows failing +block-level tracking contracts (see instrumentation.invalid_row_indices_for). +The comparison proves whether a release's apparent gain is real product +behavior or an instrumentation artifact. All rates are unique-user based and +strictly observational — no causal claims without an experiment flag. +""" + +from __future__ import annotations + +import math +from dataclasses import dataclass + +from app.services.instrumentation import validate_release +from app.services.release_fixture import RELEASES, load_release_frame + +ACTIVATION_STEPS = [ + "signup_started", + "signup_completed", + "profile_saved", + "onboarding_completed", + "activation_completed", +] + +BASELINE_RELEASE = "v2.2.0-healthy" +RAW_GAIN_THRESHOLD = 1.05 +TRUSTED_SURVIVAL_THRESHOLD = 1.05 + +OBSERVATIONAL_NOTICE = ( + "Observational comparison only. Rates describe what fired per unique user; " + "no causal effect is claimed without a controlled experiment." +) + + +def wilson_interval(k: int, n: int, z: float = 1.96) -> tuple[float, float]: + """Wilson score interval for a proportion — never returns negative bounds.""" + if n <= 0: + return (0.0, 0.0) + p = k / n + denom = 1 + z * z / n + center = (p + z * z / (2 * n)) / denom + half = z * math.sqrt(p * (1 - p) / n + z * z / (4 * n * n)) / denom + return (round(max(0.0, center - half), 4), round(min(1.0, center + half), 4)) + + +@dataclass(frozen=True) +class ReleaseComparison: + release: str + total_events: int + trusted_events: int + raw_funnel: tuple[dict, ...] + trusted_funnel: tuple[dict, ...] + activation_raw_rate: float + activation_trusted_rate: float + verdict: dict + + +def _loose_funnel(frame) -> tuple[dict, ...]: + """Per-event unique-user funnel relative to signup starters. + + Deliberately LOOSE on purpose: this mirrors what a naive dashboard counts + ('did the event ever fire'). Contract-invalid rows are only removed in the + trusted view, which is exactly how broken instrumentation fakes gains. + """ + starters = frame.loc[frame["event_name"] == ACTIVATION_STEPS[0], "user_id"] + start_count = int(starters.nunique()) + + steps: list[dict] = [] + for name in ACTIVATION_STEPS: + users = int(frame.loc[frame["event_name"] == name, "user_id"].nunique()) + conversion_from_start = round(users / start_count, 3) if start_count else 0.0 + steps.append( + { + "step": name, + "users": users, + "conversion_from_start": conversion_from_start, + "unique_user_basis": True, + } + ) + return tuple(steps) + + +def _step_map(funnel: tuple[dict, ...]) -> dict[str, dict]: + return {step["step"]: step for step in funnel} + + +def _trusted_frame(release: str): + from app.services.instrumentation import invalid_row_indices_for + + frame = load_release_frame(release).reset_index(drop=True) + invalid = invalid_row_indices_for(release) + return frame.drop(index=list(invalid)) + + +def compare_release(release: str) -> ReleaseComparison: + raw_frame = load_release_frame(release).reset_index(drop=True) + trusted_frame = _trusted_frame(release) + + raw_funnel = _loose_funnel(raw_frame) + trusted_funnel = _loose_funnel(trusted_frame) + + def activation_rate(funnel: tuple[dict, ...]) -> float: + start = _step_map(funnel)["signup_started"]["users"] + activated = _step_map(funnel)["activation_completed"]["users"] + return round(activated / start, 3) if start else 0.0 + + baseline = _step_map(_loose_funnel(load_release_frame(BASELINE_RELEASE))) + baseline_trusted = _step_map( + _loose_funnel(_trusted_frame(BASELINE_RELEASE)) + ) + + best_step, best_ratio = "", 1.0 + raw_now = _step_map(raw_funnel) + for name in ACTIVATION_STEPS[1:]: + base_users = max(baseline[name]["users"], 1) + ratio = raw_now[name]["users"] / base_users + if ratio > best_ratio: + best_step, best_ratio = name, ratio + + if release == BASELINE_RELEASE or not best_step: + verdict = { + "classification": "baseline", + "raw_looks_better": False, + "survives_trusted_filter": False, + "gain_step": None, + "raw_gain_pct": 0.0, + "trusted_gain_pct": 0.0, + } + else: + trusted_now = _step_map(trusted_funnel) + base_users = max(baseline[best_step]["users"], 1) + trusted_base = max(baseline_trusted[best_step]["users"], 1) + trusted_ratio = trusted_now[best_step]["users"] / trusted_base + survives = bool(trusted_ratio > TRUSTED_SURVIVAL_THRESHOLD) + verdict = { + "classification": ( + "real_improvement" if survives else "instrumentation_artifact" + ), + "raw_looks_better": True, + "survives_trusted_filter": survives, + "gain_step": best_step, + "raw_gain_pct": round((best_ratio - 1) * 100, 1), + "trusted_gain_pct": round((trusted_ratio - 1) * 100, 1), + } + + return ReleaseComparison( + release=release, + total_events=int(len(raw_frame)), + trusted_events=int(len(trusted_frame)), + raw_funnel=raw_funnel, + trusted_funnel=trusted_funnel, + activation_raw_rate=activation_rate(raw_funnel), + activation_trusted_rate=activation_rate(trusted_funnel), + verdict=verdict, + ) + + +def build_overview() -> dict: + releases = [] + for release in RELEASES: + comparison = compare_release(release) + report = validate_release(release) + starters = comparison.raw_funnel[0]["users"] + activated_trusted = _step_map(comparison.trusted_funnel)["activation_completed"][ + "users" + ] + releases.append( + { + "release": release, + "total_events": comparison.total_events, + "trusted_events": comparison.trusted_events, + "activation_raw_rate": comparison.activation_raw_rate, + "activation_trusted_rate": comparison.activation_trusted_rate, + "activation_trusted_ci": wilson_interval(activated_trusted, starters), + "instrumentation_status": report.status, + "verdict": comparison.verdict, + "raw_funnel": list(comparison.raw_funnel), + "trusted_funnel": list(comparison.trusted_funnel), + } + ) + return { + "method": "unique_user_funnel", + "baseline": BASELINE_RELEASE, + "observational_notice": OBSERVATIONAL_NOTICE, + "releases": releases, + } diff --git a/apps/api/app/services/release_fixture.py b/apps/api/app/services/release_fixture.py new file mode 100644 index 0000000..17f9b1f --- /dev/null +++ b/apps/api/app/services/release_fixture.py @@ -0,0 +1,310 @@ +"""Deterministic synthetic release fixtures for release intelligence. + +Three releases tell one honest story: + +* ``v2.2.0-healthy`` — clean instrumentation, baseline product behavior. +* ``v2.3.0-buggy`` — SAME product behavior, but the client shipped broken + instrumentation: ``onboarding_completed`` fires before ``profile_saved`` + (order violation + missing ``completed_at``), some events repeat an + ``insert_id``, and an undeclared event appears. +* ``v2.3.0-fixed`` — genuinely better product AND corrected instrumentation. + +Raw metrics make v2.3-buggy look like a win; trusted metrics prove it wasn't. +All identifiers are synthetic and PII-free. Same seed ⇒ byte-identical output. +""" + +from __future__ import annotations + +import json +import random +from dataclasses import dataclass +from datetime import datetime, timedelta +from functools import cache + +import pandas as pd + +COLUMNS = [ + "event_id", + "user_id", + "event_name", + "ts", + "session_id", + "insert_id", + "properties", + "release", +] + +KNOWN_EVENTS = { + "signup_started", + "signup_completed", + "profile_saved", + "onboarding_step_viewed", + "onboarding_completed", + "activation_completed", + "feature_used", + "session_abandoned", + "error_shown", + "return_visit", +} + + +@dataclass(frozen=True) +class ReleaseProfile: + release: str + started_at: str + ended_at: str + seed: int + n_users: int + activation_rate: float + premature_onboarding_p: float + duplicate_insert_id_p: float + unknown_event_p: float + + +RELEASE_PROFILES: dict[str, ReleaseProfile] = { + "v2.2.0-healthy": ReleaseProfile( + release="v2.2.0-healthy", + started_at="2026-06-01T00:00:00Z", + ended_at="2026-06-07T23:59:59Z", + seed=2201, + n_users=800, + activation_rate=0.42, + premature_onboarding_p=0.0, + duplicate_insert_id_p=0.0, + unknown_event_p=0.0, + ), + "v2.3.0-buggy": ReleaseProfile( + release="v2.3.0-buggy", + started_at="2026-06-08T00:00:00Z", + ended_at="2026-06-14T23:59:59Z", + seed=2301, + n_users=800, + activation_rate=0.42, + premature_onboarding_p=0.55, + duplicate_insert_id_p=0.02, + unknown_event_p=0.05, + ), + "v2.3.0-fixed": ReleaseProfile( + release="v2.3.0-fixed", + started_at="2026-06-15T00:00:00Z", + ended_at="2026-06-21T23:59:59Z", + seed=2401, + n_users=800, + activation_rate=0.50, + premature_onboarding_p=0.0, + duplicate_insert_id_p=0.0, + unknown_event_p=0.0, + ), +} + +RELEASES = tuple(RELEASE_PROFILES) + + +def _iso(dt: datetime) -> str: + return dt.isoformat().replace("+00:00", "Z") + + +def build_release_frame(release: str) -> pd.DataFrame: + """Build the synthetic event frame for one release (pure, cached-free).""" + profile = RELEASE_PROFILES.get(release) + if profile is None: + raise KeyError( + f"unknown release '{release}'. Known releases: {', '.join(RELEASES)}" + ) + + rng = random.Random(profile.seed) + window_start = datetime.fromisoformat(profile.started_at.replace("Z", "+00:00")) + rows: list[dict] = [] + + def emit( + user_id: str, + name: str, + ts: datetime, + session_id: str, + insert_id: str, + properties: dict | None = None, + force_duplicate: bool = False, + ) -> None: + rows.append( + { + "user_id": user_id, + "event_name": name, + "ts": _iso(ts), + "session_id": session_id, + "insert_id": insert_id, + "properties": json.dumps(properties or {}, sort_keys=True), + } + ) + if ( + force_duplicate or rng.random() < profile.duplicate_insert_id_p + ) and name != "signup_started": + # Client retry shipped the same insert_id twice (duplicate evidence). + rows.append( + { + "user_id": user_id, + "event_name": name, + "ts": _iso(ts + timedelta(minutes=1)), + "session_id": session_id, + "insert_id": insert_id, + "properties": json.dumps(properties or {}, sort_keys=True), + } + ) + + for index in range(1, profile.n_users + 1): + user_id = f"u_{index:04d}" + base = window_start + timedelta( + days=rng.randint(0, 6), + hours=rng.randint(8, 20), + minutes=rng.randint(0, 59), + ) + s1 = f"{user_id}_s01" + seq = 0 + + def next_insert(owner: str = user_id) -> str: + nonlocal seq + seq += 1 + return f"ins_{owner}_{seq:03d}" + + emit(user_id, "signup_started", base, s1, next_insert()) + + t = base + timedelta(minutes=rng.randint(1, 8)) + if rng.random() >= 0.82: + emit(user_id, "session_abandoned", t, s1, next_insert()) + continue + emit(user_id, "signup_completed", t, s1, next_insert()) + + if rng.random() < profile.unknown_event_p: + emit( + user_id, + "upsell_modal_shown", + t + timedelta(minutes=1), + s1, + next_insert(), + ) + + saved_profile = rng.random() < 0.72 + if not saved_profile: + # Buggy clients fired completion before the profile existed at all: + # an order violation that also lacks its required completed_at prop. + if rng.random() < profile.premature_onboarding_p: + emit( + user_id, + "onboarding_completed", + t + timedelta(minutes=rng.randint(1, 3)), + s1, + next_insert(), + ) + emit( + user_id, + "session_abandoned", + t + timedelta(minutes=rng.randint(4, 9)), + s1, + next_insert(), + ) + continue + + t += timedelta(minutes=rng.randint(2, 10)) + emit(user_id, "profile_saved", t, s1, next_insert()) + + if rng.random() < 0.12: + emit( + user_id, + "error_shown", + t + timedelta(minutes=1), + s1, + next_insert(), + {"code": "onboarding_timeout"}, + ) + + if rng.random() < 0.85: + emit( + user_id, + "onboarding_step_viewed", + t + timedelta(minutes=rng.randint(2, 6)), + s1, + next_insert(), + ) + + if rng.random() < 0.62: + emit( + user_id, + "feature_used", + t + timedelta(minutes=rng.randint(7, 25)), + s1, + next_insert(), + {"feature": "board" if index % 2 == 0 else "insights"}, + ) + + if rng.random() < 0.88: + emit( + user_id, + "onboarding_completed", + t + timedelta(minutes=rng.randint(26, 45)), + s1, + next_insert(), + {"completed_at": _iso(t + timedelta(minutes=rng.randint(26, 40)))}, + ) + + activated = rng.random() < profile.activation_rate + if activated: + emit( + user_id, + "activation_completed", + t + timedelta(minutes=rng.randint(46, 80)), + s1, + next_insert(), + ) + + if rng.random() < 0.45: + s2 = f"{user_id}_s02" + t2 = base + timedelta(days=rng.randint(2, 9), hours=rng.randint(9, 19)) + emit(user_id, "return_visit", t2, s2, next_insert()) + if rng.random() < 0.5: + emit( + user_id, + "feature_used", + t2 + timedelta(minutes=5), + s2, + next_insert(), + {"feature": "insights"}, + ) + + if activated and rng.random() < 0.30: + s3 = f"{user_id}_s03" + t3 = base + timedelta(days=rng.randint(14, 20), hours=rng.randint(10, 17)) + emit(user_id, "return_visit", t3, s3, next_insert()) + emit( + user_id, + "feature_used", + t3 + timedelta(minutes=4), + s3, + next_insert(), + {"feature": "board"}, + ) + + rows.sort(key=lambda r: (r["ts"], r["user_id"], r["insert_id"])) + for position, row in enumerate(rows, start=1): + row["event_id"] = f"evt_{position:06d}" + row["release"] = profile.release + + frame = pd.DataFrame(rows, columns=COLUMNS) + return frame + + +@cache +def load_release_frame(release: str) -> pd.DataFrame: + return build_release_frame(release) + + +def release_manifest(release: str) -> dict: + profile = RELEASE_PROFILES[release] + frame = build_release_frame(release) + return { + "release": profile.release, + "started_at": profile.started_at, + "ended_at": profile.ended_at, + "experiment": False, + "users": int(frame["user_id"].nunique()), + "events": int(len(frame)), + "generator_seed": profile.seed, + } diff --git a/apps/api/requirements.txt b/apps/api/requirements.txt index 510efd6..f19bbb0 100644 --- a/apps/api/requirements.txt +++ b/apps/api/requirements.txt @@ -4,6 +4,7 @@ pydantic>=2.10.0 pandas>=2.2.0 numpy>=2.1.0 networkx>=3.4.0 +pyyaml>=6.0.1 python-multipart>=0.0.12 httpx>=0.28.0 pytest>=8.0.0 diff --git a/apps/api/tests/test_instrumentation.py b/apps/api/tests/test_instrumentation.py new file mode 100644 index 0000000..061769f --- /dev/null +++ b/apps/api/tests/test_instrumentation.py @@ -0,0 +1,228 @@ +"""Release intelligence tests: tracking contracts + instrumentation validator.""" + +from __future__ import annotations + +from dataclasses import FrozenInstanceError + +import pandas as pd +import pytest + +from app.services.instrumentation import ( + InstrumentationViolation, + load_tracking_contract, + validate_release, +) + + +class TestTrackingContracts: + """Phase 2 — versioned YAML contracts are the source of truth.""" + + def test_contract_file_loads_and_is_versioned(self) -> None: + contract = load_tracking_contract() + assert contract.version == 1 + assert len(contract.events) > 0 + + def test_canonical_onboarding_completed_contract(self) -> None: + contract = load_tracking_contract() + spec = contract.events["onboarding_completed"] + assert spec.owner == "growth" + assert "user_id" in spec.required_properties + assert "session_id" in spec.required_properties + assert "insert_id" in spec.required_properties + assert "release" in spec.required_properties + assert spec.must_follow == ("profile_saved",) + assert spec.max_per_user_session == 1 + assert spec.introduced_in == "2.1.0" + + def test_every_declared_event_has_owner_and_required_props(self) -> None: + contract = load_tracking_contract() + for name, spec in contract.events.items(): + assert spec.owner, f"{name} missing owner" + assert spec.required_properties, f"{name} missing required_properties" + + def test_must_follow_references_declared_events(self) -> None: + contract = load_tracking_contract() + for name, spec in contract.events.items(): + for prerequisite in spec.must_follow: + assert ( + prerequisite in contract.events + ), f"{name}.must_follow references undeclared event {prerequisite}" + + def test_violation_dataclass_is_frozen_with_canonical_fields(self) -> None: + violation = InstrumentationViolation( + event_name="onboarding_completed", + code="order_violation", + release="2.3.0-buggy", + user_count=10, + evidence_count=10, + severity="block", + ) + assert violation.event_name == "onboarding_completed" + with pytest.raises(FrozenInstanceError): + violation.event_name = "mutated" # type: ignore[misc] + + +class TestReleaseFixtures: + """Phase 3 — deterministic synthetic releases, no PII.""" + + def test_known_releases_are_declared(self) -> None: + from app.services.release_fixture import RELEASES + + assert set(RELEASES) == {"v2.2.0-healthy", "v2.3.0-buggy", "v2.3.0-fixed"} + + def test_generation_is_deterministic(self) -> None: + from app.services.release_fixture import build_release_frame + + first = build_release_frame("v2.3.0-buggy") + second = build_release_frame("v2.3.0-buggy") + pd.testing.assert_frame_equal(first, second) + + def test_every_row_is_tagged_with_its_release(self) -> None: + from app.services.release_fixture import RELEASES, build_release_frame + + for release in RELEASES: + frame = build_release_frame(release) + assert (frame["release"] == release).all() + + def test_frames_carry_required_columns(self) -> None: + from app.services.release_fixture import build_release_frame + + frame = build_release_frame("v2.2.0-healthy") + for column in ( + "event_id", + "user_id", + "event_name", + "ts", + "session_id", + "insert_id", + "properties", + "release", + ): + assert column in frame.columns, f"missing column {column}" + + def test_healthy_fixture_has_no_premature_onboarding(self) -> None: + from app.services.release_fixture import build_release_frame + + frame = build_release_frame("v2.2.0-healthy") + bad = _premature_onboarding_users(frame) + assert len(bad) == 0 + + def test_buggy_fixture_has_premature_onboarding_duplicates_and_unknown( + self, + ) -> None: + from app.services.release_fixture import build_release_frame + + frame = build_release_frame("v2.3.0-buggy") + assert len(_premature_onboarding_users(frame)) > 20 + duplicated = frame["insert_id"].duplicated(keep=False) + assert int(duplicated.sum()) > 0 + assert (frame["event_name"] == "upsell_modal_shown").any() + + +def _premature_onboarding_users(frame: pd.DataFrame) -> set[str]: + """Users whose onboarding_completed precedes any profile_saved in-session.""" + offenders: set[str] = set() + for _, session in frame.groupby("session_id", sort=False): + ordered = session.sort_values("ts") + names = ordered["event_name"].tolist() + for position, name in enumerate(names): + if name != "onboarding_completed": + continue + prior = set(names[:position]) + if "profile_saved" not in prior: + offenders.add(str(session["user_id"].iloc[0])) + return offenders + + +class TestInstrumentationValidator: + """Phase 4 — golden scenarios G1..G4 and G6.""" + + @staticmethod + def _codes(report) -> dict[tuple[str, str], InstrumentationViolation]: + return {(v.code, v.event_name): v for v in report.violations} + + def test_g1_healthy_release_passes_contracts(self) -> None: + report = validate_release("v2.2.0-healthy") + assert report.status == "pass" + assert report.violations == () + + def test_g2_buggy_release_blocks_on_order_violation(self) -> None: + report = validate_release("v2.3.0-buggy") + violation = self._codes(report)[("order_violation", "onboarding_completed")] + assert violation.severity == "block" + assert violation.user_count >= 20 + assert violation.evidence_count >= 20 + + def test_g4_buggy_release_detects_duplicate_insert_ids(self) -> None: + report = validate_release("v2.3.0-buggy") + violation = next(v for v in report.violations if v.code == "duplicate_insert_id") + assert violation.severity == "block" + assert violation.evidence_count > 0 + + def test_g6_unknown_event_warns_without_silent_drop(self) -> None: + report = validate_release("v2.3.0-buggy") + assert "upsell_modal_shown" in report.unknown_events + warning = next( + v + for v in report.violations + if v.code == "unknown_event" and v.event_name == "upsell_modal_shown" + ) + assert warning.severity == "warning" + + def test_buggy_release_reports_missing_required_property(self) -> None: + report = validate_release("v2.3.0-buggy") + violation = self._codes(report)[ + ("missing_required_property", "onboarding_completed") + ] + assert violation.severity == "block" + assert violation.user_count >= 20 + + def test_event_drift_flags_premature_completion_spike(self) -> None: + report = validate_release("v2.3.0-buggy") + assert ("event_drift", "onboarding_completed") in self._codes(report) + + def test_fixed_release_has_no_block_violations(self) -> None: + report = validate_release("v2.3.0-fixed") + assert all(v.severity != "block" for v in report.violations) + + def test_trusted_view_shrinks_buggy_but_keeps_healthy_stable(self) -> None: + healthy = validate_release("v2.2.0-healthy") + buggy = validate_release("v2.3.0-buggy") + assert buggy.trusted_events < buggy.total_events + assert healthy.trusted_events <= healthy.total_events + assert buggy.trusted_events / buggy.total_events < 0.99 + + def test_report_is_deterministic_and_sorted(self) -> None: + first = validate_release("v2.3.0-buggy") + second = validate_release("v2.3.0-buggy") + assert first == second + ranks = {"block": 0, "warning": 1} + keys = [(ranks[v.severity], v.code, v.event_name) for v in first.violations] + assert keys == sorted(keys) + + def test_cardinality_counts_distinct_events_after_dedup(self) -> None: + """A reused insert_id is ONE logical event — duplicates must not + double-report as cardinality breaches.""" + import pandas as pd + + from app.services.instrumentation import _cardinality_rows + + frame = pd.DataFrame( + [ + { + "user_id": "u_1", + "session_id": "s", + "event_name": "onboarding_completed", + "ts": f"2026-06-08T10:0{minute}:00Z", + "event_id": f"e{i}", + "insert_id": insert_id, + "properties": "{}", + } + for i, (minute, insert_id) in enumerate( + [(0, "ins_a"), (1, "ins_b"), (2, "ins_a")] + ) + ] + ) + flagged = list(_cardinality_rows(frame)) + expected = frame.index[frame["insert_id"] == "ins_b"].tolist() + assert flagged == expected diff --git a/apps/api/tests/test_journey_diff.py b/apps/api/tests/test_journey_diff.py new file mode 100644 index 0000000..50f2b22 --- /dev/null +++ b/apps/api/tests/test_journey_diff.py @@ -0,0 +1,43 @@ +"""Journey diff tests: release-over-release graph edge changes.""" + +from __future__ import annotations + +from app.services.journey_diff import diff_journeys + + +class TestJourneyDiff: + def test_diff_is_deterministic(self) -> None: + first = diff_journeys("v2.2.0-healthy", "v2.3.0-buggy", min_support=5) + second = diff_journeys("v2.2.0-healthy", "v2.3.0-buggy", min_support=5) + assert first == second + + def test_buggy_release_adds_shortcut_edge_bypassing_profile_saved(self) -> None: + diff = diff_journeys("v2.2.0-healthy", "v2.3.0-buggy", min_support=20) + assert ("signup_completed", "onboarding_completed") not in diff["baseline_edges"] + shortcut = next( + ( + edge + for edge in diff["added"] + if edge["source"] == "signup_completed" + and edge["target"] == "onboarding_completed" + ), + None, + ) + assert shortcut is not None + assert shortcut["target_weight"] >= 20 + + def test_removed_edges_carry_baseline_evidence(self) -> None: + diff = diff_journeys("v2.3.0-buggy", "v2.2.0-healthy", min_support=20) + for edge in diff["removed"]: + assert edge["baseline_weight"] >= 20 + + def test_min_support_filters_noise(self) -> None: + strict = diff_journeys("v2.2.0-healthy", "v2.3.0-fixed", min_support=500) + loose = diff_journeys("v2.2.0-healthy", "v2.3.0-fixed", min_support=1) + assert len(loose["added"] + loose["removed"]) >= len( + strict["added"] + strict["removed"] + ) + + def test_payload_declares_observational_scope(self) -> None: + diff = diff_journeys("v2.2.0-healthy", "v2.3.0-fixed", min_support=10) + assert diff["notice"].startswith("Observational") diff --git a/apps/api/tests/test_release_compare.py b/apps/api/tests/test_release_compare.py new file mode 100644 index 0000000..5b9932e --- /dev/null +++ b/apps/api/tests/test_release_compare.py @@ -0,0 +1,133 @@ +"""Release comparison tests: raw vs trusted funnels per release (G3, G5).""" + +from __future__ import annotations + +import pytest + +from app.services.release_compare import ( + ACTIVATION_STEPS, + build_overview, + compare_release, + wilson_interval, +) + + +class TestUncertainty: + """Phase 6 — confidence bands and observational-only language.""" + + def test_wilson_brackets_point_estimate(self) -> None: + low, high = wilson_interval(194, 704) + assert low < 194 / 704 < high + + def test_wilson_width_shrinks_with_sample_size(self) -> None: + narrow_low, narrow_high = wilson_interval(500, 1000) + wide_low, wide_high = wilson_interval(5, 10) + assert (narrow_high - narrow_low) < (wide_high - wide_low) + + def test_wilson_handles_degenerate_counts(self) -> None: + assert wilson_interval(0, 0) == (0.0, 0.0) + low, high = wilson_interval(0, 50) + assert low == 0.0 and high > 0.0 + + def test_overview_carries_confidence_intervals(self) -> None: + overview = build_overview() + for entry in overview["releases"]: + low, high = entry["activation_trusted_ci"] + rate = entry["activation_trusted_rate"] + assert low <= rate <= high, f"CI must bracket the estimate for {entry['release']}" + + def test_payloads_stay_observational(self) -> None: + overview = build_overview() + text = str(overview).lower() + for banned in ("because of the release", "caused by", "due to the release"): + assert banned not in text + assert overview["observational_notice"].startswith("Observational") + + +class TestReleaseCompare: + def test_activation_steps_match_canonical_path(self) -> None: + assert ACTIVATION_STEPS == [ + "signup_started", + "signup_completed", + "profile_saved", + "onboarding_completed", + "activation_completed", + ] + + @staticmethod + def _step(funnel, name: str) -> dict: + return next(step for step in funnel if step["step"] == name) + + def test_healthy_raw_and_trusted_are_equivalent(self) -> None: + comparison = compare_release("v2.2.0-healthy") + assert comparison.total_events == comparison.trusted_events or ( + comparison.trusted_events / comparison.total_events > 0.98 + ) + raw = self._step(comparison.raw_funnel, "activation_completed") + trusted = self._step(comparison.trusted_funnel, "activation_completed") + assert raw["users"] == trusted["users"] + + def test_g3_buggy_raw_gain_vanishes_under_trusted_filter(self) -> None: + healthy = compare_release("v2.2.0-healthy") + buggy = compare_release("v2.3.0-buggy") + + raw_onboarding_h = self._step(healthy.raw_funnel, "onboarding_completed")["users"] + raw_onboarding_b = self._step(buggy.raw_funnel, "onboarding_completed")["users"] + assert raw_onboarding_b / max(raw_onboarding_h, 1) > 1.10, ( + "fixture bug: buggy release must LOOK better on raw onboarding" + ) + + trusted_onboarding_h = self._step( + healthy.trusted_funnel, "onboarding_completed" + )["users"] + trusted_onboarding_b = self._step( + buggy.trusted_funnel, "onboarding_completed" + )["users"] + assert trusted_onboarding_b <= trusted_onboarding_h * 1.05, ( + "trusted filter must remove the artificial improvement" + ) + + verdict = buggy.verdict + assert verdict["raw_looks_better"] is True + assert verdict["survives_trusted_filter"] is False + assert verdict["classification"] == "instrumentation_artifact" + + def test_g5_real_improvement_survives_trusted_filter(self) -> None: + healthy = compare_release("v2.2.0-healthy") + fixed = compare_release("v2.3.0-fixed") + assert fixed.activation_trusted_rate > healthy.activation_trusted_rate + assert fixed.verdict["raw_looks_better"] is True + assert fixed.verdict["survives_trusted_filter"] is True + assert fixed.verdict["classification"] == "real_improvement" + + def test_overview_covers_all_releases_with_deterministic_order(self) -> None: + overview = build_overview() + assert [entry["release"] for entry in overview["releases"]] == [ + "v2.2.0-healthy", + "v2.3.0-buggy", + "v2.3.0-fixed", + ] + assert overview["method"] == "unique_user_funnel" + assert overview["observational_notice"].startswith("Observational") + + def test_metrics_count_unique_users_not_events(self) -> None: + comparison = compare_release("v2.3.0-buggy") + for step in comparison.raw_funnel: + users = step["users"] + assert step["unique_user_basis"] is True + assert 0 < users <= 800 + + @pytest.mark.parametrize( + ("release", "expected_status"), + [ + ("v2.2.0-healthy", "pass"), + ("v2.3.0-buggy", "block"), + ("v2.3.0-fixed", "pass"), + ], + ) + def test_overview_carries_instrumentation_status( + self, release: str, expected_status: str + ) -> None: + overview = build_overview() + entry = next(e for e in overview["releases"] if e["release"] == release) + assert entry["instrumentation_status"] == expected_status diff --git a/apps/api/tests/test_releases_api.py b/apps/api/tests/test_releases_api.py new file mode 100644 index 0000000..f31939a --- /dev/null +++ b/apps/api/tests/test_releases_api.py @@ -0,0 +1,55 @@ +"""Release intelligence API tests.""" + +from __future__ import annotations + +from fastapi.testclient import TestClient + +from app.main import app + +client = TestClient(app) + + +def test_releases_overview_endpoint() -> None: + response = client.get("/api/releases/overview") + assert response.status_code == 200 + body = response.json() + assert body["method"] == "unique_user_funnel" + assert [r["release"] for r in body["releases"]] == [ + "v2.2.0-healthy", + "v2.3.0-buggy", + "v2.3.0-fixed", + ] + buggy = next(r for r in body["releases"] if r["release"] == "v2.3.0-buggy") + assert buggy["instrumentation_status"] == "block" + + +def test_release_instrumentation_endpoint() -> None: + response = client.get("/api/releases/v2.3.0-buggy/instrumentation") + assert response.status_code == 200 + body = response.json() + assert body["status"] == "block" + codes = {v["code"] for v in body["violations"]} + assert {"order_violation", "duplicate_insert_id", "unknown_event"} <= codes + + +def test_release_comparison_endpoint() -> None: + response = client.get("/api/releases/v2.3.0-fixed/comparison") + assert response.status_code == 200 + body = response.json() + assert body["verdict"]["classification"] == "real_improvement" + assert len(body["raw_funnel"]) == 5 + + +def test_journey_diff_endpoint_defaults_to_baseline_pair() -> None: + response = client.get("/api/releases/diff") + assert response.status_code == 200 + body = response.json() + assert body["baseline"] == "v2.2.0-healthy" + assert body["target"] == "v2.3.0-buggy" + + +def test_unknown_release_returns_actionable_404() -> None: + response = client.get("/api/releases/v9.9.9-nope/instrumentation") + assert response.status_code == 404 + body = response.json() + assert "known releases" in body["detail"].lower() diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx index d9b99ed..2e25635 100644 --- a/apps/web/app/page.tsx +++ b/apps/web/app/page.tsx @@ -1,5 +1,6 @@ "use client"; +import Link from "next/link"; import { useEffect, useState, useTransition } from "react"; import { CohortMatrix } from "@/components/CohortMatrix"; import { FunnelChart } from "@/components/FunnelChart"; @@ -97,6 +98,9 @@ export default function HomePage() { lead to activation, abandonment or recurring use.

+ + Release Intelligence — new + Synthetic seed diff --git a/apps/web/app/releases/page.tsx b/apps/web/app/releases/page.tsx new file mode 100644 index 0000000..23b5ce0 --- /dev/null +++ b/apps/web/app/releases/page.tsx @@ -0,0 +1,153 @@ +"use client"; + +import Link from "next/link"; +import { useEffect, useState } from "react"; + +import { FunnelCompareChart } from "@/components/release/FunnelCompareChart"; +import { InstrumentationHealth } from "@/components/release/InstrumentationHealth"; +import { JourneyDiffPanel } from "@/components/release/JourneyDiffPanel"; +import { VerdictBanner } from "@/components/release/VerdictBanner"; +import { SkeletonGrid } from "@/components/SkeletonGrid"; +import { + RELEASE_INTELLIGENCE_NOTICE, + fetchReleaseIntelligence, +} from "@/lib/releases"; +import type { ReleaseIntelligence } from "@/types"; + +const DEFAULT_RELEASE = "v2.3.0-buggy"; + +export default function ReleasesPage() { + const [data, setData] = useState(null); + const [error, setError] = useState(null); + const [selected, setSelected] = useState(DEFAULT_RELEASE); + + useEffect(() => { + let active = true; + const requested = new URLSearchParams(window.location.search).get("release"); + if (requested) setSelected(requested); + fetchReleaseIntelligence() + .then((payload) => { + if (active) setData(payload); + }) + .catch((e: unknown) => { + if (active) { + setError( + e instanceof Error + ? e.message + : "Failed to load release intelligence snapshot", + ); + } + }); + return () => { + active = false; + }; + }, []); + + const entry = data?.releases.find((r) => r.release === selected) ?? null; + const report = data?.instrumentation[selected] ?? null; + const diff = data?.journey_diffs[selected] ?? null; + + return ( +
+
+

Release Intelligence

+

+ Tracking contracts gate every comparison. When a release "improves" + the funnel, this lab proves whether the gain is real product behavior or + broken instrumentation. +

+
+ Synthetic fixtures + Unique-user metrics + Observational only +
+

{RELEASE_INTELLIGENCE_NOTICE}

+

+ ← Back to BehaviorGraph cockpit +

+
+ + {error ? ( +
+ {error} +
+ ) : null} + + {!data && !error ? : null} + + {data ? ( + <> + + + {entry ? : null} + +
+
+

Funnel compare — raw vs trusted

+

+ Unique users per activation step. Raw counts everything ingested; + trusted removes contract-invalid events first. +

+ {entry ? ( + <> + +
    + {entry.trusted_funnel.map((step) => ( +
  • + {step.step} — trusted {step.users} users ·{" "} + {Math.round(step.conversion_from_start * 100)}% of starters +
  • + ))} +
+

+ Trusted activation rate {Math.round(entry.activation_trusted_rate * 100)}% (95% CI{" "} + {Math.round(entry.activation_trusted_ci[0] * 100)}– + {Math.round(entry.activation_trusted_ci[1] * 100)}%) · observational, + not causal. +

+ + ) : ( +

Select a release.

+ )} +
+ + {report ? : null} + + {diff ? : null} + +
+

Method and limits

+
    + {(data?.limitations ?? []).map((limitation) => ( +
  • {limitation}
  • + ))} +
+

+ Snapshot pre-computed by the FastAPI services — same code path + as the API, regenerated by scripts/generate_release_snapshot.py. +

+
+
+ + ) : null} +
+ ); +} diff --git a/apps/web/components/release/FunnelCompareChart.tsx b/apps/web/components/release/FunnelCompareChart.tsx new file mode 100644 index 0000000..6e05635 --- /dev/null +++ b/apps/web/components/release/FunnelCompareChart.tsx @@ -0,0 +1,51 @@ +"use client"; + +import { + Bar, + BarChart, + CartesianGrid, + Legend, + ResponsiveContainer, + Tooltip, + XAxis, + YAxis, +} from "recharts"; + +import type { ReleaseFunnelStep } from "@/types"; + +export function FunnelCompareChart({ + raw, + trusted, +}: { + raw: ReleaseFunnelStep[]; + trusted: ReleaseFunnelStep[]; +}) { + const data = raw.map((step, index) => ({ + step: step.step, + Raw: step.users, + Trusted: trusted[index]?.users ?? 0, + })); + + return ( +
+ + + + + + + + + + + +
+ ); +} diff --git a/apps/web/components/release/InstrumentationHealth.tsx b/apps/web/components/release/InstrumentationHealth.tsx new file mode 100644 index 0000000..e64643d --- /dev/null +++ b/apps/web/components/release/InstrumentationHealth.tsx @@ -0,0 +1,77 @@ +"use client"; + +import type { ReleaseInstrumentation } from "@/types"; + +const SEVERITY_LABEL: Record = { + block: "BLOCK", + warning: "warning", +}; + +export function InstrumentationHealth({ + report, +}: { + report: ReleaseInstrumentation; +}) { + const statusTone = + report.status === "pass" + ? "#16a34a" + : report.status === "warn" + ? "#d97706" + : "#dc2626"; + + return ( +
+

Instrumentation health

+

+ Every event stream is checked against the versioned tracking contract + (data/contracts/events.yml): required properties, sequence + constraints, insert_id uniqueness and cardinality. +

+

+ + {report.status.toUpperCase()} + {" "} + {report.trusted_events.toLocaleString()} of{" "} + {report.total_events.toLocaleString()} events survive the trusted filter. +

+ + {report.violations.length ? ( +
    + {report.violations.map((v) => ( +
  • + + {SEVERITY_LABEL[v.severity] ?? v.severity} + {" "} + {v.code} on {v.event_name} —{" "} + {v.evidence_count} events · {v.user_count} users +
  • + ))} +
+ ) : ( +

No violations — every contract check passed.

+ )} + + {report.unknown_events.length ? ( +

+ Unknown events observed (reported, never silently dropped):{" "} + {report.unknown_events.join(", ")}. They stay in raw data and are + excluded from contract-gated metrics. +

+ ) : null} +
+ ); +} diff --git a/apps/web/components/release/JourneyDiffPanel.tsx b/apps/web/components/release/JourneyDiffPanel.tsx new file mode 100644 index 0000000..d763723 --- /dev/null +++ b/apps/web/components/release/JourneyDiffPanel.tsx @@ -0,0 +1,58 @@ +"use client"; + +import type { JourneyDiff } from "@/types"; + +export function JourneyDiffPanel({ diff }: { diff: JourneyDiff }) { + return ( +
+

Journey diff vs baseline

+

+ Session-transition edges with support ≥ {diff.min_support} that appear or + vanish in {diff.target} compared to{" "} + {diff.baseline}. +

+ + {diff.added.length ? ( + <> +

Added edges

+
    + {diff.added.map((edge) => ( +
  • + + new + {" "} + + {edge.source} → {edge.target} + {" "} + ({edge.target_weight ?? 0} sessions) +
  • + ))} +
+ + ) : ( +

No new edges above support threshold.

+ )} + + {diff.removed.length ? ( + <> +

Removed edges

+
    + {diff.removed.map((edge) => ( +
  • + + gone + {" "} + + {edge.source} → {edge.target} + {" "} + (was {edge.baseline_weight ?? 0} sessions) +
  • + ))} +
+ + ) : null} + +

{diff.notice}

+
+ ); +} diff --git a/apps/web/components/release/VerdictBanner.tsx b/apps/web/components/release/VerdictBanner.tsx new file mode 100644 index 0000000..0e282c7 --- /dev/null +++ b/apps/web/components/release/VerdictBanner.tsx @@ -0,0 +1,74 @@ +"use client"; + +import type { ReleaseOverviewEntry } from "@/types"; + +const CLASSIFICATION_COPY: Record = { + baseline: { + label: "Baseline — contracts pass", + tone: "var(--ok, #16a34a)", + }, + instrumentation_artifact: { + label: "Instrumentation artifact, not product", + tone: "#dc2626", + }, + real_improvement: { + label: "Real improvement — survives trusted filter", + tone: "#16a34a", + }, +}; + +export function VerdictBanner({ entry }: { entry: ReleaseOverviewEntry }) { + const verdict = entry.verdict; + const copy = + CLASSIFICATION_COPY[verdict.classification] ?? + CLASSIFICATION_COPY.baseline; + + return ( +
+

+ {entry.release} vs baseline +

+

{copy.label}

+
+
+

Raw dashboard says

+
+ {verdict.gain_step ? `${verdict.raw_gain_pct > 0 ? "+" : ""}${verdict.raw_gain_pct}%` : "—"} +
+

+ {verdict.gain_step + ? `gain on ${verdict.gain_step} (unique users)` + : "no step stands out"} +

+
+
+

Trusted metrics say

+
+ {verdict.gain_step + ? `${verdict.trusted_gain_pct > 0 ? "+" : ""}${verdict.trusted_gain_pct}%` + : "—"} +
+

+ after removing contract-invalid events (dedup, order, props) +

+
+
+ {!verdict.survives_trusted_filter && verdict.raw_looks_better ? ( +

+ The apparent gain disappears once tracking contracts are enforced: + the release shipped broken instrumentation, not a better product. +

+ ) : null} + {verdict.survives_trusted_filter ? ( +

+ The gain survives the trusted filter with valid instrumentation — + consistent with real behavior change (observational, not causal). +

+ ) : null} +
+ ); +} diff --git a/apps/web/lib/api.ts b/apps/web/lib/api.ts index b64c083..9df8a3d 100644 --- a/apps/web/lib/api.ts +++ b/apps/web/lib/api.ts @@ -25,7 +25,7 @@ const API_URL = process.env.NEXT_PUBLIC_API_URL?.replace(/\/$/, ""); * Prefer optional FastAPI when NEXT_PUBLIC_API_URL is set. * Static/Vercel lab demo falls back to the embedded synthetic snapshot. */ -async function tryBackend(path: string): Promise { +export async function tryBackend(path: string): Promise { if (!API_URL) return null; try { const response = await fetch(`${API_URL}${path}`, { cache: "no-store" }); diff --git a/apps/web/lib/release-intelligence.json b/apps/web/lib/release-intelligence.json new file mode 100644 index 0000000..2242bca --- /dev/null +++ b/apps/web/lib/release-intelligence.json @@ -0,0 +1,490 @@ +{ + "baseline": "v2.2.0-healthy", + "instrumentation": { + "v2.2.0-healthy": { + "release": "v2.2.0-healthy", + "status": "pass", + "total_events": 4080, + "trusted_events": 4080, + "unknown_events": [], + "violations": [] + }, + "v2.3.0-buggy": { + "release": "v2.3.0-buggy", + "status": "block", + "total_events": 4336, + "trusted_events": 4155, + "unknown_events": [ + "upsell_modal_shown" + ], + "violations": [ + { + "code": "duplicate_insert_id", + "event_name": "signup_completed", + "evidence_count": 74, + "severity": "block", + "user_count": 70 + }, + { + "code": "missing_required_property", + "event_name": "onboarding_completed", + "evidence_count": 111, + "severity": "block", + "user_count": 107 + }, + { + "code": "order_violation", + "event_name": "onboarding_completed", + "evidence_count": 111, + "severity": "block", + "user_count": 107 + }, + { + "code": "event_drift", + "event_name": "onboarding_completed", + "evidence_count": 538, + "severity": "warning", + "user_count": 526 + }, + { + "code": "unknown_event", + "event_name": "upsell_modal_shown", + "evidence_count": 38, + "severity": "warning", + "user_count": 38 + } + ] + }, + "v2.3.0-fixed": { + "release": "v2.3.0-fixed", + "status": "pass", + "total_events": 4059, + "trusted_events": 4059, + "unknown_events": [], + "violations": [] + } + }, + "journey_diffs": { + "v2.3.0-buggy": { + "added": [ + { + "source": "onboarding_completed", + "target": "session_abandoned", + "target_weight": 107 + }, + { + "source": "signup_completed", + "target": "onboarding_completed", + "target_weight": 96 + }, + { + "source": "signup_completed", + "target": "upsell_modal_shown", + "target_weight": 38 + }, + { + "source": "upsell_modal_shown", + "target": "profile_saved", + "target_weight": 22 + } + ], + "baseline": "v2.2.0-healthy", + "baseline_edges": [ + [ + "error_shown", + "onboarding_step_viewed" + ], + [ + "feature_used", + "onboarding_completed" + ], + [ + "onboarding_completed", + "activation_completed" + ], + [ + "onboarding_step_viewed", + "feature_used" + ], + [ + "onboarding_step_viewed", + "onboarding_completed" + ], + [ + "profile_saved", + "error_shown" + ], + [ + "profile_saved", + "feature_used" + ], + [ + "profile_saved", + "onboarding_completed" + ], + [ + "profile_saved", + "onboarding_step_viewed" + ], + [ + "return_visit", + "feature_used" + ], + [ + "signup_completed", + "profile_saved" + ], + [ + "signup_completed", + "session_abandoned" + ], + [ + "signup_started", + "session_abandoned" + ], + [ + "signup_started", + "signup_completed" + ] + ], + "min_support": 20, + "notice": "Observational edge diff between release journey graphs. New edges show where tracking or behavior changed; they never prove causation.", + "removed": [], + "target": "v2.3.0-buggy" + }, + "v2.3.0-fixed": { + "added": [], + "baseline": "v2.2.0-healthy", + "baseline_edges": [ + [ + "error_shown", + "onboarding_step_viewed" + ], + [ + "feature_used", + "onboarding_completed" + ], + [ + "onboarding_completed", + "activation_completed" + ], + [ + "onboarding_step_viewed", + "feature_used" + ], + [ + "onboarding_step_viewed", + "onboarding_completed" + ], + [ + "profile_saved", + "error_shown" + ], + [ + "profile_saved", + "feature_used" + ], + [ + "profile_saved", + "onboarding_completed" + ], + [ + "profile_saved", + "onboarding_step_viewed" + ], + [ + "return_visit", + "feature_used" + ], + [ + "signup_completed", + "profile_saved" + ], + [ + "signup_completed", + "session_abandoned" + ], + [ + "signup_started", + "session_abandoned" + ], + [ + "signup_started", + "signup_completed" + ] + ], + "min_support": 20, + "notice": "Observational edge diff between release journey graphs. New edges show where tracking or behavior changed; they never prove causation.", + "removed": [ + { + "baseline_weight": 25, + "source": "profile_saved", + "target": "onboarding_completed" + } + ], + "target": "v2.3.0-fixed" + } + }, + "limitations": [ + "Synthetic fixtures only \u2014 no real user tracking, no PII.", + "Rates are observational; no causal effect without an experiment flag.", + "Trusted funnel drops contract-invalid rows; unknown events are reported, never silently dropped.", + "Event drift compares per-user rates against the baseline release (heuristic threshold)." + ], + "method": "unique_user_funnel", + "observational_notice": "Observational comparison only. Rates describe what fired per unique user; no causal effect is claimed without a controlled experiment.", + "releases": [ + { + "activation_raw_rate": 0.275, + "activation_trusted_ci": [ + 0.2452, + 0.307 + ], + "activation_trusted_rate": 0.275, + "instrumentation_status": "pass", + "raw_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.834, + "step": "signup_completed", + "unique_user_basis": true, + "users": 667 + }, + { + "conversion_from_start": 0.599, + "step": "profile_saved", + "unique_user_basis": true, + "users": 479 + }, + { + "conversion_from_start": 0.529, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 423 + }, + { + "conversion_from_start": 0.275, + "step": "activation_completed", + "unique_user_basis": true, + "users": 220 + } + ], + "release": "v2.2.0-healthy", + "total_events": 4080, + "trusted_events": 4080, + "trusted_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.834, + "step": "signup_completed", + "unique_user_basis": true, + "users": 667 + }, + { + "conversion_from_start": 0.599, + "step": "profile_saved", + "unique_user_basis": true, + "users": 479 + }, + { + "conversion_from_start": 0.529, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 423 + }, + { + "conversion_from_start": 0.275, + "step": "activation_completed", + "unique_user_basis": true, + "users": 220 + } + ], + "verdict": { + "classification": "baseline", + "gain_step": null, + "raw_gain_pct": 0.0, + "raw_looks_better": false, + "survives_trusted_filter": false, + "trusted_gain_pct": 0.0 + } + }, + { + "activation_raw_rate": 0.255, + "activation_trusted_ci": [ + 0.226, + 0.2863 + ], + "activation_trusted_rate": 0.255, + "instrumentation_status": "block", + "raw_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.836, + "step": "signup_completed", + "unique_user_basis": true, + "users": 669 + }, + { + "conversion_from_start": 0.6, + "step": "profile_saved", + "unique_user_basis": true, + "users": 480 + }, + { + "conversion_from_start": 0.657, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 526 + }, + { + "conversion_from_start": 0.255, + "step": "activation_completed", + "unique_user_basis": true, + "users": 204 + } + ], + "release": "v2.3.0-buggy", + "total_events": 4336, + "trusted_events": 4155, + "trusted_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.836, + "step": "signup_completed", + "unique_user_basis": true, + "users": 669 + }, + { + "conversion_from_start": 0.6, + "step": "profile_saved", + "unique_user_basis": true, + "users": 480 + }, + { + "conversion_from_start": 0.524, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 419 + }, + { + "conversion_from_start": 0.255, + "step": "activation_completed", + "unique_user_basis": true, + "users": 204 + } + ], + "verdict": { + "classification": "instrumentation_artifact", + "gain_step": "onboarding_completed", + "raw_gain_pct": 24.3, + "raw_looks_better": true, + "survives_trusted_filter": false, + "trusted_gain_pct": -0.9 + } + }, + { + "activation_raw_rate": 0.3, + "activation_trusted_ci": [ + 0.2693, + 0.3326 + ], + "activation_trusted_rate": 0.3, + "instrumentation_status": "pass", + "raw_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.809, + "step": "signup_completed", + "unique_user_basis": true, + "users": 647 + }, + { + "conversion_from_start": 0.58, + "step": "profile_saved", + "unique_user_basis": true, + "users": 464 + }, + { + "conversion_from_start": 0.509, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 407 + }, + { + "conversion_from_start": 0.3, + "step": "activation_completed", + "unique_user_basis": true, + "users": 240 + } + ], + "release": "v2.3.0-fixed", + "total_events": 4059, + "trusted_events": 4059, + "trusted_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.809, + "step": "signup_completed", + "unique_user_basis": true, + "users": 647 + }, + { + "conversion_from_start": 0.58, + "step": "profile_saved", + "unique_user_basis": true, + "users": 464 + }, + { + "conversion_from_start": 0.509, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 407 + }, + { + "conversion_from_start": 0.3, + "step": "activation_completed", + "unique_user_basis": true, + "users": 240 + } + ], + "verdict": { + "classification": "real_improvement", + "gain_step": "activation_completed", + "raw_gain_pct": 9.1, + "raw_looks_better": true, + "survives_trusted_filter": true, + "trusted_gain_pct": 9.1 + } + } + ] +} diff --git a/apps/web/lib/releases.ts b/apps/web/lib/releases.ts new file mode 100644 index 0000000..8feb55d --- /dev/null +++ b/apps/web/lib/releases.ts @@ -0,0 +1,20 @@ +import { tryBackend } from "@/lib/api"; +import snapshot from "@/lib/release-intelligence.json"; +import type { ReleaseIntelligence } from "@/types"; + +export const RELEASE_INTELLIGENCE_NOTICE = + "Release intelligence lab on synthetic fixtures. Raw vs trusted metrics are observational — no causal claims without an experiment."; + +export async function fetchReleaseIntelligence(): Promise { + const remote = await tryBackend("/api/releases/overview"); + if (remote) { + return { + ...(snapshot as unknown as ReleaseIntelligence), + ...remote, + instrumentation: (snapshot as unknown as ReleaseIntelligence).instrumentation, + journey_diffs: (snapshot as unknown as ReleaseIntelligence).journey_diffs, + limitations: (snapshot as unknown as ReleaseIntelligence).limitations, + }; + } + return snapshot as unknown as ReleaseIntelligence; +} diff --git a/apps/web/public/data/release-intelligence.json b/apps/web/public/data/release-intelligence.json new file mode 100644 index 0000000..2242bca --- /dev/null +++ b/apps/web/public/data/release-intelligence.json @@ -0,0 +1,490 @@ +{ + "baseline": "v2.2.0-healthy", + "instrumentation": { + "v2.2.0-healthy": { + "release": "v2.2.0-healthy", + "status": "pass", + "total_events": 4080, + "trusted_events": 4080, + "unknown_events": [], + "violations": [] + }, + "v2.3.0-buggy": { + "release": "v2.3.0-buggy", + "status": "block", + "total_events": 4336, + "trusted_events": 4155, + "unknown_events": [ + "upsell_modal_shown" + ], + "violations": [ + { + "code": "duplicate_insert_id", + "event_name": "signup_completed", + "evidence_count": 74, + "severity": "block", + "user_count": 70 + }, + { + "code": "missing_required_property", + "event_name": "onboarding_completed", + "evidence_count": 111, + "severity": "block", + "user_count": 107 + }, + { + "code": "order_violation", + "event_name": "onboarding_completed", + "evidence_count": 111, + "severity": "block", + "user_count": 107 + }, + { + "code": "event_drift", + "event_name": "onboarding_completed", + "evidence_count": 538, + "severity": "warning", + "user_count": 526 + }, + { + "code": "unknown_event", + "event_name": "upsell_modal_shown", + "evidence_count": 38, + "severity": "warning", + "user_count": 38 + } + ] + }, + "v2.3.0-fixed": { + "release": "v2.3.0-fixed", + "status": "pass", + "total_events": 4059, + "trusted_events": 4059, + "unknown_events": [], + "violations": [] + } + }, + "journey_diffs": { + "v2.3.0-buggy": { + "added": [ + { + "source": "onboarding_completed", + "target": "session_abandoned", + "target_weight": 107 + }, + { + "source": "signup_completed", + "target": "onboarding_completed", + "target_weight": 96 + }, + { + "source": "signup_completed", + "target": "upsell_modal_shown", + "target_weight": 38 + }, + { + "source": "upsell_modal_shown", + "target": "profile_saved", + "target_weight": 22 + } + ], + "baseline": "v2.2.0-healthy", + "baseline_edges": [ + [ + "error_shown", + "onboarding_step_viewed" + ], + [ + "feature_used", + "onboarding_completed" + ], + [ + "onboarding_completed", + "activation_completed" + ], + [ + "onboarding_step_viewed", + "feature_used" + ], + [ + "onboarding_step_viewed", + "onboarding_completed" + ], + [ + "profile_saved", + "error_shown" + ], + [ + "profile_saved", + "feature_used" + ], + [ + "profile_saved", + "onboarding_completed" + ], + [ + "profile_saved", + "onboarding_step_viewed" + ], + [ + "return_visit", + "feature_used" + ], + [ + "signup_completed", + "profile_saved" + ], + [ + "signup_completed", + "session_abandoned" + ], + [ + "signup_started", + "session_abandoned" + ], + [ + "signup_started", + "signup_completed" + ] + ], + "min_support": 20, + "notice": "Observational edge diff between release journey graphs. New edges show where tracking or behavior changed; they never prove causation.", + "removed": [], + "target": "v2.3.0-buggy" + }, + "v2.3.0-fixed": { + "added": [], + "baseline": "v2.2.0-healthy", + "baseline_edges": [ + [ + "error_shown", + "onboarding_step_viewed" + ], + [ + "feature_used", + "onboarding_completed" + ], + [ + "onboarding_completed", + "activation_completed" + ], + [ + "onboarding_step_viewed", + "feature_used" + ], + [ + "onboarding_step_viewed", + "onboarding_completed" + ], + [ + "profile_saved", + "error_shown" + ], + [ + "profile_saved", + "feature_used" + ], + [ + "profile_saved", + "onboarding_completed" + ], + [ + "profile_saved", + "onboarding_step_viewed" + ], + [ + "return_visit", + "feature_used" + ], + [ + "signup_completed", + "profile_saved" + ], + [ + "signup_completed", + "session_abandoned" + ], + [ + "signup_started", + "session_abandoned" + ], + [ + "signup_started", + "signup_completed" + ] + ], + "min_support": 20, + "notice": "Observational edge diff between release journey graphs. New edges show where tracking or behavior changed; they never prove causation.", + "removed": [ + { + "baseline_weight": 25, + "source": "profile_saved", + "target": "onboarding_completed" + } + ], + "target": "v2.3.0-fixed" + } + }, + "limitations": [ + "Synthetic fixtures only \u2014 no real user tracking, no PII.", + "Rates are observational; no causal effect without an experiment flag.", + "Trusted funnel drops contract-invalid rows; unknown events are reported, never silently dropped.", + "Event drift compares per-user rates against the baseline release (heuristic threshold)." + ], + "method": "unique_user_funnel", + "observational_notice": "Observational comparison only. Rates describe what fired per unique user; no causal effect is claimed without a controlled experiment.", + "releases": [ + { + "activation_raw_rate": 0.275, + "activation_trusted_ci": [ + 0.2452, + 0.307 + ], + "activation_trusted_rate": 0.275, + "instrumentation_status": "pass", + "raw_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.834, + "step": "signup_completed", + "unique_user_basis": true, + "users": 667 + }, + { + "conversion_from_start": 0.599, + "step": "profile_saved", + "unique_user_basis": true, + "users": 479 + }, + { + "conversion_from_start": 0.529, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 423 + }, + { + "conversion_from_start": 0.275, + "step": "activation_completed", + "unique_user_basis": true, + "users": 220 + } + ], + "release": "v2.2.0-healthy", + "total_events": 4080, + "trusted_events": 4080, + "trusted_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.834, + "step": "signup_completed", + "unique_user_basis": true, + "users": 667 + }, + { + "conversion_from_start": 0.599, + "step": "profile_saved", + "unique_user_basis": true, + "users": 479 + }, + { + "conversion_from_start": 0.529, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 423 + }, + { + "conversion_from_start": 0.275, + "step": "activation_completed", + "unique_user_basis": true, + "users": 220 + } + ], + "verdict": { + "classification": "baseline", + "gain_step": null, + "raw_gain_pct": 0.0, + "raw_looks_better": false, + "survives_trusted_filter": false, + "trusted_gain_pct": 0.0 + } + }, + { + "activation_raw_rate": 0.255, + "activation_trusted_ci": [ + 0.226, + 0.2863 + ], + "activation_trusted_rate": 0.255, + "instrumentation_status": "block", + "raw_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.836, + "step": "signup_completed", + "unique_user_basis": true, + "users": 669 + }, + { + "conversion_from_start": 0.6, + "step": "profile_saved", + "unique_user_basis": true, + "users": 480 + }, + { + "conversion_from_start": 0.657, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 526 + }, + { + "conversion_from_start": 0.255, + "step": "activation_completed", + "unique_user_basis": true, + "users": 204 + } + ], + "release": "v2.3.0-buggy", + "total_events": 4336, + "trusted_events": 4155, + "trusted_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.836, + "step": "signup_completed", + "unique_user_basis": true, + "users": 669 + }, + { + "conversion_from_start": 0.6, + "step": "profile_saved", + "unique_user_basis": true, + "users": 480 + }, + { + "conversion_from_start": 0.524, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 419 + }, + { + "conversion_from_start": 0.255, + "step": "activation_completed", + "unique_user_basis": true, + "users": 204 + } + ], + "verdict": { + "classification": "instrumentation_artifact", + "gain_step": "onboarding_completed", + "raw_gain_pct": 24.3, + "raw_looks_better": true, + "survives_trusted_filter": false, + "trusted_gain_pct": -0.9 + } + }, + { + "activation_raw_rate": 0.3, + "activation_trusted_ci": [ + 0.2693, + 0.3326 + ], + "activation_trusted_rate": 0.3, + "instrumentation_status": "pass", + "raw_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.809, + "step": "signup_completed", + "unique_user_basis": true, + "users": 647 + }, + { + "conversion_from_start": 0.58, + "step": "profile_saved", + "unique_user_basis": true, + "users": 464 + }, + { + "conversion_from_start": 0.509, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 407 + }, + { + "conversion_from_start": 0.3, + "step": "activation_completed", + "unique_user_basis": true, + "users": 240 + } + ], + "release": "v2.3.0-fixed", + "total_events": 4059, + "trusted_events": 4059, + "trusted_funnel": [ + { + "conversion_from_start": 1.0, + "step": "signup_started", + "unique_user_basis": true, + "users": 800 + }, + { + "conversion_from_start": 0.809, + "step": "signup_completed", + "unique_user_basis": true, + "users": 647 + }, + { + "conversion_from_start": 0.58, + "step": "profile_saved", + "unique_user_basis": true, + "users": 464 + }, + { + "conversion_from_start": 0.509, + "step": "onboarding_completed", + "unique_user_basis": true, + "users": 407 + }, + { + "conversion_from_start": 0.3, + "step": "activation_completed", + "unique_user_basis": true, + "users": 240 + } + ], + "verdict": { + "classification": "real_improvement", + "gain_step": "activation_completed", + "raw_gain_pct": 9.1, + "raw_looks_better": true, + "survives_trusted_filter": true, + "trusted_gain_pct": 9.1 + } + } + ] +} diff --git a/apps/web/types/index.ts b/apps/web/types/index.ts index b31690a..50509d7 100644 --- a/apps/web/types/index.ts +++ b/apps/web/types/index.ts @@ -73,3 +73,80 @@ export type FrictionPayload = { funnel_drops: FrictionDrop[]; error_signals: { event_name: string; affected_users: number }[]; }; + +export type ReleaseFunnelStep = { + step: string; + users: number; + conversion_from_start: number; + unique_user_basis: boolean; +}; + +export type ReleaseVerdict = { + classification: + | "baseline" + | "instrumentation_artifact" + | "real_improvement" + | string; + raw_looks_better: boolean; + survives_trusted_filter: boolean; + gain_step: string | null; + raw_gain_pct: number; + trusted_gain_pct: number; +}; + +export type InstrumentationViolation = { + event_name: string; + code: string; + severity: "block" | "warning" | string; + user_count: number; + evidence_count: number; +}; + +export type ReleaseInstrumentation = { + release: string; + total_events: number; + trusted_events: number; + status: "pass" | "warn" | "block" | string; + unknown_events: string[]; + violations: InstrumentationViolation[]; +}; + +export type ReleaseOverviewEntry = { + release: string; + total_events: number; + trusted_events: number; + activation_raw_rate: number; + activation_trusted_rate: number; + activation_trusted_ci: [number, number]; + instrumentation_status: string; + verdict: ReleaseVerdict; + raw_funnel: ReleaseFunnelStep[]; + trusted_funnel: ReleaseFunnelStep[]; +}; + +export type JourneyEdgeDiff = { + source: string; + target: string; + target_weight?: number | null; + baseline_weight?: number | null; +}; + +export type JourneyDiff = { + baseline: string; + target: string; + min_support: number; + baseline_edges: string[][]; + added: JourneyEdgeDiff[]; + removed: JourneyEdgeDiff[]; + notice: string; +}; + +export type ReleaseIntelligence = { + method: string; + baseline: string; + observational_notice: string; + releases: ReleaseOverviewEntry[]; + instrumentation: Record; + journey_diffs: Record; + limitations: string[]; +}; diff --git a/assets/screenshots/09-release-verdict-buggy.png b/assets/screenshots/09-release-verdict-buggy.png new file mode 100644 index 0000000..472371e Binary files /dev/null and b/assets/screenshots/09-release-verdict-buggy.png differ diff --git a/assets/screenshots/10-release-verdict-fixed.png b/assets/screenshots/10-release-verdict-fixed.png new file mode 100644 index 0000000..4b369c8 Binary files /dev/null and b/assets/screenshots/10-release-verdict-fixed.png differ diff --git a/data/contracts/events.yml b/data/contracts/events.yml new file mode 100644 index 0000000..6c66315 --- /dev/null +++ b/data/contracts/events.yml @@ -0,0 +1,64 @@ +# BehaviorGraph tracking contracts — source of truth for instrumentation health. +# Every declared event must carry an owner and its required properties. +# must_follow enforces session-order prerequisites; violations are BLOCK severity. +# Events not declared here are reported as unknown_event warnings, never silently dropped. +version: 1 + +events: + signup_started: + owner: growth + required_properties: [user_id, session_id, insert_id, release] + introduced_in: "2.0.0" + + signup_completed: + owner: growth + required_properties: [user_id, session_id, insert_id, release] + must_follow: [signup_started] + max_per_user_session: 1 + introduced_in: "2.0.0" + + profile_saved: + owner: growth + required_properties: [user_id, session_id, insert_id, release] + must_follow: [signup_completed] + max_per_user_session: 1 + introduced_in: "2.0.0" + + onboarding_step_viewed: + owner: product + required_properties: [user_id, session_id, insert_id, release] + must_follow: [signup_completed] + introduced_in: "2.0.0" + + onboarding_completed: + owner: growth + required_properties: [user_id, session_id, insert_id, release, completed_at] + must_follow: [profile_saved] + max_per_user_session: 1 + introduced_in: "2.1.0" + + activation_completed: + owner: product + required_properties: [user_id, session_id, insert_id, release] + max_per_user_session: 1 + introduced_in: "2.0.0" + + feature_used: + owner: product + required_properties: [user_id, session_id, insert_id, release, feature] + introduced_in: "2.0.0" + + session_abandoned: + owner: product + required_properties: [user_id, session_id, insert_id, release] + introduced_in: "2.0.0" + + error_shown: + owner: engineering + required_properties: [user_id, session_id, insert_id, release, code] + introduced_in: "2.0.0" + + return_visit: + owner: product + required_properties: [user_id, session_id, insert_id, release] + introduced_in: "2.0.0" diff --git a/data/seed/releases/v2.2.0-healthy/events.csv b/data/seed/releases/v2.2.0-healthy/events.csv new file mode 100644 index 0000000..37a5dc3 --- /dev/null +++ b/data/seed/releases/v2.2.0-healthy/events.csv @@ -0,0 +1,4081 @@ +event_id,user_id,event_name,ts,session_id,insert_id,properties,release +evt_000001,u_0131,signup_started,2026-06-01T08:07:00Z,u_0131_s01,ins_u_0131_001,{},v2.2.0-healthy +evt_000002,u_0131,signup_completed,2026-06-01T08:12:00Z,u_0131_s01,ins_u_0131_002,{},v2.2.0-healthy +evt_000003,u_0131,profile_saved,2026-06-01T08:14:00Z,u_0131_s01,ins_u_0131_003,{},v2.2.0-healthy +evt_000004,u_0131,onboarding_step_viewed,2026-06-01T08:18:00Z,u_0131_s01,ins_u_0131_004,{},v2.2.0-healthy +evt_000005,u_0772,signup_started,2026-06-01T08:19:00Z,u_0772_s01,ins_u_0772_001,{},v2.2.0-healthy +evt_000006,u_0147,signup_started,2026-06-01T08:23:00Z,u_0147_s01,ins_u_0147_001,{},v2.2.0-healthy +evt_000007,u_0772,signup_completed,2026-06-01T08:23:00Z,u_0772_s01,ins_u_0772_002,{},v2.2.0-healthy +evt_000008,u_0380,signup_started,2026-06-01T08:24:00Z,u_0380_s01,ins_u_0380_001,{},v2.2.0-healthy +evt_000009,u_0380,signup_completed,2026-06-01T08:27:00Z,u_0380_s01,ins_u_0380_002,{},v2.2.0-healthy +evt_000010,u_0147,signup_completed,2026-06-01T08:31:00Z,u_0147_s01,ins_u_0147_002,{},v2.2.0-healthy +evt_000011,u_0380,session_abandoned,2026-06-01T08:31:00Z,u_0380_s01,ins_u_0380_003,{},v2.2.0-healthy +evt_000012,u_0772,session_abandoned,2026-06-01T08:32:00Z,u_0772_s01,ins_u_0772_003,{},v2.2.0-healthy +evt_000013,u_0147,profile_saved,2026-06-01T08:39:00Z,u_0147_s01,ins_u_0147_003,{},v2.2.0-healthy +evt_000014,u_0131,onboarding_completed,2026-06-01T08:45:00Z,u_0131_s01,ins_u_0131_005,"{""completed_at"": ""2026-06-01T08:45:00Z""}",v2.2.0-healthy +evt_000015,u_0147,onboarding_step_viewed,2026-06-01T08:45:00Z,u_0147_s01,ins_u_0147_004,{},v2.2.0-healthy +evt_000016,u_0147,feature_used,2026-06-01T08:59:00Z,u_0147_s01,ins_u_0147_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000017,u_0015,signup_started,2026-06-01T09:02:00Z,u_0015_s01,ins_u_0015_001,{},v2.2.0-healthy +evt_000018,u_0131,activation_completed,2026-06-01T09:04:00Z,u_0131_s01,ins_u_0131_006,{},v2.2.0-healthy +evt_000019,u_0015,signup_completed,2026-06-01T09:07:00Z,u_0015_s01,ins_u_0015_002,{},v2.2.0-healthy +evt_000020,u_0015,profile_saved,2026-06-01T09:14:00Z,u_0015_s01,ins_u_0015_003,{},v2.2.0-healthy +evt_000021,u_0252,signup_started,2026-06-01T09:19:00Z,u_0252_s01,ins_u_0252_001,{},v2.2.0-healthy +evt_000022,u_0709,signup_started,2026-06-01T09:19:00Z,u_0709_s01,ins_u_0709_001,{},v2.2.0-healthy +evt_000023,u_0147,onboarding_completed,2026-06-01T09:24:00Z,u_0147_s01,ins_u_0147_006,"{""completed_at"": ""2026-06-01T09:11:00Z""}",v2.2.0-healthy +evt_000024,u_0161,signup_started,2026-06-01T09:24:00Z,u_0161_s01,ins_u_0161_001,{},v2.2.0-healthy +evt_000025,u_0252,session_abandoned,2026-06-01T09:25:00Z,u_0252_s01,ins_u_0252_002,{},v2.2.0-healthy +evt_000026,u_0709,signup_completed,2026-06-01T09:25:00Z,u_0709_s01,ins_u_0709_002,{},v2.2.0-healthy +evt_000027,u_0680,signup_started,2026-06-01T09:27:00Z,u_0680_s01,ins_u_0680_001,{},v2.2.0-healthy +evt_000028,u_0686,signup_started,2026-06-01T09:28:00Z,u_0686_s01,ins_u_0686_001,{},v2.2.0-healthy +evt_000029,u_0161,signup_completed,2026-06-01T09:29:00Z,u_0161_s01,ins_u_0161_002,{},v2.2.0-healthy +evt_000030,u_0428,signup_started,2026-06-01T09:29:00Z,u_0428_s01,ins_u_0428_001,{},v2.2.0-healthy +evt_000031,u_0686,session_abandoned,2026-06-01T09:33:00Z,u_0686_s01,ins_u_0686_002,{},v2.2.0-healthy +evt_000032,u_0428,signup_completed,2026-06-01T09:34:00Z,u_0428_s01,ins_u_0428_002,{},v2.2.0-healthy +evt_000033,u_0680,signup_completed,2026-06-01T09:34:00Z,u_0680_s01,ins_u_0680_002,{},v2.2.0-healthy +evt_000034,u_0709,profile_saved,2026-06-01T09:35:00Z,u_0709_s01,ins_u_0709_003,{},v2.2.0-healthy +evt_000035,u_0676,signup_started,2026-06-01T09:36:00Z,u_0676_s01,ins_u_0676_001,{},v2.2.0-healthy +evt_000036,u_0161,profile_saved,2026-06-01T09:37:00Z,u_0161_s01,ins_u_0161_003,{},v2.2.0-healthy +evt_000037,u_0428,profile_saved,2026-06-01T09:37:00Z,u_0428_s01,ins_u_0428_003,{},v2.2.0-healthy +evt_000038,u_0709,onboarding_step_viewed,2026-06-01T09:38:00Z,u_0709_s01,ins_u_0709_004,{},v2.2.0-healthy +evt_000039,u_0676,signup_completed,2026-06-01T09:40:00Z,u_0676_s01,ins_u_0676_002,{},v2.2.0-healthy +evt_000040,u_0015,onboarding_completed,2026-06-01T09:41:00Z,u_0015_s01,ins_u_0015_004,"{""completed_at"": ""2026-06-01T09:46:00Z""}",v2.2.0-healthy +evt_000041,u_0428,onboarding_step_viewed,2026-06-01T09:43:00Z,u_0428_s01,ins_u_0428_004,{},v2.2.0-healthy +evt_000042,u_0680,profile_saved,2026-06-01T09:43:00Z,u_0680_s01,ins_u_0680_003,{},v2.2.0-healthy +evt_000043,u_0676,session_abandoned,2026-06-01T09:45:00Z,u_0676_s01,ins_u_0676_003,{},v2.2.0-healthy +evt_000044,u_0680,onboarding_step_viewed,2026-06-01T09:45:00Z,u_0680_s01,ins_u_0680_004,{},v2.2.0-healthy +evt_000045,u_0383,signup_started,2026-06-01T09:47:00Z,u_0383_s01,ins_u_0383_001,{},v2.2.0-healthy +evt_000046,u_0634,signup_started,2026-06-01T09:51:00Z,u_0634_s01,ins_u_0634_001,{},v2.2.0-healthy +evt_000047,u_0383,signup_completed,2026-06-01T09:53:00Z,u_0383_s01,ins_u_0383_002,{},v2.2.0-healthy +evt_000048,u_0634,signup_completed,2026-06-01T09:55:00Z,u_0634_s01,ins_u_0634_002,{},v2.2.0-healthy +evt_000049,u_0147,activation_completed,2026-06-01T09:59:00Z,u_0147_s01,ins_u_0147_007,{},v2.2.0-healthy +evt_000050,u_0383,profile_saved,2026-06-01T09:59:00Z,u_0383_s01,ins_u_0383_003,{},v2.2.0-healthy +evt_000051,u_0161,feature_used,2026-06-01T10:02:00Z,u_0161_s01,ins_u_0161_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000052,u_0006,signup_started,2026-06-01T10:04:00Z,u_0006_s01,ins_u_0006_001,{},v2.2.0-healthy +evt_000053,u_0634,profile_saved,2026-06-01T10:04:00Z,u_0634_s01,ins_u_0634_003,{},v2.2.0-healthy +evt_000054,u_0776,signup_started,2026-06-01T10:04:00Z,u_0776_s01,ins_u_0776_001,{},v2.2.0-healthy +evt_000055,u_0776,signup_completed,2026-06-01T10:05:00Z,u_0776_s01,ins_u_0776_002,{},v2.2.0-healthy +evt_000056,u_0006,signup_completed,2026-06-01T10:07:00Z,u_0006_s01,ins_u_0006_002,{},v2.2.0-healthy +evt_000057,u_0383,feature_used,2026-06-01T10:07:00Z,u_0383_s01,ins_u_0383_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000058,u_0706,signup_started,2026-06-01T10:07:00Z,u_0706_s01,ins_u_0706_001,{},v2.2.0-healthy +evt_000059,u_0709,onboarding_completed,2026-06-01T10:07:00Z,u_0709_s01,ins_u_0709_005,"{""completed_at"": ""2026-06-01T10:04:00Z""}",v2.2.0-healthy +evt_000060,u_0776,profile_saved,2026-06-01T10:07:00Z,u_0776_s01,ins_u_0776_003,{},v2.2.0-healthy +evt_000061,u_0706,signup_completed,2026-06-01T10:08:00Z,u_0706_s01,ins_u_0706_002,{},v2.2.0-healthy +evt_000062,u_0727,signup_started,2026-06-01T10:09:00Z,u_0727_s01,ins_u_0727_001,{},v2.2.0-healthy +evt_000063,u_0706,profile_saved,2026-06-01T10:11:00Z,u_0706_s01,ins_u_0706_003,{},v2.2.0-healthy +evt_000064,u_0006,profile_saved,2026-06-01T10:13:00Z,u_0006_s01,ins_u_0006_003,{},v2.2.0-healthy +evt_000065,u_0727,session_abandoned,2026-06-01T10:13:00Z,u_0727_s01,ins_u_0727_002,{},v2.2.0-healthy +evt_000066,u_0776,onboarding_step_viewed,2026-06-01T10:13:00Z,u_0776_s01,ins_u_0776_004,{},v2.2.0-healthy +evt_000067,u_0428,onboarding_completed,2026-06-01T10:14:00Z,u_0428_s01,ins_u_0428_005,"{""completed_at"": ""2026-06-01T10:17:00Z""}",v2.2.0-healthy +evt_000068,u_0680,onboarding_completed,2026-06-01T10:14:00Z,u_0680_s01,ins_u_0680_005,"{""completed_at"": ""2026-06-01T10:15:00Z""}",v2.2.0-healthy +evt_000069,u_0706,onboarding_step_viewed,2026-06-01T10:15:00Z,u_0706_s01,ins_u_0706_004,{},v2.2.0-healthy +evt_000070,u_0006,onboarding_step_viewed,2026-06-01T10:17:00Z,u_0006_s01,ins_u_0006_004,{},v2.2.0-healthy +evt_000071,u_0776,feature_used,2026-06-01T10:21:00Z,u_0776_s01,ins_u_0776_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000072,u_0084,signup_started,2026-06-01T10:22:00Z,u_0084_s01,ins_u_0084_001,{},v2.2.0-healthy +evt_000073,u_0428,activation_completed,2026-06-01T10:23:00Z,u_0428_s01,ins_u_0428_006,{},v2.2.0-healthy +evt_000074,u_0634,feature_used,2026-06-01T10:25:00Z,u_0634_s01,ins_u_0634_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_000075,u_0084,signup_completed,2026-06-01T10:30:00Z,u_0084_s01,ins_u_0084_002,{},v2.2.0-healthy +evt_000076,u_0383,onboarding_completed,2026-06-01T10:30:00Z,u_0383_s01,ins_u_0383_005,"{""completed_at"": ""2026-06-01T10:29:00Z""}",v2.2.0-healthy +evt_000077,u_0015,activation_completed,2026-06-01T10:34:00Z,u_0015_s01,ins_u_0015_005,{},v2.2.0-healthy +evt_000078,u_0706,onboarding_completed,2026-06-01T10:37:00Z,u_0706_s01,ins_u_0706_005,"{""completed_at"": ""2026-06-01T10:50:00Z""}",v2.2.0-healthy +evt_000079,u_0052,signup_started,2026-06-01T10:39:00Z,u_0052_s01,ins_u_0052_001,{},v2.2.0-healthy +evt_000080,u_0084,profile_saved,2026-06-01T10:40:00Z,u_0084_s01,ins_u_0084_003,{},v2.2.0-healthy +evt_000081,u_0634,onboarding_completed,2026-06-01T10:40:00Z,u_0634_s01,ins_u_0634_005,"{""completed_at"": ""2026-06-01T10:36:00Z""}",v2.2.0-healthy +evt_000082,u_0052,signup_completed,2026-06-01T10:43:00Z,u_0052_s01,ins_u_0052_002,{},v2.2.0-healthy +evt_000083,u_0084,onboarding_step_viewed,2026-06-01T10:43:00Z,u_0084_s01,ins_u_0084_004,{},v2.2.0-healthy +evt_000084,u_0052,profile_saved,2026-06-01T10:45:00Z,u_0052_s01,ins_u_0052_003,{},v2.2.0-healthy +evt_000085,u_0052,onboarding_step_viewed,2026-06-01T10:48:00Z,u_0052_s01,ins_u_0052_004,{},v2.2.0-healthy +evt_000086,u_0138,signup_started,2026-06-01T10:49:00Z,u_0138_s01,ins_u_0138_001,{},v2.2.0-healthy +evt_000087,u_0776,onboarding_completed,2026-06-01T10:50:00Z,u_0776_s01,ins_u_0776_006,"{""completed_at"": ""2026-06-01T10:38:00Z""}",v2.2.0-healthy +evt_000088,u_0006,onboarding_completed,2026-06-01T10:51:00Z,u_0006_s01,ins_u_0006_005,"{""completed_at"": ""2026-06-01T10:47:00Z""}",v2.2.0-healthy +evt_000089,u_0383,activation_completed,2026-06-01T10:55:00Z,u_0383_s01,ins_u_0383_006,{},v2.2.0-healthy +evt_000090,u_0670,signup_started,2026-06-01T10:55:00Z,u_0670_s01,ins_u_0670_001,{},v2.2.0-healthy +evt_000091,u_0110,signup_started,2026-06-01T10:56:00Z,u_0110_s01,ins_u_0110_001,{},v2.2.0-healthy +evt_000092,u_0052,feature_used,2026-06-01T10:57:00Z,u_0052_s01,ins_u_0052_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000093,u_0084,feature_used,2026-06-01T10:57:00Z,u_0084_s01,ins_u_0084_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000094,u_0138,signup_completed,2026-06-01T10:57:00Z,u_0138_s01,ins_u_0138_002,{},v2.2.0-healthy +evt_000095,u_0170,signup_started,2026-06-01T10:59:00Z,u_0170_s01,ins_u_0170_001,{},v2.2.0-healthy +evt_000096,u_0706,activation_completed,2026-06-01T11:01:00Z,u_0706_s01,ins_u_0706_006,{},v2.2.0-healthy +evt_000097,u_0138,profile_saved,2026-06-01T11:02:00Z,u_0138_s01,ins_u_0138_003,{},v2.2.0-healthy +evt_000098,u_0670,signup_completed,2026-06-01T11:03:00Z,u_0670_s01,ins_u_0670_002,{},v2.2.0-healthy +evt_000099,u_0110,signup_completed,2026-06-01T11:04:00Z,u_0110_s01,ins_u_0110_002,{},v2.2.0-healthy +evt_000100,u_0670,profile_saved,2026-06-01T11:05:00Z,u_0670_s01,ins_u_0670_003,{},v2.2.0-healthy +evt_000101,u_0674,signup_started,2026-06-01T11:05:00Z,u_0674_s01,ins_u_0674_001,{},v2.2.0-healthy +evt_000102,u_0170,signup_completed,2026-06-01T11:06:00Z,u_0170_s01,ins_u_0170_002,{},v2.2.0-healthy +evt_000103,u_0610,signup_started,2026-06-01T11:06:00Z,u_0610_s01,ins_u_0610_001,{},v2.2.0-healthy +evt_000104,u_0634,activation_completed,2026-06-01T11:06:00Z,u_0634_s01,ins_u_0634_006,{},v2.2.0-healthy +evt_000105,u_0670,error_shown,2026-06-01T11:06:00Z,u_0670_s01,ins_u_0670_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_000106,u_0138,onboarding_step_viewed,2026-06-01T11:07:00Z,u_0138_s01,ins_u_0138_004,{},v2.2.0-healthy +evt_000107,u_0674,signup_completed,2026-06-01T11:07:00Z,u_0674_s01,ins_u_0674_002,{},v2.2.0-healthy +evt_000108,u_0610,session_abandoned,2026-06-01T11:09:00Z,u_0610_s01,ins_u_0610_002,{},v2.2.0-healthy +evt_000109,u_0674,profile_saved,2026-06-01T11:10:00Z,u_0674_s01,ins_u_0674_003,{},v2.2.0-healthy +evt_000110,u_0776,activation_completed,2026-06-01T11:10:00Z,u_0776_s01,ins_u_0776_007,{},v2.2.0-healthy +evt_000111,u_0110,profile_saved,2026-06-01T11:11:00Z,u_0110_s01,ins_u_0110_003,{},v2.2.0-healthy +evt_000112,u_0522,signup_started,2026-06-01T11:13:00Z,u_0522_s01,ins_u_0522_001,{},v2.2.0-healthy +evt_000113,u_0170,profile_saved,2026-06-01T11:14:00Z,u_0170_s01,ins_u_0170_003,{},v2.2.0-healthy +evt_000114,u_0006,activation_completed,2026-06-01T11:16:00Z,u_0006_s01,ins_u_0006_006,{},v2.2.0-healthy +evt_000115,u_0262,signup_started,2026-06-01T11:16:00Z,u_0262_s01,ins_u_0262_001,{},v2.2.0-healthy +evt_000116,u_0484,signup_started,2026-06-01T11:16:00Z,u_0484_s01,ins_u_0484_001,{},v2.2.0-healthy +evt_000117,u_0674,onboarding_step_viewed,2026-06-01T11:16:00Z,u_0674_s01,ins_u_0674_004,{},v2.2.0-healthy +evt_000118,u_0110,onboarding_step_viewed,2026-06-01T11:17:00Z,u_0110_s01,ins_u_0110_004,{},v2.2.0-healthy +evt_000119,u_0052,onboarding_completed,2026-06-01T11:18:00Z,u_0052_s01,ins_u_0052_006,"{""completed_at"": ""2026-06-01T11:23:00Z""}",v2.2.0-healthy +evt_000120,u_0484,signup_completed,2026-06-01T11:18:00Z,u_0484_s01,ins_u_0484_002,{},v2.2.0-healthy +evt_000121,u_0170,onboarding_step_viewed,2026-06-01T11:19:00Z,u_0170_s01,ins_u_0170_004,{},v2.2.0-healthy +evt_000122,u_0484,profile_saved,2026-06-01T11:20:00Z,u_0484_s01,ins_u_0484_003,{},v2.2.0-healthy +evt_000123,u_0084,onboarding_completed,2026-06-01T11:21:00Z,u_0084_s01,ins_u_0084_006,"{""completed_at"": ""2026-06-01T11:13:00Z""}",v2.2.0-healthy +evt_000124,u_0522,session_abandoned,2026-06-01T11:21:00Z,u_0522_s01,ins_u_0522_002,{},v2.2.0-healthy +evt_000125,u_0533,signup_started,2026-06-01T11:22:00Z,u_0533_s01,ins_u_0533_001,{},v2.2.0-healthy +evt_000126,u_0262,signup_completed,2026-06-01T11:24:00Z,u_0262_s01,ins_u_0262_002,{},v2.2.0-healthy +evt_000127,u_0484,onboarding_step_viewed,2026-06-01T11:24:00Z,u_0484_s01,ins_u_0484_004,{},v2.2.0-healthy +evt_000128,u_0780,signup_started,2026-06-01T11:24:00Z,u_0780_s01,ins_u_0780_001,{},v2.2.0-healthy +evt_000129,u_0014,signup_started,2026-06-01T11:25:00Z,u_0014_s01,ins_u_0014_001,{},v2.2.0-healthy +evt_000130,u_0014,signup_completed,2026-06-01T11:27:00Z,u_0014_s01,ins_u_0014_002,{},v2.2.0-healthy +evt_000131,u_0533,signup_completed,2026-06-01T11:28:00Z,u_0533_s01,ins_u_0533_002,{},v2.2.0-healthy +evt_000132,u_0780,signup_completed,2026-06-01T11:30:00Z,u_0780_s01,ins_u_0780_002,{},v2.2.0-healthy +evt_000133,u_0674,feature_used,2026-06-01T11:31:00Z,u_0674_s01,ins_u_0674_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000134,u_0533,session_abandoned,2026-06-01T11:32:00Z,u_0533_s01,ins_u_0533_003,{},v2.2.0-healthy +evt_000135,u_0138,onboarding_completed,2026-06-01T11:33:00Z,u_0138_s01,ins_u_0138_005,"{""completed_at"": ""2026-06-01T11:36:00Z""}",v2.2.0-healthy +evt_000136,u_0262,profile_saved,2026-06-01T11:34:00Z,u_0262_s01,ins_u_0262_003,{},v2.2.0-healthy +evt_000137,u_0484,feature_used,2026-06-01T11:36:00Z,u_0484_s01,ins_u_0484_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000138,u_0780,session_abandoned,2026-06-01T11:36:00Z,u_0780_s01,ins_u_0780_003,{},v2.2.0-healthy +evt_000139,u_0014,profile_saved,2026-06-01T11:37:00Z,u_0014_s01,ins_u_0014_003,{},v2.2.0-healthy +evt_000140,u_0262,onboarding_step_viewed,2026-06-01T11:39:00Z,u_0262_s01,ins_u_0262_004,{},v2.2.0-healthy +evt_000141,u_0674,onboarding_completed,2026-06-01T11:39:00Z,u_0674_s01,ins_u_0674_006,"{""completed_at"": ""2026-06-01T11:50:00Z""}",v2.2.0-healthy +evt_000142,u_0014,onboarding_step_viewed,2026-06-01T11:42:00Z,u_0014_s01,ins_u_0014_004,{},v2.2.0-healthy +evt_000143,u_0670,onboarding_completed,2026-06-01T11:43:00Z,u_0670_s01,ins_u_0670_005,"{""completed_at"": ""2026-06-01T11:32:00Z""}",v2.2.0-healthy +evt_000144,u_0664,signup_started,2026-06-01T11:47:00Z,u_0664_s01,ins_u_0664_001,{},v2.2.0-healthy +evt_000145,u_0170,onboarding_completed,2026-06-01T11:48:00Z,u_0170_s01,ins_u_0170_005,"{""completed_at"": ""2026-06-01T11:44:00Z""}",v2.2.0-healthy +evt_000146,u_0074,signup_started,2026-06-01T11:50:00Z,u_0074_s01,ins_u_0074_001,{},v2.2.0-healthy +evt_000147,u_0074,session_abandoned,2026-06-01T11:52:00Z,u_0074_s01,ins_u_0074_002,{},v2.2.0-healthy +evt_000148,u_0664,session_abandoned,2026-06-01T11:52:00Z,u_0664_s01,ins_u_0664_002,{},v2.2.0-healthy +evt_000149,u_0262,feature_used,2026-06-01T11:53:00Z,u_0262_s01,ins_u_0262_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000150,u_0084,activation_completed,2026-06-01T11:55:00Z,u_0084_s01,ins_u_0084_007,{},v2.2.0-healthy +evt_000151,u_0014,feature_used,2026-06-01T12:01:00Z,u_0014_s01,ins_u_0014_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000152,u_0112,signup_started,2026-06-01T12:02:00Z,u_0112_s01,ins_u_0112_001,{},v2.2.0-healthy +evt_000153,u_0262,onboarding_completed,2026-06-01T12:03:00Z,u_0262_s01,ins_u_0262_006,"{""completed_at"": ""2026-06-01T12:00:00Z""}",v2.2.0-healthy +evt_000154,u_0052,activation_completed,2026-06-01T12:04:00Z,u_0052_s01,ins_u_0052_007,{},v2.2.0-healthy +evt_000155,u_0484,onboarding_completed,2026-06-01T12:05:00Z,u_0484_s01,ins_u_0484_006,"{""completed_at"": ""2026-06-01T11:53:00Z""}",v2.2.0-healthy +evt_000156,u_0112,signup_completed,2026-06-01T12:10:00Z,u_0112_s01,ins_u_0112_002,{},v2.2.0-healthy +evt_000157,u_0014,onboarding_completed,2026-06-01T12:11:00Z,u_0014_s01,ins_u_0014_006,"{""completed_at"": ""2026-06-01T12:11:00Z""}",v2.2.0-healthy +evt_000158,u_0112,profile_saved,2026-06-01T12:12:00Z,u_0112_s01,ins_u_0112_003,{},v2.2.0-healthy +evt_000159,u_0661,signup_started,2026-06-01T12:12:00Z,u_0661_s01,ins_u_0661_001,{},v2.2.0-healthy +evt_000160,u_0112,error_shown,2026-06-01T12:13:00Z,u_0112_s01,ins_u_0112_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_000161,u_0702,signup_started,2026-06-01T12:14:00Z,u_0702_s01,ins_u_0702_001,{},v2.2.0-healthy +evt_000162,u_0112,onboarding_step_viewed,2026-06-01T12:15:00Z,u_0112_s01,ins_u_0112_005,{},v2.2.0-healthy +evt_000163,u_0298,signup_started,2026-06-01T12:16:00Z,u_0298_s01,ins_u_0298_001,{},v2.2.0-healthy +evt_000164,u_0515,signup_started,2026-06-01T12:16:00Z,u_0515_s01,ins_u_0515_001,{},v2.2.0-healthy +evt_000165,u_0661,signup_completed,2026-06-01T12:16:00Z,u_0661_s01,ins_u_0661_002,{},v2.2.0-healthy +evt_000166,u_0702,signup_completed,2026-06-01T12:17:00Z,u_0702_s01,ins_u_0702_002,{},v2.2.0-healthy +evt_000167,u_0114,signup_started,2026-06-01T12:19:00Z,u_0114_s01,ins_u_0114_001,{},v2.2.0-healthy +evt_000168,u_0170,activation_completed,2026-06-01T12:19:00Z,u_0170_s01,ins_u_0170_006,{},v2.2.0-healthy +evt_000169,u_0298,signup_completed,2026-06-01T12:20:00Z,u_0298_s01,ins_u_0298_002,{},v2.2.0-healthy +evt_000170,u_0114,signup_completed,2026-06-01T12:21:00Z,u_0114_s01,ins_u_0114_002,{},v2.2.0-healthy +evt_000171,u_0110,activation_completed,2026-06-01T12:22:00Z,u_0110_s01,ins_u_0110_005,{},v2.2.0-healthy +evt_000172,u_0515,signup_completed,2026-06-01T12:22:00Z,u_0515_s01,ins_u_0515_002,{},v2.2.0-healthy +evt_000173,u_0661,profile_saved,2026-06-01T12:24:00Z,u_0661_s01,ins_u_0661_003,{},v2.2.0-healthy +evt_000174,u_0702,profile_saved,2026-06-01T12:24:00Z,u_0702_s01,ins_u_0702_003,{},v2.2.0-healthy +evt_000175,u_0298,session_abandoned,2026-06-01T12:26:00Z,u_0298_s01,ins_u_0298_003,{},v2.2.0-healthy +evt_000176,u_0702,onboarding_step_viewed,2026-06-01T12:27:00Z,u_0702_s01,ins_u_0702_004,{},v2.2.0-healthy +evt_000177,u_0114,session_abandoned,2026-06-01T12:28:00Z,u_0114_s01,ins_u_0114_003,{},v2.2.0-healthy +evt_000178,u_0661,onboarding_step_viewed,2026-06-01T12:28:00Z,u_0661_s01,ins_u_0661_004,{},v2.2.0-healthy +evt_000179,u_0623,signup_started,2026-06-01T12:31:00Z,u_0623_s01,ins_u_0623_001,{},v2.2.0-healthy +evt_000180,u_0112,feature_used,2026-06-01T12:32:00Z,u_0112_s01,ins_u_0112_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_000181,u_0515,profile_saved,2026-06-01T12:32:00Z,u_0515_s01,ins_u_0515_003,{},v2.2.0-healthy +evt_000182,u_0356,signup_started,2026-06-01T12:35:00Z,u_0356_s01,ins_u_0356_001,{},v2.2.0-healthy +evt_000183,u_0623,signup_completed,2026-06-01T12:37:00Z,u_0623_s01,ins_u_0623_002,{},v2.2.0-healthy +evt_000184,u_0356,signup_completed,2026-06-01T12:38:00Z,u_0356_s01,ins_u_0356_002,{},v2.2.0-healthy +evt_000185,u_0356,profile_saved,2026-06-01T12:43:00Z,u_0356_s01,ins_u_0356_003,{},v2.2.0-healthy +evt_000186,u_0262,activation_completed,2026-06-01T12:44:00Z,u_0262_s01,ins_u_0262_007,{},v2.2.0-healthy +evt_000187,u_0112,onboarding_completed,2026-06-01T12:45:00Z,u_0112_s01,ins_u_0112_007,"{""completed_at"": ""2026-06-01T12:47:00Z""}",v2.2.0-healthy +evt_000188,u_0356,onboarding_step_viewed,2026-06-01T12:46:00Z,u_0356_s01,ins_u_0356_004,{},v2.2.0-healthy +evt_000189,u_0623,profile_saved,2026-06-01T12:46:00Z,u_0623_s01,ins_u_0623_003,{},v2.2.0-healthy +evt_000190,u_0650,signup_started,2026-06-01T12:47:00Z,u_0650_s01,ins_u_0650_001,{},v2.2.0-healthy +evt_000191,u_0623,onboarding_step_viewed,2026-06-01T12:48:00Z,u_0623_s01,ins_u_0623_004,{},v2.2.0-healthy +evt_000192,u_0198,signup_started,2026-06-01T12:50:00Z,u_0198_s01,ins_u_0198_001,{},v2.2.0-healthy +evt_000193,u_0702,onboarding_completed,2026-06-01T12:52:00Z,u_0702_s01,ins_u_0702_005,"{""completed_at"": ""2026-06-01T13:00:00Z""}",v2.2.0-healthy +evt_000194,u_0650,signup_completed,2026-06-01T12:53:00Z,u_0650_s01,ins_u_0650_002,{},v2.2.0-healthy +evt_000195,u_0028,signup_started,2026-06-01T12:55:00Z,u_0028_s01,ins_u_0028_001,{},v2.2.0-healthy +evt_000196,u_0198,signup_completed,2026-06-01T12:55:00Z,u_0198_s01,ins_u_0198_002,{},v2.2.0-healthy +evt_000197,u_0625,signup_started,2026-06-01T12:58:00Z,u_0625_s01,ins_u_0625_001,{},v2.2.0-healthy +evt_000198,u_0028,signup_completed,2026-06-01T13:00:00Z,u_0028_s01,ins_u_0028_002,{},v2.2.0-healthy +evt_000199,u_0198,session_abandoned,2026-06-01T13:00:00Z,u_0198_s01,ins_u_0198_003,{},v2.2.0-healthy +evt_000200,u_0650,profile_saved,2026-06-01T13:00:00Z,u_0650_s01,ins_u_0650_003,{},v2.2.0-healthy +evt_000201,u_0661,onboarding_completed,2026-06-01T13:01:00Z,u_0661_s01,ins_u_0661_005,"{""completed_at"": ""2026-06-01T12:58:00Z""}",v2.2.0-healthy +evt_000202,u_0625,session_abandoned,2026-06-01T13:02:00Z,u_0625_s01,ins_u_0625_002,{},v2.2.0-healthy +evt_000203,u_0028,session_abandoned,2026-06-01T13:04:00Z,u_0028_s01,ins_u_0028_003,{},v2.2.0-healthy +evt_000204,u_0603,signup_started,2026-06-01T13:05:00Z,u_0603_s01,ins_u_0603_001,{},v2.2.0-healthy +evt_000205,u_0650,onboarding_step_viewed,2026-06-01T13:05:00Z,u_0650_s01,ins_u_0650_004,{},v2.2.0-healthy +evt_000206,u_0603,signup_completed,2026-06-01T13:06:00Z,u_0603_s01,ins_u_0603_002,{},v2.2.0-healthy +evt_000207,u_0045,signup_started,2026-06-01T13:07:00Z,u_0045_s01,ins_u_0045_001,{},v2.2.0-healthy +evt_000208,u_0650,feature_used,2026-06-01T13:07:00Z,u_0650_s01,ins_u_0650_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000209,u_0241,signup_started,2026-06-01T13:08:00Z,u_0241_s01,ins_u_0241_001,{},v2.2.0-healthy +evt_000210,u_0339,signup_started,2026-06-01T13:08:00Z,u_0339_s01,ins_u_0339_001,{},v2.2.0-healthy +evt_000211,u_0045,signup_completed,2026-06-01T13:09:00Z,u_0045_s01,ins_u_0045_002,{},v2.2.0-healthy +evt_000212,u_0339,signup_completed,2026-06-01T13:10:00Z,u_0339_s01,ins_u_0339_002,{},v2.2.0-healthy +evt_000213,u_0603,profile_saved,2026-06-01T13:11:00Z,u_0603_s01,ins_u_0603_003,{},v2.2.0-healthy +evt_000214,u_0241,signup_completed,2026-06-01T13:13:00Z,u_0241_s01,ins_u_0241_002,{},v2.2.0-healthy +evt_000215,u_0241,profile_saved,2026-06-01T13:16:00Z,u_0241_s01,ins_u_0241_003,{},v2.2.0-healthy +evt_000216,u_0339,session_abandoned,2026-06-01T13:16:00Z,u_0339_s01,ins_u_0339_003,{},v2.2.0-healthy +evt_000217,u_0603,onboarding_step_viewed,2026-06-01T13:17:00Z,u_0603_s01,ins_u_0603_004,{},v2.2.0-healthy +evt_000218,u_0045,session_abandoned,2026-06-01T13:18:00Z,u_0045_s01,ins_u_0045_003,{},v2.2.0-healthy +evt_000219,u_0356,onboarding_completed,2026-06-01T13:19:00Z,u_0356_s01,ins_u_0356_005,"{""completed_at"": ""2026-06-01T13:11:00Z""}",v2.2.0-healthy +evt_000220,u_0241,onboarding_step_viewed,2026-06-01T13:21:00Z,u_0241_s01,ins_u_0241_004,{},v2.2.0-healthy +evt_000221,u_0623,onboarding_completed,2026-06-01T13:21:00Z,u_0623_s01,ins_u_0623_005,"{""completed_at"": ""2026-06-01T13:23:00Z""}",v2.2.0-healthy +evt_000222,u_0603,feature_used,2026-06-01T13:25:00Z,u_0603_s01,ins_u_0603_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000223,u_0650,onboarding_completed,2026-06-01T13:26:00Z,u_0650_s01,ins_u_0650_006,"{""completed_at"": ""2026-06-01T13:30:00Z""}",v2.2.0-healthy +evt_000224,u_0661,activation_completed,2026-06-01T13:27:00Z,u_0661_s01,ins_u_0661_006,{},v2.2.0-healthy +evt_000225,u_0515,activation_completed,2026-06-01T13:31:00Z,u_0515_s01,ins_u_0515_004,{},v2.2.0-healthy +evt_000226,u_0719,signup_started,2026-06-01T13:36:00Z,u_0719_s01,ins_u_0719_001,{},v2.2.0-healthy +evt_000227,u_0241,feature_used,2026-06-01T13:37:00Z,u_0241_s01,ins_u_0241_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000228,u_0719,signup_completed,2026-06-01T13:37:00Z,u_0719_s01,ins_u_0719_002,{},v2.2.0-healthy +evt_000229,u_0632,signup_started,2026-06-01T13:40:00Z,u_0632_s01,ins_u_0632_001,{},v2.2.0-healthy +evt_000230,u_0241,onboarding_completed,2026-06-01T13:42:00Z,u_0241_s01,ins_u_0241_006,"{""completed_at"": ""2026-06-01T13:51:00Z""}",v2.2.0-healthy +evt_000231,u_0632,signup_completed,2026-06-01T13:44:00Z,u_0632_s01,ins_u_0632_002,{},v2.2.0-healthy +evt_000232,u_0719,session_abandoned,2026-06-01T13:46:00Z,u_0719_s01,ins_u_0719_003,{},v2.2.0-healthy +evt_000233,u_0632,profile_saved,2026-06-01T13:47:00Z,u_0632_s01,ins_u_0632_003,{},v2.2.0-healthy +evt_000234,u_0632,error_shown,2026-06-01T13:48:00Z,u_0632_s01,ins_u_0632_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_000235,u_0603,onboarding_completed,2026-06-01T13:50:00Z,u_0603_s01,ins_u_0603_006,"{""completed_at"": ""2026-06-01T13:45:00Z""}",v2.2.0-healthy +evt_000236,u_0356,activation_completed,2026-06-01T13:51:00Z,u_0356_s01,ins_u_0356_006,{},v2.2.0-healthy +evt_000237,u_0632,onboarding_step_viewed,2026-06-01T13:53:00Z,u_0632_s01,ins_u_0632_005,{},v2.2.0-healthy +evt_000238,u_0306,signup_started,2026-06-01T13:59:00Z,u_0306_s01,ins_u_0306_001,{},v2.2.0-healthy +evt_000239,u_0306,signup_completed,2026-06-01T14:02:00Z,u_0306_s01,ins_u_0306_002,{},v2.2.0-healthy +evt_000240,u_0623,activation_completed,2026-06-01T14:05:00Z,u_0623_s01,ins_u_0623_006,{},v2.2.0-healthy +evt_000241,u_0306,profile_saved,2026-06-01T14:06:00Z,u_0306_s01,ins_u_0306_003,{},v2.2.0-healthy +evt_000242,u_0306,onboarding_step_viewed,2026-06-01T14:12:00Z,u_0306_s01,ins_u_0306_004,{},v2.2.0-healthy +evt_000243,u_0241,activation_completed,2026-06-01T14:19:00Z,u_0241_s01,ins_u_0241_007,{},v2.2.0-healthy +evt_000244,u_0799,signup_started,2026-06-01T14:19:00Z,u_0799_s01,ins_u_0799_001,{},v2.2.0-healthy +evt_000245,u_0306,feature_used,2026-06-01T14:21:00Z,u_0306_s01,ins_u_0306_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000246,u_0632,onboarding_completed,2026-06-01T14:21:00Z,u_0632_s01,ins_u_0632_006,"{""completed_at"": ""2026-06-01T14:21:00Z""}",v2.2.0-healthy +evt_000247,u_0261,signup_started,2026-06-01T14:24:00Z,u_0261_s01,ins_u_0261_001,{},v2.2.0-healthy +evt_000248,u_0799,signup_completed,2026-06-01T14:25:00Z,u_0799_s01,ins_u_0799_002,{},v2.2.0-healthy +evt_000249,u_0261,signup_completed,2026-06-01T14:28:00Z,u_0261_s01,ins_u_0261_002,{},v2.2.0-healthy +evt_000250,u_0261,profile_saved,2026-06-01T14:30:00Z,u_0261_s01,ins_u_0261_003,{},v2.2.0-healthy +evt_000251,u_0799,session_abandoned,2026-06-01T14:31:00Z,u_0799_s01,ins_u_0799_003,{},v2.2.0-healthy +evt_000252,u_0306,onboarding_completed,2026-06-01T14:34:00Z,u_0306_s01,ins_u_0306_006,"{""completed_at"": ""2026-06-01T14:43:00Z""}",v2.2.0-healthy +evt_000253,u_0307,signup_started,2026-06-01T14:34:00Z,u_0307_s01,ins_u_0307_001,{},v2.2.0-healthy +evt_000254,u_0261,onboarding_step_viewed,2026-06-01T14:35:00Z,u_0261_s01,ins_u_0261_004,{},v2.2.0-healthy +evt_000255,u_0307,signup_completed,2026-06-01T14:39:00Z,u_0307_s01,ins_u_0307_002,{},v2.2.0-healthy +evt_000256,u_0730,signup_started,2026-06-01T14:39:00Z,u_0730_s01,ins_u_0730_001,{},v2.2.0-healthy +evt_000257,u_0730,signup_completed,2026-06-01T14:46:00Z,u_0730_s01,ins_u_0730_002,{},v2.2.0-healthy +evt_000258,u_0307,profile_saved,2026-06-01T14:47:00Z,u_0307_s01,ins_u_0307_003,{},v2.2.0-healthy +evt_000259,u_0730,profile_saved,2026-06-01T14:49:00Z,u_0730_s01,ins_u_0730_003,{},v2.2.0-healthy +evt_000260,u_0730,error_shown,2026-06-01T14:50:00Z,u_0730_s01,ins_u_0730_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_000261,u_0730,onboarding_step_viewed,2026-06-01T14:51:00Z,u_0730_s01,ins_u_0730_005,{},v2.2.0-healthy +evt_000262,u_0261,feature_used,2026-06-01T14:52:00Z,u_0261_s01,ins_u_0261_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000263,u_0307,onboarding_step_viewed,2026-06-01T14:53:00Z,u_0307_s01,ins_u_0307_004,{},v2.2.0-healthy +evt_000264,u_0261,onboarding_completed,2026-06-01T14:59:00Z,u_0261_s01,ins_u_0261_006,"{""completed_at"": ""2026-06-01T14:56:00Z""}",v2.2.0-healthy +evt_000265,u_0517,signup_started,2026-06-01T15:02:00Z,u_0517_s01,ins_u_0517_001,{},v2.2.0-healthy +evt_000266,u_0697,signup_started,2026-06-01T15:02:00Z,u_0697_s01,ins_u_0697_001,{},v2.2.0-healthy +evt_000267,u_0151,signup_started,2026-06-01T15:03:00Z,u_0151_s01,ins_u_0151_001,{},v2.2.0-healthy +evt_000268,u_0270,signup_started,2026-06-01T15:04:00Z,u_0270_s01,ins_u_0270_001,{},v2.2.0-healthy +evt_000269,u_0307,feature_used,2026-06-01T15:05:00Z,u_0307_s01,ins_u_0307_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000270,u_0517,signup_completed,2026-06-01T15:05:00Z,u_0517_s01,ins_u_0517_002,{},v2.2.0-healthy +evt_000271,u_0560,signup_started,2026-06-01T15:06:00Z,u_0560_s01,ins_u_0560_001,{},v2.2.0-healthy +evt_000272,u_0697,signup_completed,2026-06-01T15:06:00Z,u_0697_s01,ins_u_0697_002,{},v2.2.0-healthy +evt_000273,u_0270,signup_completed,2026-06-01T15:08:00Z,u_0270_s01,ins_u_0270_002,{},v2.2.0-healthy +evt_000274,u_0517,profile_saved,2026-06-01T15:09:00Z,u_0517_s01,ins_u_0517_003,{},v2.2.0-healthy +evt_000275,u_0151,signup_completed,2026-06-01T15:10:00Z,u_0151_s01,ins_u_0151_002,{},v2.2.0-healthy +evt_000276,u_0697,session_abandoned,2026-06-01T15:10:00Z,u_0697_s01,ins_u_0697_003,{},v2.2.0-healthy +evt_000277,u_0306,activation_completed,2026-06-01T15:12:00Z,u_0306_s01,ins_u_0306_007,{},v2.2.0-healthy +evt_000278,u_0560,signup_completed,2026-06-01T15:13:00Z,u_0560_s01,ins_u_0560_002,{},v2.2.0-healthy +evt_000279,u_0517,onboarding_step_viewed,2026-06-01T15:15:00Z,u_0517_s01,ins_u_0517_004,{},v2.2.0-healthy +evt_000280,u_0270,profile_saved,2026-06-01T15:17:00Z,u_0270_s01,ins_u_0270_003,{},v2.2.0-healthy +evt_000281,u_0560,profile_saved,2026-06-01T15:18:00Z,u_0560_s01,ins_u_0560_003,{},v2.2.0-healthy +evt_000282,u_0151,profile_saved,2026-06-01T15:19:00Z,u_0151_s01,ins_u_0151_003,{},v2.2.0-healthy +evt_000283,u_0151,onboarding_step_viewed,2026-06-01T15:21:00Z,u_0151_s01,ins_u_0151_004,{},v2.2.0-healthy +evt_000284,u_0270,onboarding_step_viewed,2026-06-01T15:23:00Z,u_0270_s01,ins_u_0270_004,{},v2.2.0-healthy +evt_000285,u_0560,onboarding_step_viewed,2026-06-01T15:24:00Z,u_0560_s01,ins_u_0560_004,{},v2.2.0-healthy +evt_000286,u_0307,onboarding_completed,2026-06-01T15:26:00Z,u_0307_s01,ins_u_0307_006,"{""completed_at"": ""2026-06-01T15:22:00Z""}",v2.2.0-healthy +evt_000287,u_0730,onboarding_completed,2026-06-01T15:26:00Z,u_0730_s01,ins_u_0730_006,"{""completed_at"": ""2026-06-01T15:23:00Z""}",v2.2.0-healthy +evt_000288,u_0517,feature_used,2026-06-01T15:27:00Z,u_0517_s01,ins_u_0517_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000289,u_0288,signup_started,2026-06-01T15:28:00Z,u_0288_s01,ins_u_0288_001,{},v2.2.0-healthy +evt_000290,u_0151,feature_used,2026-06-01T15:33:00Z,u_0151_s01,ins_u_0151_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000291,u_0560,feature_used,2026-06-01T15:33:00Z,u_0560_s01,ins_u_0560_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000292,u_0607,signup_started,2026-06-01T15:33:00Z,u_0607_s01,ins_u_0607_001,{},v2.2.0-healthy +evt_000293,u_0270,feature_used,2026-06-01T15:34:00Z,u_0270_s01,ins_u_0270_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000294,u_0607,signup_completed,2026-06-01T15:34:00Z,u_0607_s01,ins_u_0607_002,{},v2.2.0-healthy +evt_000295,u_0288,signup_completed,2026-06-01T15:35:00Z,u_0288_s01,ins_u_0288_002,{},v2.2.0-healthy +evt_000296,u_0165,signup_started,2026-06-01T15:37:00Z,u_0165_s01,ins_u_0165_001,{},v2.2.0-healthy +evt_000297,u_0288,profile_saved,2026-06-01T15:37:00Z,u_0288_s01,ins_u_0288_003,{},v2.2.0-healthy +evt_000298,u_0476,signup_started,2026-06-01T15:38:00Z,u_0476_s01,ins_u_0476_001,{},v2.2.0-healthy +evt_000299,u_0165,signup_completed,2026-06-01T15:39:00Z,u_0165_s01,ins_u_0165_002,{},v2.2.0-healthy +evt_000300,u_0288,onboarding_step_viewed,2026-06-01T15:39:00Z,u_0288_s01,ins_u_0288_004,{},v2.2.0-healthy +evt_000301,u_0607,profile_saved,2026-06-01T15:39:00Z,u_0607_s01,ins_u_0607_003,{},v2.2.0-healthy +evt_000302,u_0239,signup_started,2026-06-01T15:40:00Z,u_0239_s01,ins_u_0239_001,{},v2.2.0-healthy +evt_000303,u_0165,profile_saved,2026-06-01T15:43:00Z,u_0165_s01,ins_u_0165_003,{},v2.2.0-healthy +evt_000304,u_0476,signup_completed,2026-06-01T15:43:00Z,u_0476_s01,ins_u_0476_002,{},v2.2.0-healthy +evt_000305,u_0730,activation_completed,2026-06-01T15:43:00Z,u_0730_s01,ins_u_0730_007,{},v2.2.0-healthy +evt_000306,u_0165,onboarding_step_viewed,2026-06-01T15:47:00Z,u_0165_s01,ins_u_0165_004,{},v2.2.0-healthy +evt_000307,u_0476,profile_saved,2026-06-01T15:47:00Z,u_0476_s01,ins_u_0476_003,{},v2.2.0-healthy +evt_000308,u_0239,signup_completed,2026-06-01T15:48:00Z,u_0239_s01,ins_u_0239_002,{},v2.2.0-healthy +evt_000309,u_0239,profile_saved,2026-06-01T15:50:00Z,u_0239_s01,ins_u_0239_003,{},v2.2.0-healthy +evt_000310,u_0517,onboarding_completed,2026-06-01T15:51:00Z,u_0517_s01,ins_u_0517_006,"{""completed_at"": ""2026-06-01T15:39:00Z""}",v2.2.0-healthy +evt_000311,u_0571,signup_started,2026-06-01T15:51:00Z,u_0571_s01,ins_u_0571_001,{},v2.2.0-healthy +evt_000312,u_0307,activation_completed,2026-06-01T15:52:00Z,u_0307_s01,ins_u_0307_007,{},v2.2.0-healthy +evt_000313,u_0239,onboarding_step_viewed,2026-06-01T15:53:00Z,u_0239_s01,ins_u_0239_004,{},v2.2.0-healthy +evt_000314,u_0476,onboarding_step_viewed,2026-06-01T15:53:00Z,u_0476_s01,ins_u_0476_004,{},v2.2.0-healthy +evt_000315,u_0571,signup_completed,2026-06-01T15:53:00Z,u_0571_s01,ins_u_0571_002,{},v2.2.0-healthy +evt_000316,u_0560,onboarding_completed,2026-06-01T15:55:00Z,u_0560_s01,ins_u_0560_006,"{""completed_at"": ""2026-06-01T15:47:00Z""}",v2.2.0-healthy +evt_000317,u_0270,onboarding_completed,2026-06-01T15:56:00Z,u_0270_s01,ins_u_0270_006,"{""completed_at"": ""2026-06-01T15:55:00Z""}",v2.2.0-healthy +evt_000318,u_0288,feature_used,2026-06-01T15:58:00Z,u_0288_s01,ins_u_0288_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000319,u_0571,session_abandoned,2026-06-01T15:58:00Z,u_0571_s01,ins_u_0571_003,{},v2.2.0-healthy +evt_000320,u_0540,signup_started,2026-06-01T16:02:00Z,u_0540_s01,ins_u_0540_001,{},v2.2.0-healthy +evt_000321,u_0239,feature_used,2026-06-01T16:07:00Z,u_0239_s01,ins_u_0239_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000322,u_0540,signup_completed,2026-06-01T16:09:00Z,u_0540_s01,ins_u_0540_002,{},v2.2.0-healthy +evt_000323,u_0607,onboarding_completed,2026-06-01T16:11:00Z,u_0607_s01,ins_u_0607_004,"{""completed_at"": ""2026-06-01T16:13:00Z""}",v2.2.0-healthy +evt_000324,u_0288,onboarding_completed,2026-06-01T16:16:00Z,u_0288_s01,ins_u_0288_006,"{""completed_at"": ""2026-06-01T16:08:00Z""}",v2.2.0-healthy +evt_000325,u_0203,signup_started,2026-06-01T16:17:00Z,u_0203_s01,ins_u_0203_001,{},v2.2.0-healthy +evt_000326,u_0540,profile_saved,2026-06-01T16:18:00Z,u_0540_s01,ins_u_0540_003,{},v2.2.0-healthy +evt_000327,u_0476,onboarding_completed,2026-06-01T16:20:00Z,u_0476_s01,ins_u_0476_005,"{""completed_at"": ""2026-06-01T16:26:00Z""}",v2.2.0-healthy +evt_000328,u_0540,onboarding_step_viewed,2026-06-01T16:20:00Z,u_0540_s01,ins_u_0540_004,{},v2.2.0-healthy +evt_000329,u_0203,signup_completed,2026-06-01T16:24:00Z,u_0203_s01,ins_u_0203_002,{},v2.2.0-healthy +evt_000330,u_0374,signup_started,2026-06-01T16:24:00Z,u_0374_s01,ins_u_0374_001,{},v2.2.0-healthy +evt_000331,u_0165,onboarding_completed,2026-06-01T16:25:00Z,u_0165_s01,ins_u_0165_005,"{""completed_at"": ""2026-06-01T16:23:00Z""}",v2.2.0-healthy +evt_000332,u_0540,feature_used,2026-06-01T16:25:00Z,u_0540_s01,ins_u_0540_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000333,u_0239,onboarding_completed,2026-06-01T16:26:00Z,u_0239_s01,ins_u_0239_006,"{""completed_at"": ""2026-06-01T16:25:00Z""}",v2.2.0-healthy +evt_000334,u_0374,signup_completed,2026-06-01T16:30:00Z,u_0374_s01,ins_u_0374_002,{},v2.2.0-healthy +evt_000335,u_0002,signup_started,2026-06-01T16:31:00Z,u_0002_s01,ins_u_0002_001,{},v2.2.0-healthy +evt_000336,u_0288,activation_completed,2026-06-01T16:31:00Z,u_0288_s01,ins_u_0288_007,{},v2.2.0-healthy +evt_000337,u_0740,signup_started,2026-06-01T16:33:00Z,u_0740_s01,ins_u_0740_001,{},v2.2.0-healthy +evt_000338,u_0203,profile_saved,2026-06-01T16:34:00Z,u_0203_s01,ins_u_0203_003,{},v2.2.0-healthy +evt_000339,u_0740,signup_completed,2026-06-01T16:34:00Z,u_0740_s01,ins_u_0740_002,{},v2.2.0-healthy +evt_000340,u_0203,error_shown,2026-06-01T16:35:00Z,u_0203_s01,ins_u_0203_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_000341,u_0685,signup_started,2026-06-01T16:35:00Z,u_0685_s01,ins_u_0685_001,{},v2.2.0-healthy +evt_000342,u_0165,activation_completed,2026-06-01T16:36:00Z,u_0165_s01,ins_u_0165_006,{},v2.2.0-healthy +evt_000343,u_0203,onboarding_step_viewed,2026-06-01T16:37:00Z,u_0203_s01,ins_u_0203_005,{},v2.2.0-healthy +evt_000344,u_0374,session_abandoned,2026-06-01T16:37:00Z,u_0374_s01,ins_u_0374_003,{},v2.2.0-healthy +evt_000345,u_0002,signup_completed,2026-06-01T16:38:00Z,u_0002_s01,ins_u_0002_002,{},v2.2.0-healthy +evt_000346,u_0685,signup_completed,2026-06-01T16:39:00Z,u_0685_s01,ins_u_0685_002,{},v2.2.0-healthy +evt_000347,u_0740,session_abandoned,2026-06-01T16:40:00Z,u_0740_s01,ins_u_0740_003,{},v2.2.0-healthy +evt_000348,u_0002,profile_saved,2026-06-01T16:41:00Z,u_0002_s01,ins_u_0002_003,{},v2.2.0-healthy +evt_000349,u_0214,signup_started,2026-06-01T16:41:00Z,u_0214_s01,ins_u_0214_001,{},v2.2.0-healthy +evt_000350,u_0239,activation_completed,2026-06-01T16:41:00Z,u_0239_s01,ins_u_0239_007,{},v2.2.0-healthy +evt_000351,u_0002,onboarding_step_viewed,2026-06-01T16:46:00Z,u_0002_s01,ins_u_0002_004,{},v2.2.0-healthy +evt_000352,u_0203,feature_used,2026-06-01T16:46:00Z,u_0203_s01,ins_u_0203_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000353,u_0638,signup_started,2026-06-01T16:47:00Z,u_0638_s01,ins_u_0638_001,{},v2.2.0-healthy +evt_000354,u_0214,signup_completed,2026-06-01T16:49:00Z,u_0214_s01,ins_u_0214_002,{},v2.2.0-healthy +evt_000355,u_0685,profile_saved,2026-06-01T16:49:00Z,u_0685_s01,ins_u_0685_003,{},v2.2.0-healthy +evt_000356,u_0387,signup_started,2026-06-01T16:50:00Z,u_0387_s01,ins_u_0387_001,{},v2.2.0-healthy +evt_000357,u_0638,signup_completed,2026-06-01T16:51:00Z,u_0638_s01,ins_u_0638_002,{},v2.2.0-healthy +evt_000358,u_0422,signup_started,2026-06-01T16:52:00Z,u_0422_s01,ins_u_0422_001,{},v2.2.0-healthy +evt_000359,u_0387,signup_completed,2026-06-01T16:53:00Z,u_0387_s01,ins_u_0387_002,{},v2.2.0-healthy +evt_000360,u_0638,profile_saved,2026-06-01T16:53:00Z,u_0638_s01,ins_u_0638_003,{},v2.2.0-healthy +evt_000361,u_0685,onboarding_step_viewed,2026-06-01T16:53:00Z,u_0685_s01,ins_u_0685_004,{},v2.2.0-healthy +evt_000362,u_0002,feature_used,2026-06-01T16:55:00Z,u_0002_s01,ins_u_0002_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000363,u_0476,activation_completed,2026-06-01T16:56:00Z,u_0476_s01,ins_u_0476_006,{},v2.2.0-healthy +evt_000364,u_0214,session_abandoned,2026-06-01T16:58:00Z,u_0214_s01,ins_u_0214_003,{},v2.2.0-healthy +evt_000365,u_0422,signup_completed,2026-06-01T16:58:00Z,u_0422_s01,ins_u_0422_002,{},v2.2.0-healthy +evt_000366,u_0387,session_abandoned,2026-06-01T17:02:00Z,u_0387_s01,ins_u_0387_003,{},v2.2.0-healthy +evt_000367,u_0455,signup_started,2026-06-01T17:02:00Z,u_0455_s01,ins_u_0455_001,{},v2.2.0-healthy +evt_000368,u_0685,feature_used,2026-06-01T17:03:00Z,u_0685_s01,ins_u_0685_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000369,u_0422,session_abandoned,2026-06-01T17:06:00Z,u_0422_s01,ins_u_0422_003,{},v2.2.0-healthy +evt_000370,u_0455,signup_completed,2026-06-01T17:09:00Z,u_0455_s01,ins_u_0455_002,{},v2.2.0-healthy +evt_000371,u_0243,signup_started,2026-06-01T17:11:00Z,u_0243_s01,ins_u_0243_001,{},v2.2.0-healthy +evt_000372,u_0528,signup_started,2026-06-01T17:11:00Z,u_0528_s01,ins_u_0528_001,{},v2.2.0-healthy +evt_000373,u_0528,signup_completed,2026-06-01T17:12:00Z,u_0528_s01,ins_u_0528_002,{},v2.2.0-healthy +evt_000374,u_0455,session_abandoned,2026-06-01T17:15:00Z,u_0455_s01,ins_u_0455_003,{},v2.2.0-healthy +evt_000375,u_0250,signup_started,2026-06-01T17:16:00Z,u_0250_s01,ins_u_0250_001,{},v2.2.0-healthy +evt_000376,u_0528,profile_saved,2026-06-01T17:16:00Z,u_0528_s01,ins_u_0528_003,{},v2.2.0-healthy +evt_000377,u_0243,signup_completed,2026-06-01T17:17:00Z,u_0243_s01,ins_u_0243_002,{},v2.2.0-healthy +evt_000378,u_0002,onboarding_completed,2026-06-01T17:18:00Z,u_0002_s01,ins_u_0002_006,"{""completed_at"": ""2026-06-01T17:09:00Z""}",v2.2.0-healthy +evt_000379,u_0528,onboarding_step_viewed,2026-06-01T17:18:00Z,u_0528_s01,ins_u_0528_004,{},v2.2.0-healthy +evt_000380,u_0237,signup_started,2026-06-01T17:20:00Z,u_0237_s01,ins_u_0237_001,{},v2.2.0-healthy +evt_000381,u_0250,signup_completed,2026-06-01T17:21:00Z,u_0250_s01,ins_u_0250_002,{},v2.2.0-healthy +evt_000382,u_0638,onboarding_completed,2026-06-01T17:24:00Z,u_0638_s01,ins_u_0638_004,"{""completed_at"": ""2026-06-01T17:27:00Z""}",v2.2.0-healthy +evt_000383,u_0243,profile_saved,2026-06-01T17:25:00Z,u_0243_s01,ins_u_0243_003,{},v2.2.0-healthy +evt_000384,u_0243,onboarding_step_viewed,2026-06-01T17:27:00Z,u_0243_s01,ins_u_0243_004,{},v2.2.0-healthy +evt_000385,u_0250,profile_saved,2026-06-01T17:27:00Z,u_0250_s01,ins_u_0250_003,{},v2.2.0-healthy +evt_000386,u_0237,signup_completed,2026-06-01T17:28:00Z,u_0237_s01,ins_u_0237_002,{},v2.2.0-healthy +evt_000387,u_0250,error_shown,2026-06-01T17:28:00Z,u_0250_s01,ins_u_0250_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_000388,u_0685,onboarding_completed,2026-06-01T17:28:00Z,u_0685_s01,ins_u_0685_006,"{""completed_at"": ""2026-06-01T17:20:00Z""}",v2.2.0-healthy +evt_000389,u_0250,onboarding_step_viewed,2026-06-01T17:32:00Z,u_0250_s01,ins_u_0250_005,{},v2.2.0-healthy +evt_000390,u_0528,feature_used,2026-06-01T17:34:00Z,u_0528_s01,ins_u_0528_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000391,u_0237,profile_saved,2026-06-01T17:35:00Z,u_0237_s01,ins_u_0237_003,{},v2.2.0-healthy +evt_000392,u_0237,onboarding_step_viewed,2026-06-01T17:38:00Z,u_0237_s01,ins_u_0237_004,{},v2.2.0-healthy +evt_000393,u_0250,feature_used,2026-06-01T17:40:00Z,u_0250_s01,ins_u_0250_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_000394,u_0243,feature_used,2026-06-01T17:47:00Z,u_0243_s01,ins_u_0243_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000395,u_0528,onboarding_completed,2026-06-01T17:52:00Z,u_0528_s01,ins_u_0528_006,"{""completed_at"": ""2026-06-01T17:49:00Z""}",v2.2.0-healthy +evt_000396,u_0638,activation_completed,2026-06-01T17:53:00Z,u_0638_s01,ins_u_0638_005,{},v2.2.0-healthy +evt_000397,u_0639,signup_started,2026-06-01T17:59:00Z,u_0639_s01,ins_u_0639_001,{},v2.2.0-healthy +evt_000398,u_0639,signup_completed,2026-06-01T18:00:00Z,u_0639_s01,ins_u_0639_002,{},v2.2.0-healthy +evt_000399,u_0032,signup_started,2026-06-01T18:01:00Z,u_0032_s01,ins_u_0032_001,{},v2.2.0-healthy +evt_000400,u_0047,signup_started,2026-06-01T18:01:00Z,u_0047_s01,ins_u_0047_001,{},v2.2.0-healthy +evt_000401,u_0237,onboarding_completed,2026-06-01T18:01:00Z,u_0237_s01,ins_u_0237_005,"{""completed_at"": ""2026-06-01T18:09:00Z""}",v2.2.0-healthy +evt_000402,u_0243,onboarding_completed,2026-06-01T18:02:00Z,u_0243_s01,ins_u_0243_006,"{""completed_at"": ""2026-06-01T18:03:00Z""}",v2.2.0-healthy +evt_000403,u_0032,signup_completed,2026-06-01T18:03:00Z,u_0032_s01,ins_u_0032_002,{},v2.2.0-healthy +evt_000404,u_0250,onboarding_completed,2026-06-01T18:03:00Z,u_0250_s01,ins_u_0250_007,"{""completed_at"": ""2026-06-01T17:55:00Z""}",v2.2.0-healthy +evt_000405,u_0639,session_abandoned,2026-06-01T18:05:00Z,u_0639_s01,ins_u_0639_003,{},v2.2.0-healthy +evt_000406,u_0047,session_abandoned,2026-06-01T18:06:00Z,u_0047_s01,ins_u_0047_002,{},v2.2.0-healthy +evt_000407,u_0685,activation_completed,2026-06-01T18:08:00Z,u_0685_s01,ins_u_0685_007,{},v2.2.0-healthy +evt_000408,u_0032,profile_saved,2026-06-01T18:11:00Z,u_0032_s01,ins_u_0032_003,{},v2.2.0-healthy +evt_000409,u_0216,signup_started,2026-06-01T18:12:00Z,u_0216_s01,ins_u_0216_001,{},v2.2.0-healthy +evt_000410,u_0216,signup_completed,2026-06-01T18:14:00Z,u_0216_s01,ins_u_0216_002,{},v2.2.0-healthy +evt_000411,u_0528,activation_completed,2026-06-01T18:17:00Z,u_0528_s01,ins_u_0528_007,{},v2.2.0-healthy +evt_000412,u_0032,feature_used,2026-06-01T18:18:00Z,u_0032_s01,ins_u_0032_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_000413,u_0559,signup_started,2026-06-01T18:22:00Z,u_0559_s01,ins_u_0559_001,{},v2.2.0-healthy +evt_000414,u_0216,profile_saved,2026-06-01T18:24:00Z,u_0216_s01,ins_u_0216_003,{},v2.2.0-healthy +evt_000415,u_0559,session_abandoned,2026-06-01T18:28:00Z,u_0559_s01,ins_u_0559_002,{},v2.2.0-healthy +evt_000416,u_0613,signup_started,2026-06-01T18:29:00Z,u_0613_s01,ins_u_0613_001,{},v2.2.0-healthy +evt_000417,u_0216,onboarding_step_viewed,2026-06-01T18:30:00Z,u_0216_s01,ins_u_0216_004,{},v2.2.0-healthy +evt_000418,u_0613,signup_completed,2026-06-01T18:31:00Z,u_0613_s01,ins_u_0613_002,{},v2.2.0-healthy +evt_000419,u_0613,session_abandoned,2026-06-01T18:38:00Z,u_0613_s01,ins_u_0613_003,{},v2.2.0-healthy +evt_000420,u_0216,feature_used,2026-06-01T18:39:00Z,u_0216_s01,ins_u_0216_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000421,u_0411,signup_started,2026-06-01T18:51:00Z,u_0411_s01,ins_u_0411_001,{},v2.2.0-healthy +evt_000422,u_0360,signup_started,2026-06-01T18:52:00Z,u_0360_s01,ins_u_0360_001,{},v2.2.0-healthy +evt_000423,u_0237,activation_completed,2026-06-01T18:53:00Z,u_0237_s01,ins_u_0237_006,{},v2.2.0-healthy +evt_000424,u_0411,signup_completed,2026-06-01T18:53:00Z,u_0411_s01,ins_u_0411_002,{},v2.2.0-healthy +evt_000425,u_0431,signup_started,2026-06-01T18:54:00Z,u_0431_s01,ins_u_0431_001,{},v2.2.0-healthy +evt_000426,u_0032,onboarding_completed,2026-06-01T18:55:00Z,u_0032_s01,ins_u_0032_005,"{""completed_at"": ""2026-06-01T18:40:00Z""}",v2.2.0-healthy +evt_000427,u_0360,signup_completed,2026-06-01T18:55:00Z,u_0360_s01,ins_u_0360_002,{},v2.2.0-healthy +evt_000428,u_0411,session_abandoned,2026-06-01T18:57:00Z,u_0411_s01,ins_u_0411_003,{},v2.2.0-healthy +evt_000429,u_0032,activation_completed,2026-06-01T18:59:00Z,u_0032_s01,ins_u_0032_006,{},v2.2.0-healthy +evt_000430,u_0360,session_abandoned,2026-06-01T18:59:00Z,u_0360_s01,ins_u_0360_003,{},v2.2.0-healthy +evt_000431,u_0431,signup_completed,2026-06-01T19:00:00Z,u_0431_s01,ins_u_0431_002,{},v2.2.0-healthy +evt_000432,u_0216,onboarding_completed,2026-06-01T19:01:00Z,u_0216_s01,ins_u_0216_006,"{""completed_at"": ""2026-06-01T19:02:00Z""}",v2.2.0-healthy +evt_000433,u_0431,session_abandoned,2026-06-01T19:05:00Z,u_0431_s01,ins_u_0431_003,{},v2.2.0-healthy +evt_000434,u_0479,signup_started,2026-06-01T19:12:00Z,u_0479_s01,ins_u_0479_001,{},v2.2.0-healthy +evt_000435,u_0479,signup_completed,2026-06-01T19:16:00Z,u_0479_s01,ins_u_0479_002,{},v2.2.0-healthy +evt_000436,u_0479,profile_saved,2026-06-01T19:22:00Z,u_0479_s01,ins_u_0479_003,{},v2.2.0-healthy +evt_000437,u_0479,onboarding_step_viewed,2026-06-01T19:25:00Z,u_0479_s01,ins_u_0479_004,{},v2.2.0-healthy +evt_000438,u_0588,signup_started,2026-06-01T19:26:00Z,u_0588_s01,ins_u_0588_001,{},v2.2.0-healthy +evt_000439,u_0588,session_abandoned,2026-06-01T19:27:00Z,u_0588_s01,ins_u_0588_002,{},v2.2.0-healthy +evt_000440,u_0715,signup_started,2026-06-01T19:31:00Z,u_0715_s01,ins_u_0715_001,{},v2.2.0-healthy +evt_000441,u_0216,activation_completed,2026-06-01T19:36:00Z,u_0216_s01,ins_u_0216_007,{},v2.2.0-healthy +evt_000442,u_0715,session_abandoned,2026-06-01T19:37:00Z,u_0715_s01,ins_u_0715_002,{},v2.2.0-healthy +evt_000443,u_0557,signup_started,2026-06-01T19:40:00Z,u_0557_s01,ins_u_0557_001,{},v2.2.0-healthy +evt_000444,u_0479,feature_used,2026-06-01T19:43:00Z,u_0479_s01,ins_u_0479_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000445,u_0557,signup_completed,2026-06-01T19:43:00Z,u_0557_s01,ins_u_0557_002,{},v2.2.0-healthy +evt_000446,u_0557,profile_saved,2026-06-01T19:46:00Z,u_0557_s01,ins_u_0557_003,{},v2.2.0-healthy +evt_000447,u_0741,signup_started,2026-06-01T19:46:00Z,u_0741_s01,ins_u_0741_001,{},v2.2.0-healthy +evt_000448,u_0557,onboarding_step_viewed,2026-06-01T19:48:00Z,u_0557_s01,ins_u_0557_004,{},v2.2.0-healthy +evt_000449,u_0741,signup_completed,2026-06-01T19:48:00Z,u_0741_s01,ins_u_0741_002,{},v2.2.0-healthy +evt_000450,u_0741,profile_saved,2026-06-01T19:53:00Z,u_0741_s01,ins_u_0741_003,{},v2.2.0-healthy +evt_000451,u_0557,feature_used,2026-06-01T19:55:00Z,u_0557_s01,ins_u_0557_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000452,u_0201,signup_started,2026-06-01T19:58:00Z,u_0201_s01,ins_u_0201_001,{},v2.2.0-healthy +evt_000453,u_0741,onboarding_step_viewed,2026-06-01T19:58:00Z,u_0741_s01,ins_u_0741_004,{},v2.2.0-healthy +evt_000454,u_0201,signup_completed,2026-06-01T20:00:00Z,u_0201_s01,ins_u_0201_002,{},v2.2.0-healthy +evt_000455,u_0713,signup_started,2026-06-01T20:00:00Z,u_0713_s01,ins_u_0713_001,{},v2.2.0-healthy +evt_000456,u_0713,signup_completed,2026-06-01T20:03:00Z,u_0713_s01,ins_u_0713_002,{},v2.2.0-healthy +evt_000457,u_0479,onboarding_completed,2026-06-01T20:06:00Z,u_0479_s01,ins_u_0479_006,"{""completed_at"": ""2026-06-01T19:56:00Z""}",v2.2.0-healthy +evt_000458,u_0445,signup_started,2026-06-01T20:07:00Z,u_0445_s01,ins_u_0445_001,{},v2.2.0-healthy +evt_000459,u_0713,profile_saved,2026-06-01T20:08:00Z,u_0713_s01,ins_u_0713_003,{},v2.2.0-healthy +evt_000460,u_0201,profile_saved,2026-06-01T20:09:00Z,u_0201_s01,ins_u_0201_003,{},v2.2.0-healthy +evt_000461,u_0059,signup_started,2026-06-01T20:11:00Z,u_0059_s01,ins_u_0059_001,{},v2.2.0-healthy +evt_000462,u_0201,onboarding_step_viewed,2026-06-01T20:12:00Z,u_0201_s01,ins_u_0201_004,{},v2.2.0-healthy +evt_000463,u_0741,feature_used,2026-06-01T20:13:00Z,u_0741_s01,ins_u_0741_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000464,u_0713,onboarding_step_viewed,2026-06-01T20:14:00Z,u_0713_s01,ins_u_0713_004,{},v2.2.0-healthy +evt_000465,u_0445,signup_completed,2026-06-01T20:15:00Z,u_0445_s01,ins_u_0445_002,{},v2.2.0-healthy +evt_000466,u_0059,session_abandoned,2026-06-01T20:17:00Z,u_0059_s01,ins_u_0059_002,{},v2.2.0-healthy +evt_000467,u_0347,signup_started,2026-06-01T20:17:00Z,u_0347_s01,ins_u_0347_001,{},v2.2.0-healthy +evt_000468,u_0445,profile_saved,2026-06-01T20:21:00Z,u_0445_s01,ins_u_0445_003,{},v2.2.0-healthy +evt_000469,u_0347,signup_completed,2026-06-01T20:22:00Z,u_0347_s01,ins_u_0347_002,{},v2.2.0-healthy +evt_000470,u_0445,onboarding_step_viewed,2026-06-01T20:27:00Z,u_0445_s01,ins_u_0445_004,{},v2.2.0-healthy +evt_000471,u_0347,profile_saved,2026-06-01T20:28:00Z,u_0347_s01,ins_u_0347_003,{},v2.2.0-healthy +evt_000472,u_0557,onboarding_completed,2026-06-01T20:29:00Z,u_0557_s01,ins_u_0557_006,"{""completed_at"": ""2026-06-01T20:18:00Z""}",v2.2.0-healthy +evt_000473,u_0741,onboarding_completed,2026-06-01T20:35:00Z,u_0741_s01,ins_u_0741_006,"{""completed_at"": ""2026-06-01T20:24:00Z""}",v2.2.0-healthy +evt_000474,u_0666,signup_started,2026-06-01T20:37:00Z,u_0666_s01,ins_u_0666_001,{},v2.2.0-healthy +evt_000475,u_0118,signup_started,2026-06-01T20:41:00Z,u_0118_s01,ins_u_0118_001,{},v2.2.0-healthy +evt_000476,u_0666,signup_completed,2026-06-01T20:41:00Z,u_0666_s01,ins_u_0666_002,{},v2.2.0-healthy +evt_000477,u_0480,signup_started,2026-06-01T20:45:00Z,u_0480_s01,ins_u_0480_001,{},v2.2.0-healthy +evt_000478,u_0118,signup_completed,2026-06-01T20:46:00Z,u_0118_s01,ins_u_0118_002,{},v2.2.0-healthy +evt_000479,u_0201,onboarding_completed,2026-06-01T20:47:00Z,u_0201_s01,ins_u_0201_005,"{""completed_at"": ""2026-06-01T20:43:00Z""}",v2.2.0-healthy +evt_000480,u_0480,signup_completed,2026-06-01T20:47:00Z,u_0480_s01,ins_u_0480_002,{},v2.2.0-healthy +evt_000481,u_0118,profile_saved,2026-06-01T20:49:00Z,u_0118_s01,ins_u_0118_003,{},v2.2.0-healthy +evt_000482,u_0557,activation_completed,2026-06-01T20:49:00Z,u_0557_s01,ins_u_0557_007,{},v2.2.0-healthy +evt_000483,u_0666,session_abandoned,2026-06-01T20:50:00Z,u_0666_s01,ins_u_0666_003,{},v2.2.0-healthy +evt_000484,u_0118,onboarding_step_viewed,2026-06-01T20:55:00Z,u_0118_s01,ins_u_0118_004,{},v2.2.0-healthy +evt_000485,u_0480,profile_saved,2026-06-01T20:56:00Z,u_0480_s01,ins_u_0480_003,{},v2.2.0-healthy +evt_000486,u_0445,onboarding_completed,2026-06-01T20:57:00Z,u_0445_s01,ins_u_0445_005,"{""completed_at"": ""2026-06-01T20:57:00Z""}",v2.2.0-healthy +evt_000487,u_0480,onboarding_step_viewed,2026-06-01T20:59:00Z,u_0480_s01,ins_u_0480_004,{},v2.2.0-healthy +evt_000488,u_0118,feature_used,2026-06-01T21:04:00Z,u_0118_s01,ins_u_0118_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000489,u_0347,onboarding_completed,2026-06-01T21:10:00Z,u_0347_s01,ins_u_0347_004,"{""completed_at"": ""2026-06-01T20:55:00Z""}",v2.2.0-healthy +evt_000490,u_0480,onboarding_completed,2026-06-01T21:22:00Z,u_0480_s01,ins_u_0480_005,"{""completed_at"": ""2026-06-01T21:29:00Z""}",v2.2.0-healthy +evt_000491,u_0201,activation_completed,2026-06-01T21:25:00Z,u_0201_s01,ins_u_0201_006,{},v2.2.0-healthy +evt_000492,u_0118,onboarding_completed,2026-06-01T21:29:00Z,u_0118_s01,ins_u_0118_006,"{""completed_at"": ""2026-06-01T21:26:00Z""}",v2.2.0-healthy +evt_000493,u_0445,activation_completed,2026-06-01T21:41:00Z,u_0445_s01,ins_u_0445_006,{},v2.2.0-healthy +evt_000494,u_0347,activation_completed,2026-06-01T21:46:00Z,u_0347_s01,ins_u_0347_005,{},v2.2.0-healthy +evt_000495,u_0480,activation_completed,2026-06-01T22:11:00Z,u_0480_s01,ins_u_0480_006,{},v2.2.0-healthy +evt_000496,u_0704,signup_started,2026-06-02T08:01:00Z,u_0704_s01,ins_u_0704_001,{},v2.2.0-healthy +evt_000497,u_0310,signup_started,2026-06-02T08:02:00Z,u_0310_s01,ins_u_0310_001,{},v2.2.0-healthy +evt_000498,u_0310,signup_completed,2026-06-02T08:04:00Z,u_0310_s01,ins_u_0310_002,{},v2.2.0-healthy +evt_000499,u_0310,profile_saved,2026-06-02T08:06:00Z,u_0310_s01,ins_u_0310_003,{},v2.2.0-healthy +evt_000500,u_0704,signup_completed,2026-06-02T08:08:00Z,u_0704_s01,ins_u_0704_002,{},v2.2.0-healthy +evt_000501,u_0310,onboarding_step_viewed,2026-06-02T08:09:00Z,u_0310_s01,ins_u_0310_004,{},v2.2.0-healthy +evt_000502,u_0704,profile_saved,2026-06-02T08:11:00Z,u_0704_s01,ins_u_0704_003,{},v2.2.0-healthy +evt_000503,u_0682,signup_started,2026-06-02T08:13:00Z,u_0682_s01,ins_u_0682_001,{},v2.2.0-healthy +evt_000504,u_0704,onboarding_step_viewed,2026-06-02T08:14:00Z,u_0704_s01,ins_u_0704_004,{},v2.2.0-healthy +evt_000505,u_0309,signup_started,2026-06-02T08:16:00Z,u_0309_s01,ins_u_0309_001,{},v2.2.0-healthy +evt_000506,u_0682,signup_completed,2026-06-02T08:16:00Z,u_0682_s01,ins_u_0682_002,{},v2.2.0-healthy +evt_000507,u_0310,feature_used,2026-06-02T08:18:00Z,u_0310_s01,ins_u_0310_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000508,u_0704,feature_used,2026-06-02T08:21:00Z,u_0704_s01,ins_u_0704_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000509,u_0309,signup_completed,2026-06-02T08:22:00Z,u_0309_s01,ins_u_0309_002,{},v2.2.0-healthy +evt_000510,u_0682,session_abandoned,2026-06-02T08:22:00Z,u_0682_s01,ins_u_0682_003,{},v2.2.0-healthy +evt_000511,u_0309,profile_saved,2026-06-02T08:26:00Z,u_0309_s01,ins_u_0309_003,{},v2.2.0-healthy +evt_000512,u_0412,signup_started,2026-06-02T08:28:00Z,u_0412_s01,ins_u_0412_001,{},v2.2.0-healthy +evt_000513,u_0309,onboarding_step_viewed,2026-06-02T08:31:00Z,u_0309_s01,ins_u_0309_004,{},v2.2.0-healthy +evt_000514,u_0412,signup_completed,2026-06-02T08:32:00Z,u_0412_s01,ins_u_0412_002,{},v2.2.0-healthy +evt_000515,u_0309,feature_used,2026-06-02T08:34:00Z,u_0309_s01,ins_u_0309_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000516,u_0091,signup_started,2026-06-02T08:37:00Z,u_0091_s01,ins_u_0091_001,{},v2.2.0-healthy +evt_000517,u_0412,profile_saved,2026-06-02T08:37:00Z,u_0412_s01,ins_u_0412_003,{},v2.2.0-healthy +evt_000518,u_0412,onboarding_step_viewed,2026-06-02T08:42:00Z,u_0412_s01,ins_u_0412_004,{},v2.2.0-healthy +evt_000519,u_0091,signup_completed,2026-06-02T08:43:00Z,u_0091_s01,ins_u_0091_002,{},v2.2.0-healthy +evt_000520,u_0412,feature_used,2026-06-02T08:45:00Z,u_0412_s01,ins_u_0412_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000521,u_0704,onboarding_completed,2026-06-02T08:45:00Z,u_0704_s01,ins_u_0704_006,"{""completed_at"": ""2026-06-02T08:46:00Z""}",v2.2.0-healthy +evt_000522,u_0091,profile_saved,2026-06-02T08:49:00Z,u_0091_s01,ins_u_0091_003,{},v2.2.0-healthy +evt_000523,u_0091,error_shown,2026-06-02T08:50:00Z,u_0091_s01,ins_u_0091_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_000524,u_0310,onboarding_completed,2026-06-02T08:50:00Z,u_0310_s01,ins_u_0310_006,"{""completed_at"": ""2026-06-02T08:34:00Z""}",v2.2.0-healthy +evt_000525,u_0091,onboarding_step_viewed,2026-06-02T08:54:00Z,u_0091_s01,ins_u_0091_005,{},v2.2.0-healthy +evt_000526,u_0420,signup_started,2026-06-02T09:02:00Z,u_0420_s01,ins_u_0420_001,{},v2.2.0-healthy +evt_000527,u_0626,signup_started,2026-06-02T09:02:00Z,u_0626_s01,ins_u_0626_001,{},v2.2.0-healthy +evt_000528,u_0749,signup_started,2026-06-02T09:04:00Z,u_0749_s01,ins_u_0749_001,{},v2.2.0-healthy +evt_000529,u_0704,activation_completed,2026-06-02T09:05:00Z,u_0704_s01,ins_u_0704_007,{},v2.2.0-healthy +evt_000530,u_0449,signup_started,2026-06-02T09:08:00Z,u_0449_s01,ins_u_0449_001,{},v2.2.0-healthy +evt_000531,u_0626,signup_completed,2026-06-02T09:08:00Z,u_0626_s01,ins_u_0626_002,{},v2.2.0-healthy +evt_000532,u_0230,signup_started,2026-06-02T09:09:00Z,u_0230_s01,ins_u_0230_001,{},v2.2.0-healthy +evt_000533,u_0371,signup_started,2026-06-02T09:09:00Z,u_0371_s01,ins_u_0371_001,{},v2.2.0-healthy +evt_000534,u_0309,onboarding_completed,2026-06-02T09:10:00Z,u_0309_s01,ins_u_0309_006,"{""completed_at"": ""2026-06-02T08:57:00Z""}",v2.2.0-healthy +evt_000535,u_0371,signup_completed,2026-06-02T09:10:00Z,u_0371_s01,ins_u_0371_002,{},v2.2.0-healthy +evt_000536,u_0420,signup_completed,2026-06-02T09:10:00Z,u_0420_s01,ins_u_0420_002,{},v2.2.0-healthy +evt_000537,u_0749,signup_completed,2026-06-02T09:10:00Z,u_0749_s01,ins_u_0749_002,{},v2.2.0-healthy +evt_000538,u_0420,profile_saved,2026-06-02T09:12:00Z,u_0420_s01,ins_u_0420_003,{},v2.2.0-healthy +evt_000539,u_0449,signup_completed,2026-06-02T09:14:00Z,u_0449_s01,ins_u_0449_002,{},v2.2.0-healthy +evt_000540,u_0371,profile_saved,2026-06-02T09:15:00Z,u_0371_s01,ins_u_0371_003,{},v2.2.0-healthy +evt_000541,u_0626,profile_saved,2026-06-02T09:15:00Z,u_0626_s01,ins_u_0626_003,{},v2.2.0-healthy +evt_000542,u_0420,onboarding_step_viewed,2026-06-02T09:16:00Z,u_0420_s01,ins_u_0420_004,{},v2.2.0-healthy +evt_000543,u_0230,signup_completed,2026-06-02T09:17:00Z,u_0230_s01,ins_u_0230_002,{},v2.2.0-healthy +evt_000544,u_0626,onboarding_step_viewed,2026-06-02T09:18:00Z,u_0626_s01,ins_u_0626_004,{},v2.2.0-healthy +evt_000545,u_0449,session_abandoned,2026-06-02T09:19:00Z,u_0449_s01,ins_u_0449_003,{},v2.2.0-healthy +evt_000546,u_0749,session_abandoned,2026-06-02T09:19:00Z,u_0749_s01,ins_u_0749_003,{},v2.2.0-healthy +evt_000547,u_0010,signup_started,2026-06-02T09:20:00Z,u_0010_s01,ins_u_0010_001,{},v2.2.0-healthy +evt_000548,u_0412,onboarding_completed,2026-06-02T09:20:00Z,u_0412_s01,ins_u_0412_006,"{""completed_at"": ""2026-06-02T09:08:00Z""}",v2.2.0-healthy +evt_000549,u_0371,onboarding_step_viewed,2026-06-02T09:21:00Z,u_0371_s01,ins_u_0371_004,{},v2.2.0-healthy +evt_000550,u_0010,signup_completed,2026-06-02T09:22:00Z,u_0010_s01,ins_u_0010_002,{},v2.2.0-healthy +evt_000551,u_0048,signup_started,2026-06-02T09:23:00Z,u_0048_s01,ins_u_0048_001,{},v2.2.0-healthy +evt_000552,u_0230,profile_saved,2026-06-02T09:23:00Z,u_0230_s01,ins_u_0230_003,{},v2.2.0-healthy +evt_000553,u_0230,onboarding_step_viewed,2026-06-02T09:25:00Z,u_0230_s01,ins_u_0230_004,{},v2.2.0-healthy +evt_000554,u_0091,onboarding_completed,2026-06-02T09:26:00Z,u_0091_s01,ins_u_0091_006,"{""completed_at"": ""2026-06-02T09:21:00Z""}",v2.2.0-healthy +evt_000555,u_0626,feature_used,2026-06-02T09:27:00Z,u_0626_s01,ins_u_0626_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000556,u_0048,signup_completed,2026-06-02T09:28:00Z,u_0048_s01,ins_u_0048_002,{},v2.2.0-healthy +evt_000557,u_0309,activation_completed,2026-06-02T09:30:00Z,u_0309_s01,ins_u_0309_007,{},v2.2.0-healthy +evt_000558,u_0010,session_abandoned,2026-06-02T09:31:00Z,u_0010_s01,ins_u_0010_003,{},v2.2.0-healthy +evt_000559,u_0420,feature_used,2026-06-02T09:31:00Z,u_0420_s01,ins_u_0420_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000560,u_0030,signup_started,2026-06-02T09:32:00Z,u_0030_s01,ins_u_0030_001,{},v2.2.0-healthy +evt_000561,u_0115,signup_started,2026-06-02T09:32:00Z,u_0115_s01,ins_u_0115_001,{},v2.2.0-healthy +evt_000562,u_0030,signup_completed,2026-06-02T09:35:00Z,u_0030_s01,ins_u_0030_002,{},v2.2.0-healthy +evt_000563,u_0115,signup_completed,2026-06-02T09:35:00Z,u_0115_s01,ins_u_0115_002,{},v2.2.0-healthy +evt_000564,u_0030,profile_saved,2026-06-02T09:37:00Z,u_0030_s01,ins_u_0030_003,{},v2.2.0-healthy +evt_000565,u_0068,signup_started,2026-06-02T09:37:00Z,u_0068_s01,ins_u_0068_001,{},v2.2.0-healthy +evt_000566,u_0048,profile_saved,2026-06-02T09:38:00Z,u_0048_s01,ins_u_0048_003,{},v2.2.0-healthy +evt_000567,u_0030,onboarding_step_viewed,2026-06-02T09:39:00Z,u_0030_s01,ins_u_0030_004,{},v2.2.0-healthy +evt_000568,u_0115,profile_saved,2026-06-02T09:39:00Z,u_0115_s01,ins_u_0115_003,{},v2.2.0-healthy +evt_000569,u_0048,onboarding_step_viewed,2026-06-02T09:42:00Z,u_0048_s01,ins_u_0048_004,{},v2.2.0-healthy +evt_000570,u_0068,signup_completed,2026-06-02T09:44:00Z,u_0068_s01,ins_u_0068_002,{},v2.2.0-healthy +evt_000571,u_0626,onboarding_completed,2026-06-02T09:45:00Z,u_0626_s01,ins_u_0626_006,"{""completed_at"": ""2026-06-02T09:52:00Z""}",v2.2.0-healthy +evt_000572,u_0230,feature_used,2026-06-02T09:46:00Z,u_0230_s01,ins_u_0230_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000573,u_0371,onboarding_completed,2026-06-02T09:46:00Z,u_0371_s01,ins_u_0371_005,"{""completed_at"": ""2026-06-02T09:46:00Z""}",v2.2.0-healthy +evt_000574,u_0025,signup_started,2026-06-02T09:47:00Z,u_0025_s01,ins_u_0025_001,{},v2.2.0-healthy +evt_000575,u_0030,feature_used,2026-06-02T09:47:00Z,u_0030_s01,ins_u_0030_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000576,u_0068,profile_saved,2026-06-02T09:48:00Z,u_0068_s01,ins_u_0068_003,{},v2.2.0-healthy +evt_000577,u_0048,feature_used,2026-06-02T09:50:00Z,u_0048_s01,ins_u_0048_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000578,u_0230,onboarding_completed,2026-06-02T09:50:00Z,u_0230_s01,ins_u_0230_006,"{""completed_at"": ""2026-06-02T09:53:00Z""}",v2.2.0-healthy +evt_000579,u_0025,signup_completed,2026-06-02T09:51:00Z,u_0025_s01,ins_u_0025_002,{},v2.2.0-healthy +evt_000580,u_0068,onboarding_step_viewed,2026-06-02T09:51:00Z,u_0068_s01,ins_u_0068_004,{},v2.2.0-healthy +evt_000581,u_0025,profile_saved,2026-06-02T10:00:00Z,u_0025_s01,ins_u_0025_003,{},v2.2.0-healthy +evt_000582,u_0760,signup_started,2026-06-02T10:00:00Z,u_0760_s01,ins_u_0760_001,{},v2.2.0-healthy +evt_000583,u_0760,session_abandoned,2026-06-02T10:01:00Z,u_0760_s01,ins_u_0760_002,{},v2.2.0-healthy +evt_000584,u_0371,activation_completed,2026-06-02T10:02:00Z,u_0371_s01,ins_u_0371_006,{},v2.2.0-healthy +evt_000585,u_0115,feature_used,2026-06-02T10:03:00Z,u_0115_s01,ins_u_0115_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000586,u_0520,signup_started,2026-06-02T10:04:00Z,u_0520_s01,ins_u_0520_001,{},v2.2.0-healthy +evt_000587,u_0520,signup_completed,2026-06-02T10:05:00Z,u_0520_s01,ins_u_0520_002,{},v2.2.0-healthy +evt_000588,u_0025,onboarding_step_viewed,2026-06-02T10:06:00Z,u_0025_s01,ins_u_0025_004,{},v2.2.0-healthy +evt_000589,u_0520,profile_saved,2026-06-02T10:08:00Z,u_0520_s01,ins_u_0520_003,{},v2.2.0-healthy +evt_000590,u_0048,onboarding_completed,2026-06-02T10:11:00Z,u_0048_s01,ins_u_0048_006,"{""completed_at"": ""2026-06-02T10:12:00Z""}",v2.2.0-healthy +evt_000591,u_0068,feature_used,2026-06-02T10:11:00Z,u_0068_s01,ins_u_0068_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000592,u_0520,onboarding_step_viewed,2026-06-02T10:11:00Z,u_0520_s01,ins_u_0520_004,{},v2.2.0-healthy +evt_000593,u_0030,onboarding_completed,2026-06-02T10:12:00Z,u_0030_s01,ins_u_0030_006,"{""completed_at"": ""2026-06-02T10:07:00Z""}",v2.2.0-healthy +evt_000594,u_0731,signup_started,2026-06-02T10:15:00Z,u_0731_s01,ins_u_0731_001,{},v2.2.0-healthy +evt_000595,u_0159,signup_started,2026-06-02T10:17:00Z,u_0159_s01,ins_u_0159_001,{},v2.2.0-healthy +evt_000596,u_0731,signup_completed,2026-06-02T10:17:00Z,u_0731_s01,ins_u_0731_002,{},v2.2.0-healthy +evt_000597,u_0159,signup_completed,2026-06-02T10:21:00Z,u_0159_s01,ins_u_0159_002,{},v2.2.0-healthy +evt_000598,u_0509,signup_started,2026-06-02T10:21:00Z,u_0509_s01,ins_u_0509_001,{},v2.2.0-healthy +evt_000599,u_0485,signup_started,2026-06-02T10:22:00Z,u_0485_s01,ins_u_0485_001,{},v2.2.0-healthy +evt_000600,u_0731,session_abandoned,2026-06-02T10:25:00Z,u_0731_s01,ins_u_0731_003,{},v2.2.0-healthy +evt_000601,u_0509,session_abandoned,2026-06-02T10:26:00Z,u_0509_s01,ins_u_0509_002,{},v2.2.0-healthy +evt_000602,u_0485,session_abandoned,2026-06-02T10:29:00Z,u_0485_s01,ins_u_0485_002,{},v2.2.0-healthy +evt_000603,u_0264,signup_started,2026-06-02T10:30:00Z,u_0264_s01,ins_u_0264_001,{},v2.2.0-healthy +evt_000604,u_0159,profile_saved,2026-06-02T10:31:00Z,u_0159_s01,ins_u_0159_003,{},v2.2.0-healthy +evt_000605,u_0068,onboarding_completed,2026-06-02T10:33:00Z,u_0068_s01,ins_u_0068_006,"{""completed_at"": ""2026-06-02T10:25:00Z""}",v2.2.0-healthy +evt_000606,u_0267,signup_started,2026-06-02T10:33:00Z,u_0267_s01,ins_u_0267_001,{},v2.2.0-healthy +evt_000607,u_0159,onboarding_step_viewed,2026-06-02T10:35:00Z,u_0159_s01,ins_u_0159_004,{},v2.2.0-healthy +evt_000608,u_0626,activation_completed,2026-06-02T10:35:00Z,u_0626_s01,ins_u_0626_007,{},v2.2.0-healthy +evt_000609,u_0264,signup_completed,2026-06-02T10:37:00Z,u_0264_s01,ins_u_0264_002,{},v2.2.0-healthy +evt_000610,u_0319,signup_started,2026-06-02T10:38:00Z,u_0319_s01,ins_u_0319_001,{},v2.2.0-healthy +evt_000611,u_0264,profile_saved,2026-06-02T10:40:00Z,u_0264_s01,ins_u_0264_003,{},v2.2.0-healthy +evt_000612,u_0319,signup_completed,2026-06-02T10:40:00Z,u_0319_s01,ins_u_0319_002,{},v2.2.0-healthy +evt_000613,u_0267,signup_completed,2026-06-02T10:41:00Z,u_0267_s01,ins_u_0267_002,{},v2.2.0-healthy +evt_000614,u_0520,onboarding_completed,2026-06-02T10:43:00Z,u_0520_s01,ins_u_0520_005,"{""completed_at"": ""2026-06-02T10:34:00Z""}",v2.2.0-healthy +evt_000615,u_0264,onboarding_step_viewed,2026-06-02T10:45:00Z,u_0264_s01,ins_u_0264_004,{},v2.2.0-healthy +evt_000616,u_0068,activation_completed,2026-06-02T10:46:00Z,u_0068_s01,ins_u_0068_007,{},v2.2.0-healthy +evt_000617,u_0267,profile_saved,2026-06-02T10:46:00Z,u_0267_s01,ins_u_0267_003,{},v2.2.0-healthy +evt_000618,u_0319,profile_saved,2026-06-02T10:49:00Z,u_0319_s01,ins_u_0319_003,{},v2.2.0-healthy +evt_000619,u_0259,signup_started,2026-06-02T10:51:00Z,u_0259_s01,ins_u_0259_001,{},v2.2.0-healthy +evt_000620,u_0267,onboarding_step_viewed,2026-06-02T10:52:00Z,u_0267_s01,ins_u_0267_004,{},v2.2.0-healthy +evt_000621,u_0319,onboarding_step_viewed,2026-06-02T10:52:00Z,u_0319_s01,ins_u_0319_004,{},v2.2.0-healthy +evt_000622,u_0136,signup_started,2026-06-02T10:55:00Z,u_0136_s01,ins_u_0136_001,{},v2.2.0-healthy +evt_000623,u_0159,feature_used,2026-06-02T10:56:00Z,u_0159_s01,ins_u_0159_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000624,u_0782,signup_started,2026-06-02T10:58:00Z,u_0782_s01,ins_u_0782_001,{},v2.2.0-healthy +evt_000625,u_0159,onboarding_completed,2026-06-02T10:59:00Z,u_0159_s01,ins_u_0159_006,"{""completed_at"": ""2026-06-02T11:01:00Z""}",v2.2.0-healthy +evt_000626,u_0259,signup_completed,2026-06-02T10:59:00Z,u_0259_s01,ins_u_0259_002,{},v2.2.0-healthy +evt_000627,u_0782,signup_completed,2026-06-02T10:59:00Z,u_0782_s01,ins_u_0782_002,{},v2.2.0-healthy +evt_000628,u_0035,signup_started,2026-06-02T11:00:00Z,u_0035_s01,ins_u_0035_001,{},v2.2.0-healthy +evt_000629,u_0400,signup_started,2026-06-02T11:01:00Z,u_0400_s01,ins_u_0400_001,{},v2.2.0-healthy +evt_000630,u_0136,signup_completed,2026-06-02T11:02:00Z,u_0136_s01,ins_u_0136_002,{},v2.2.0-healthy +evt_000631,u_0400,signup_completed,2026-06-02T11:02:00Z,u_0400_s01,ins_u_0400_002,{},v2.2.0-healthy +evt_000632,u_0753,signup_started,2026-06-02T11:03:00Z,u_0753_s01,ins_u_0753_001,{},v2.2.0-healthy +evt_000633,u_0264,feature_used,2026-06-02T11:05:00Z,u_0264_s01,ins_u_0264_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000634,u_0267,feature_used,2026-06-02T11:06:00Z,u_0267_s01,ins_u_0267_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000635,u_0035,signup_completed,2026-06-02T11:07:00Z,u_0035_s01,ins_u_0035_002,{},v2.2.0-healthy +evt_000636,u_0264,onboarding_completed,2026-06-02T11:08:00Z,u_0264_s01,ins_u_0264_006,"{""completed_at"": ""2026-06-02T11:15:00Z""}",v2.2.0-healthy +evt_000637,u_0136,profile_saved,2026-06-02T11:09:00Z,u_0136_s01,ins_u_0136_003,{},v2.2.0-healthy +evt_000638,u_0259,profile_saved,2026-06-02T11:09:00Z,u_0259_s01,ins_u_0259_003,{},v2.2.0-healthy +evt_000639,u_0319,feature_used,2026-06-02T11:09:00Z,u_0319_s01,ins_u_0319_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000640,u_0400,session_abandoned,2026-06-02T11:09:00Z,u_0400_s01,ins_u_0400_003,{},v2.2.0-healthy +evt_000641,u_0753,signup_completed,2026-06-02T11:09:00Z,u_0753_s01,ins_u_0753_002,{},v2.2.0-healthy +evt_000642,u_0782,profile_saved,2026-06-02T11:09:00Z,u_0782_s01,ins_u_0782_003,{},v2.2.0-healthy +evt_000643,u_0035,profile_saved,2026-06-02T11:11:00Z,u_0035_s01,ins_u_0035_003,{},v2.2.0-healthy +evt_000644,u_0782,onboarding_step_viewed,2026-06-02T11:12:00Z,u_0782_s01,ins_u_0782_004,{},v2.2.0-healthy +evt_000645,u_0136,onboarding_step_viewed,2026-06-02T11:15:00Z,u_0136_s01,ins_u_0136_004,{},v2.2.0-healthy +evt_000646,u_0259,onboarding_step_viewed,2026-06-02T11:15:00Z,u_0259_s01,ins_u_0259_004,{},v2.2.0-healthy +evt_000647,u_0520,activation_completed,2026-06-02T11:15:00Z,u_0520_s01,ins_u_0520_006,{},v2.2.0-healthy +evt_000648,u_0035,onboarding_step_viewed,2026-06-02T11:16:00Z,u_0035_s01,ins_u_0035_004,{},v2.2.0-healthy +evt_000649,u_0108,signup_started,2026-06-02T11:16:00Z,u_0108_s01,ins_u_0108_001,{},v2.2.0-healthy +evt_000650,u_0753,profile_saved,2026-06-02T11:19:00Z,u_0753_s01,ins_u_0753_003,{},v2.2.0-healthy +evt_000651,u_0108,signup_completed,2026-06-02T11:21:00Z,u_0108_s01,ins_u_0108_002,{},v2.2.0-healthy +evt_000652,u_0753,onboarding_step_viewed,2026-06-02T11:21:00Z,u_0753_s01,ins_u_0753_004,{},v2.2.0-healthy +evt_000653,u_0319,onboarding_completed,2026-06-02T11:22:00Z,u_0319_s01,ins_u_0319_006,"{""completed_at"": ""2026-06-02T11:19:00Z""}",v2.2.0-healthy +evt_000654,u_0292,signup_started,2026-06-02T11:23:00Z,u_0292_s01,ins_u_0292_001,{},v2.2.0-healthy +evt_000655,u_0108,profile_saved,2026-06-02T11:27:00Z,u_0108_s01,ins_u_0108_003,{},v2.2.0-healthy +evt_000656,u_0292,signup_completed,2026-06-02T11:30:00Z,u_0292_s01,ins_u_0292_002,{},v2.2.0-healthy +evt_000657,u_0105,signup_started,2026-06-02T11:31:00Z,u_0105_s01,ins_u_0105_001,{},v2.2.0-healthy +evt_000658,u_0267,onboarding_completed,2026-06-02T11:31:00Z,u_0267_s01,ins_u_0267_006,"{""completed_at"": ""2026-06-02T11:14:00Z""}",v2.2.0-healthy +evt_000659,u_0105,signup_completed,2026-06-02T11:32:00Z,u_0105_s01,ins_u_0105_002,{},v2.2.0-healthy +evt_000660,u_0136,feature_used,2026-06-02T11:33:00Z,u_0136_s01,ins_u_0136_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000661,u_0725,signup_started,2026-06-02T11:33:00Z,u_0725_s01,ins_u_0725_001,{},v2.2.0-healthy +evt_000662,u_0782,feature_used,2026-06-02T11:34:00Z,u_0782_s01,ins_u_0782_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000663,u_0159,activation_completed,2026-06-02T11:35:00Z,u_0159_s01,ins_u_0159_007,{},v2.2.0-healthy +evt_000664,u_0725,signup_completed,2026-06-02T11:35:00Z,u_0725_s01,ins_u_0725_002,{},v2.2.0-healthy +evt_000665,u_0753,feature_used,2026-06-02T11:37:00Z,u_0753_s01,ins_u_0753_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000666,u_0292,session_abandoned,2026-06-02T11:38:00Z,u_0292_s01,ins_u_0292_003,{},v2.2.0-healthy +evt_000667,u_0586,signup_started,2026-06-02T11:38:00Z,u_0586_s01,ins_u_0586_001,{},v2.2.0-healthy +evt_000668,u_0586,session_abandoned,2026-06-02T11:39:00Z,u_0586_s01,ins_u_0586_002,{},v2.2.0-healthy +evt_000669,u_0105,session_abandoned,2026-06-02T11:40:00Z,u_0105_s01,ins_u_0105_003,{},v2.2.0-healthy +evt_000670,u_0259,onboarding_completed,2026-06-02T11:42:00Z,u_0259_s01,ins_u_0259_005,"{""completed_at"": ""2026-06-02T11:40:00Z""}",v2.2.0-healthy +evt_000671,u_0725,session_abandoned,2026-06-02T11:42:00Z,u_0725_s01,ins_u_0725_003,{},v2.2.0-healthy +evt_000672,u_0136,onboarding_completed,2026-06-02T11:45:00Z,u_0136_s01,ins_u_0136_006,"{""completed_at"": ""2026-06-02T11:48:00Z""}",v2.2.0-healthy +evt_000673,u_0576,signup_started,2026-06-02T11:45:00Z,u_0576_s01,ins_u_0576_001,{},v2.2.0-healthy +evt_000674,u_0035,onboarding_completed,2026-06-02T11:46:00Z,u_0035_s01,ins_u_0035_005,"{""completed_at"": ""2026-06-02T11:39:00Z""}",v2.2.0-healthy +evt_000675,u_0782,onboarding_completed,2026-06-02T11:47:00Z,u_0782_s01,ins_u_0782_006,"{""completed_at"": ""2026-06-02T11:38:00Z""}",v2.2.0-healthy +evt_000676,u_0382,signup_started,2026-06-02T11:50:00Z,u_0382_s01,ins_u_0382_001,{},v2.2.0-healthy +evt_000677,u_0576,signup_completed,2026-06-02T11:51:00Z,u_0576_s01,ins_u_0576_002,{},v2.2.0-healthy +evt_000678,u_0576,profile_saved,2026-06-02T11:57:00Z,u_0576_s01,ins_u_0576_003,{},v2.2.0-healthy +evt_000679,u_0382,signup_completed,2026-06-02T11:58:00Z,u_0382_s01,ins_u_0382_002,{},v2.2.0-healthy +evt_000680,u_0753,onboarding_completed,2026-06-02T12:00:00Z,u_0753_s01,ins_u_0753_006,"{""completed_at"": ""2026-06-02T11:57:00Z""}",v2.2.0-healthy +evt_000681,u_0259,activation_completed,2026-06-02T12:01:00Z,u_0259_s01,ins_u_0259_006,{},v2.2.0-healthy +evt_000682,u_0136,activation_completed,2026-06-02T12:02:00Z,u_0136_s01,ins_u_0136_007,{},v2.2.0-healthy +evt_000683,u_0350,signup_started,2026-06-02T12:02:00Z,u_0350_s01,ins_u_0350_001,{},v2.2.0-healthy +evt_000684,u_0576,onboarding_step_viewed,2026-06-02T12:02:00Z,u_0576_s01,ins_u_0576_004,{},v2.2.0-healthy +evt_000685,u_0382,profile_saved,2026-06-02T12:03:00Z,u_0382_s01,ins_u_0382_003,{},v2.2.0-healthy +evt_000686,u_0350,signup_completed,2026-06-02T12:05:00Z,u_0350_s01,ins_u_0350_002,{},v2.2.0-healthy +evt_000687,u_0242,signup_started,2026-06-02T12:07:00Z,u_0242_s01,ins_u_0242_001,{},v2.2.0-healthy +evt_000688,u_0242,session_abandoned,2026-06-02T12:08:00Z,u_0242_s01,ins_u_0242_002,{},v2.2.0-healthy +evt_000689,u_0108,onboarding_completed,2026-06-02T12:12:00Z,u_0108_s01,ins_u_0108_004,"{""completed_at"": ""2026-06-02T11:53:00Z""}",v2.2.0-healthy +evt_000690,u_0561,signup_started,2026-06-02T12:12:00Z,u_0561_s01,ins_u_0561_001,{},v2.2.0-healthy +evt_000691,u_0303,signup_started,2026-06-02T12:13:00Z,u_0303_s01,ins_u_0303_001,{},v2.2.0-healthy +evt_000692,u_0350,profile_saved,2026-06-02T12:14:00Z,u_0350_s01,ins_u_0350_003,{},v2.2.0-healthy +evt_000693,u_0303,signup_completed,2026-06-02T12:17:00Z,u_0303_s01,ins_u_0303_002,{},v2.2.0-healthy +evt_000694,u_0372,signup_started,2026-06-02T12:17:00Z,u_0372_s01,ins_u_0372_001,{},v2.2.0-healthy +evt_000695,u_0561,signup_completed,2026-06-02T12:19:00Z,u_0561_s01,ins_u_0561_002,{},v2.2.0-healthy +evt_000696,u_0350,onboarding_step_viewed,2026-06-02T12:20:00Z,u_0350_s01,ins_u_0350_004,{},v2.2.0-healthy +evt_000697,u_0382,feature_used,2026-06-02T12:20:00Z,u_0382_s01,ins_u_0382_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_000698,u_0601,signup_started,2026-06-02T12:20:00Z,u_0601_s01,ins_u_0601_001,{},v2.2.0-healthy +evt_000699,u_0576,feature_used,2026-06-02T12:21:00Z,u_0576_s01,ins_u_0576_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000700,u_0108,activation_completed,2026-06-02T12:22:00Z,u_0108_s01,ins_u_0108_005,{},v2.2.0-healthy +evt_000701,u_0601,signup_completed,2026-06-02T12:23:00Z,u_0601_s01,ins_u_0601_002,{},v2.2.0-healthy +evt_000702,u_0372,signup_completed,2026-06-02T12:24:00Z,u_0372_s01,ins_u_0372_002,{},v2.2.0-healthy +evt_000703,u_0303,profile_saved,2026-06-02T12:26:00Z,u_0303_s01,ins_u_0303_003,{},v2.2.0-healthy +evt_000704,u_0266,signup_started,2026-06-02T12:27:00Z,u_0266_s01,ins_u_0266_001,{},v2.2.0-healthy +evt_000705,u_0561,session_abandoned,2026-06-02T12:27:00Z,u_0561_s01,ins_u_0561_003,{},v2.2.0-healthy +evt_000706,u_0311,signup_started,2026-06-02T12:28:00Z,u_0311_s01,ins_u_0311_001,{},v2.2.0-healthy +evt_000707,u_0311,session_abandoned,2026-06-02T12:29:00Z,u_0311_s01,ins_u_0311_002,{},v2.2.0-healthy +evt_000708,u_0372,profile_saved,2026-06-02T12:29:00Z,u_0372_s01,ins_u_0372_003,{},v2.2.0-healthy +evt_000709,u_0782,activation_completed,2026-06-02T12:29:00Z,u_0782_s01,ins_u_0782_007,{},v2.2.0-healthy +evt_000710,u_0303,onboarding_step_viewed,2026-06-02T12:31:00Z,u_0303_s01,ins_u_0303_004,{},v2.2.0-healthy +evt_000711,u_0266,signup_completed,2026-06-02T12:32:00Z,u_0266_s01,ins_u_0266_002,{},v2.2.0-healthy +evt_000712,u_0601,session_abandoned,2026-06-02T12:32:00Z,u_0601_s01,ins_u_0601_003,{},v2.2.0-healthy +evt_000713,u_0303,feature_used,2026-06-02T12:34:00Z,u_0303_s01,ins_u_0303_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000714,u_0576,onboarding_completed,2026-06-02T12:34:00Z,u_0576_s01,ins_u_0576_006,"{""completed_at"": ""2026-06-02T12:31:00Z""}",v2.2.0-healthy +evt_000715,u_0266,session_abandoned,2026-06-02T12:39:00Z,u_0266_s01,ins_u_0266_003,{},v2.2.0-healthy +evt_000716,u_0350,onboarding_completed,2026-06-02T12:41:00Z,u_0350_s01,ins_u_0350_005,"{""completed_at"": ""2026-06-02T12:45:00Z""}",v2.2.0-healthy +evt_000717,u_0372,feature_used,2026-06-02T12:41:00Z,u_0372_s01,ins_u_0372_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_000718,u_0382,onboarding_completed,2026-06-02T12:44:00Z,u_0382_s01,ins_u_0382_005,"{""completed_at"": ""2026-06-02T12:36:00Z""}",v2.2.0-healthy +evt_000719,u_0366,signup_started,2026-06-02T12:53:00Z,u_0366_s01,ins_u_0366_001,{},v2.2.0-healthy +evt_000720,u_0303,onboarding_completed,2026-06-02T13:01:00Z,u_0303_s01,ins_u_0303_006,"{""completed_at"": ""2026-06-02T13:01:00Z""}",v2.2.0-healthy +evt_000721,u_0366,signup_completed,2026-06-02T13:01:00Z,u_0366_s01,ins_u_0366_002,{},v2.2.0-healthy +evt_000722,u_0581,signup_started,2026-06-02T13:04:00Z,u_0581_s01,ins_u_0581_001,{},v2.2.0-healthy +evt_000723,u_0581,signup_completed,2026-06-02T13:07:00Z,u_0581_s01,ins_u_0581_002,{},v2.2.0-healthy +evt_000724,u_0065,signup_started,2026-06-02T13:08:00Z,u_0065_s01,ins_u_0065_001,{},v2.2.0-healthy +evt_000725,u_0065,signup_completed,2026-06-02T13:09:00Z,u_0065_s01,ins_u_0065_002,{},v2.2.0-healthy +evt_000726,u_0344,signup_started,2026-06-02T13:09:00Z,u_0344_s01,ins_u_0344_001,{},v2.2.0-healthy +evt_000727,u_0716,signup_started,2026-06-02T13:09:00Z,u_0716_s01,ins_u_0716_001,{},v2.2.0-healthy +evt_000728,u_0366,session_abandoned,2026-06-02T13:10:00Z,u_0366_s01,ins_u_0366_003,{},v2.2.0-healthy +evt_000729,u_0576,activation_completed,2026-06-02T13:13:00Z,u_0576_s01,ins_u_0576_007,{},v2.2.0-healthy +evt_000730,u_0716,signup_completed,2026-06-02T13:13:00Z,u_0716_s01,ins_u_0716_002,{},v2.2.0-healthy +evt_000731,u_0065,session_abandoned,2026-06-02T13:14:00Z,u_0065_s01,ins_u_0065_003,{},v2.2.0-healthy +evt_000732,u_0344,signup_completed,2026-06-02T13:16:00Z,u_0344_s01,ins_u_0344_002,{},v2.2.0-healthy +evt_000733,u_0716,profile_saved,2026-06-02T13:16:00Z,u_0716_s01,ins_u_0716_003,{},v2.2.0-healthy +evt_000734,u_0778,signup_started,2026-06-02T13:16:00Z,u_0778_s01,ins_u_0778_001,{},v2.2.0-healthy +evt_000735,u_0581,profile_saved,2026-06-02T13:17:00Z,u_0581_s01,ins_u_0581_003,{},v2.2.0-healthy +evt_000736,u_0303,activation_completed,2026-06-02T13:18:00Z,u_0303_s01,ins_u_0303_007,{},v2.2.0-healthy +evt_000737,u_0350,activation_completed,2026-06-02T13:20:00Z,u_0350_s01,ins_u_0350_006,{},v2.2.0-healthy +evt_000738,u_0344,profile_saved,2026-06-02T13:21:00Z,u_0344_s01,ins_u_0344_003,{},v2.2.0-healthy +evt_000739,u_0372,activation_completed,2026-06-02T13:21:00Z,u_0372_s01,ins_u_0372_005,{},v2.2.0-healthy +evt_000740,u_0581,onboarding_step_viewed,2026-06-02T13:21:00Z,u_0581_s01,ins_u_0581_004,{},v2.2.0-healthy +evt_000741,u_0716,onboarding_step_viewed,2026-06-02T13:21:00Z,u_0716_s01,ins_u_0716_004,{},v2.2.0-healthy +evt_000742,u_0231,signup_started,2026-06-02T13:23:00Z,u_0231_s01,ins_u_0231_001,{},v2.2.0-healthy +evt_000743,u_0778,signup_completed,2026-06-02T13:23:00Z,u_0778_s01,ins_u_0778_002,{},v2.2.0-healthy +evt_000744,u_0180,signup_started,2026-06-02T13:24:00Z,u_0180_s01,ins_u_0180_001,{},v2.2.0-healthy +evt_000745,u_0344,onboarding_step_viewed,2026-06-02T13:24:00Z,u_0344_s01,ins_u_0344_004,{},v2.2.0-healthy +evt_000746,u_0716,feature_used,2026-06-02T13:24:00Z,u_0716_s01,ins_u_0716_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000747,u_0231,signup_completed,2026-06-02T13:28:00Z,u_0231_s01,ins_u_0231_002,{},v2.2.0-healthy +evt_000748,u_0778,profile_saved,2026-06-02T13:29:00Z,u_0778_s01,ins_u_0778_003,{},v2.2.0-healthy +evt_000749,u_0180,signup_completed,2026-06-02T13:30:00Z,u_0180_s01,ins_u_0180_002,{},v2.2.0-healthy +evt_000750,u_0155,signup_started,2026-06-02T13:32:00Z,u_0155_s01,ins_u_0155_001,{},v2.2.0-healthy +evt_000751,u_0180,profile_saved,2026-06-02T13:32:00Z,u_0180_s01,ins_u_0180_003,{},v2.2.0-healthy +evt_000752,u_0778,onboarding_step_viewed,2026-06-02T13:32:00Z,u_0778_s01,ins_u_0778_004,{},v2.2.0-healthy +evt_000753,u_0427,signup_started,2026-06-02T13:33:00Z,u_0427_s01,ins_u_0427_001,{},v2.2.0-healthy +evt_000754,u_0155,signup_completed,2026-06-02T13:35:00Z,u_0155_s01,ins_u_0155_002,{},v2.2.0-healthy +evt_000755,u_0427,signup_completed,2026-06-02T13:35:00Z,u_0427_s01,ins_u_0427_002,{},v2.2.0-healthy +evt_000756,u_0180,onboarding_step_viewed,2026-06-02T13:36:00Z,u_0180_s01,ins_u_0180_004,{},v2.2.0-healthy +evt_000757,u_0231,session_abandoned,2026-06-02T13:37:00Z,u_0231_s01,ins_u_0231_003,{},v2.2.0-healthy +evt_000758,u_0323,signup_started,2026-06-02T13:37:00Z,u_0323_s01,ins_u_0323_001,{},v2.2.0-healthy +evt_000759,u_0323,signup_completed,2026-06-02T13:38:00Z,u_0323_s01,ins_u_0323_002,{},v2.2.0-healthy +evt_000760,u_0257,signup_started,2026-06-02T13:40:00Z,u_0257_s01,ins_u_0257_001,{},v2.2.0-healthy +evt_000761,u_0286,signup_started,2026-06-02T13:40:00Z,u_0286_s01,ins_u_0286_001,{},v2.2.0-healthy +evt_000762,u_0155,profile_saved,2026-06-02T13:41:00Z,u_0155_s01,ins_u_0155_003,{},v2.2.0-healthy +evt_000763,u_0427,profile_saved,2026-06-02T13:41:00Z,u_0427_s01,ins_u_0427_003,{},v2.2.0-healthy +evt_000764,u_0581,feature_used,2026-06-02T13:42:00Z,u_0581_s01,ins_u_0581_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000765,u_0155,onboarding_step_viewed,2026-06-02T13:43:00Z,u_0155_s01,ins_u_0155_004,{},v2.2.0-healthy +evt_000766,u_0257,signup_completed,2026-06-02T13:43:00Z,u_0257_s01,ins_u_0257_002,{},v2.2.0-healthy +evt_000767,u_0427,onboarding_step_viewed,2026-06-02T13:43:00Z,u_0427_s01,ins_u_0427_004,{},v2.2.0-healthy +evt_000768,u_0581,onboarding_completed,2026-06-02T13:43:00Z,u_0581_s01,ins_u_0581_006,"{""completed_at"": ""2026-06-02T13:56:00Z""}",v2.2.0-healthy +evt_000769,u_0061,signup_started,2026-06-02T13:44:00Z,u_0061_s01,ins_u_0061_001,{},v2.2.0-healthy +evt_000770,u_0716,onboarding_completed,2026-06-02T13:45:00Z,u_0716_s01,ins_u_0716_006,"{""completed_at"": ""2026-06-02T13:56:00Z""}",v2.2.0-healthy +evt_000771,u_0061,signup_completed,2026-06-02T13:46:00Z,u_0061_s01,ins_u_0061_002,{},v2.2.0-healthy +evt_000772,u_0257,profile_saved,2026-06-02T13:46:00Z,u_0257_s01,ins_u_0257_003,{},v2.2.0-healthy +evt_000773,u_0344,feature_used,2026-06-02T13:46:00Z,u_0344_s01,ins_u_0344_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000774,u_0253,signup_started,2026-06-02T13:47:00Z,u_0253_s01,ins_u_0253_001,{},v2.2.0-healthy +evt_000775,u_0286,signup_completed,2026-06-02T13:47:00Z,u_0286_s01,ins_u_0286_002,{},v2.2.0-healthy +evt_000776,u_0323,profile_saved,2026-06-02T13:47:00Z,u_0323_s01,ins_u_0323_003,{},v2.2.0-healthy +evt_000777,u_0323,onboarding_step_viewed,2026-06-02T13:49:00Z,u_0323_s01,ins_u_0323_004,{},v2.2.0-healthy +evt_000778,u_0229,signup_started,2026-06-02T13:50:00Z,u_0229_s01,ins_u_0229_001,{},v2.2.0-healthy +evt_000779,u_0257,onboarding_step_viewed,2026-06-02T13:50:00Z,u_0257_s01,ins_u_0257_004,{},v2.2.0-healthy +evt_000780,u_0286,profile_saved,2026-06-02T13:50:00Z,u_0286_s01,ins_u_0286_003,{},v2.2.0-healthy +evt_000781,u_0229,signup_completed,2026-06-02T13:51:00Z,u_0229_s01,ins_u_0229_002,{},v2.2.0-healthy +evt_000782,u_0427,feature_used,2026-06-02T13:51:00Z,u_0427_s01,ins_u_0427_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000783,u_0778,feature_used,2026-06-02T13:52:00Z,u_0778_s01,ins_u_0778_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000784,u_0061,profile_saved,2026-06-02T13:54:00Z,u_0061_s01,ins_u_0061_003,{},v2.2.0-healthy +evt_000785,u_0253,signup_completed,2026-06-02T13:54:00Z,u_0253_s01,ins_u_0253_002,{},v2.2.0-healthy +evt_000786,u_0286,onboarding_step_viewed,2026-06-02T13:54:00Z,u_0286_s01,ins_u_0286_004,{},v2.2.0-healthy +evt_000787,u_0180,feature_used,2026-06-02T13:56:00Z,u_0180_s01,ins_u_0180_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000788,u_0257,feature_used,2026-06-02T13:56:00Z,u_0257_s01,ins_u_0257_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000789,u_0494,signup_started,2026-06-02T13:57:00Z,u_0494_s01,ins_u_0494_001,{},v2.2.0-healthy +evt_000790,u_0061,onboarding_step_viewed,2026-06-02T13:58:00Z,u_0061_s01,ins_u_0061_004,{},v2.2.0-healthy +evt_000791,u_0125,signup_started,2026-06-02T14:00:00Z,u_0125_s01,ins_u_0125_001,{},v2.2.0-healthy +evt_000792,u_0344,onboarding_completed,2026-06-02T14:00:00Z,u_0344_s01,ins_u_0344_006,"{""completed_at"": ""2026-06-02T13:50:00Z""}",v2.2.0-healthy +evt_000793,u_0229,profile_saved,2026-06-02T14:01:00Z,u_0229_s01,ins_u_0229_003,{},v2.2.0-healthy +evt_000794,u_0253,profile_saved,2026-06-02T14:01:00Z,u_0253_s01,ins_u_0253_003,{},v2.2.0-healthy +evt_000795,u_0737,signup_started,2026-06-02T14:01:00Z,u_0737_s01,ins_u_0737_001,{},v2.2.0-healthy +evt_000796,u_0229,error_shown,2026-06-02T14:02:00Z,u_0229_s01,ins_u_0229_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_000797,u_0125,signup_completed,2026-06-02T14:03:00Z,u_0125_s01,ins_u_0125_002,{},v2.2.0-healthy +evt_000798,u_0451,signup_started,2026-06-02T14:04:00Z,u_0451_s01,ins_u_0451_001,{},v2.2.0-healthy +evt_000799,u_0714,signup_started,2026-06-02T14:04:00Z,u_0714_s01,ins_u_0714_001,{},v2.2.0-healthy +evt_000800,u_0155,feature_used,2026-06-02T14:05:00Z,u_0155_s01,ins_u_0155_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000801,u_0253,onboarding_step_viewed,2026-06-02T14:05:00Z,u_0253_s01,ins_u_0253_004,{},v2.2.0-healthy +evt_000802,u_0494,signup_completed,2026-06-02T14:05:00Z,u_0494_s01,ins_u_0494_002,{},v2.2.0-healthy +evt_000803,u_0229,onboarding_step_viewed,2026-06-02T14:06:00Z,u_0229_s01,ins_u_0229_005,{},v2.2.0-healthy +evt_000804,u_0714,session_abandoned,2026-06-02T14:06:00Z,u_0714_s01,ins_u_0714_002,{},v2.2.0-healthy +evt_000805,u_0737,session_abandoned,2026-06-02T14:06:00Z,u_0737_s01,ins_u_0737_002,{},v2.2.0-healthy +evt_000806,u_0026,signup_started,2026-06-02T14:07:00Z,u_0026_s01,ins_u_0026_001,{},v2.2.0-healthy +evt_000807,u_0393,signup_started,2026-06-02T14:07:00Z,u_0393_s01,ins_u_0393_001,{},v2.2.0-healthy +evt_000808,u_0451,signup_completed,2026-06-02T14:07:00Z,u_0451_s01,ins_u_0451_002,{},v2.2.0-healthy +evt_000809,u_0061,feature_used,2026-06-02T14:08:00Z,u_0061_s01,ins_u_0061_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000810,u_0125,session_abandoned,2026-06-02T14:08:00Z,u_0125_s01,ins_u_0125_003,{},v2.2.0-healthy +evt_000811,u_0026,session_abandoned,2026-06-02T14:09:00Z,u_0026_s01,ins_u_0026_002,{},v2.2.0-healthy +evt_000812,u_0253,feature_used,2026-06-02T14:10:00Z,u_0253_s01,ins_u_0253_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000813,u_0451,profile_saved,2026-06-02T14:11:00Z,u_0451_s01,ins_u_0451_003,{},v2.2.0-healthy +evt_000814,u_0494,profile_saved,2026-06-02T14:11:00Z,u_0494_s01,ins_u_0494_003,{},v2.2.0-healthy +evt_000815,u_0778,onboarding_completed,2026-06-02T14:11:00Z,u_0778_s01,ins_u_0778_006,"{""completed_at"": ""2026-06-02T14:08:00Z""}",v2.2.0-healthy +evt_000816,u_0257,onboarding_completed,2026-06-02T14:13:00Z,u_0257_s01,ins_u_0257_006,"{""completed_at"": ""2026-06-02T14:22:00Z""}",v2.2.0-healthy +evt_000817,u_0393,signup_completed,2026-06-02T14:13:00Z,u_0393_s01,ins_u_0393_002,{},v2.2.0-healthy +evt_000818,u_0323,onboarding_completed,2026-06-02T14:14:00Z,u_0323_s01,ins_u_0323_005,"{""completed_at"": ""2026-06-02T14:25:00Z""}",v2.2.0-healthy +evt_000819,u_0451,onboarding_step_viewed,2026-06-02T14:16:00Z,u_0451_s01,ins_u_0451_004,{},v2.2.0-healthy +evt_000820,u_0494,onboarding_step_viewed,2026-06-02T14:17:00Z,u_0494_s01,ins_u_0494_004,{},v2.2.0-healthy +evt_000821,u_0209,signup_started,2026-06-02T14:18:00Z,u_0209_s01,ins_u_0209_001,{},v2.2.0-healthy +evt_000822,u_0286,onboarding_completed,2026-06-02T14:18:00Z,u_0286_s01,ins_u_0286_005,"{""completed_at"": ""2026-06-02T14:27:00Z""}",v2.2.0-healthy +evt_000823,u_0393,profile_saved,2026-06-02T14:19:00Z,u_0393_s01,ins_u_0393_003,{},v2.2.0-healthy +evt_000824,u_0155,onboarding_completed,2026-06-02T14:20:00Z,u_0155_s01,ins_u_0155_006,"{""completed_at"": ""2026-06-02T14:20:00Z""}",v2.2.0-healthy +evt_000825,u_0427,onboarding_completed,2026-06-02T14:20:00Z,u_0427_s01,ins_u_0427_006,"{""completed_at"": ""2026-06-02T14:10:00Z""}",v2.2.0-healthy +evt_000826,u_0142,signup_started,2026-06-02T14:23:00Z,u_0142_s01,ins_u_0142_001,{},v2.2.0-healthy +evt_000827,u_0209,signup_completed,2026-06-02T14:23:00Z,u_0209_s01,ins_u_0209_002,{},v2.2.0-healthy +evt_000828,u_0061,onboarding_completed,2026-06-02T14:25:00Z,u_0061_s01,ins_u_0061_006,"{""completed_at"": ""2026-06-02T14:22:00Z""}",v2.2.0-healthy +evt_000829,u_0209,session_abandoned,2026-06-02T14:27:00Z,u_0209_s01,ins_u_0209_003,{},v2.2.0-healthy +evt_000830,u_0393,feature_used,2026-06-02T14:27:00Z,u_0393_s01,ins_u_0393_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000831,u_0494,feature_used,2026-06-02T14:27:00Z,u_0494_s01,ins_u_0494_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000832,u_0142,signup_completed,2026-06-02T14:29:00Z,u_0142_s01,ins_u_0142_002,{},v2.2.0-healthy +evt_000833,u_0019,signup_started,2026-06-02T14:35:00Z,u_0019_s01,ins_u_0019_001,{},v2.2.0-healthy +evt_000834,u_0180,activation_completed,2026-06-02T14:35:00Z,u_0180_s01,ins_u_0180_006,{},v2.2.0-healthy +evt_000835,u_0142,profile_saved,2026-06-02T14:37:00Z,u_0142_s01,ins_u_0142_003,{},v2.2.0-healthy +evt_000836,u_0253,onboarding_completed,2026-06-02T14:37:00Z,u_0253_s01,ins_u_0253_006,"{""completed_at"": ""2026-06-02T14:28:00Z""}",v2.2.0-healthy +evt_000837,u_0398,signup_started,2026-06-02T14:37:00Z,u_0398_s01,ins_u_0398_001,{},v2.2.0-healthy +evt_000838,u_0166,signup_started,2026-06-02T14:38:00Z,u_0166_s01,ins_u_0166_001,{},v2.2.0-healthy +evt_000839,u_0142,onboarding_step_viewed,2026-06-02T14:39:00Z,u_0142_s01,ins_u_0142_004,{},v2.2.0-healthy +evt_000840,u_0229,onboarding_completed,2026-06-02T14:40:00Z,u_0229_s01,ins_u_0229_006,"{""completed_at"": ""2026-06-02T14:31:00Z""}",v2.2.0-healthy +evt_000841,u_0344,activation_completed,2026-06-02T14:40:00Z,u_0344_s01,ins_u_0344_007,{},v2.2.0-healthy +evt_000842,u_0019,signup_completed,2026-06-02T14:42:00Z,u_0019_s01,ins_u_0019_002,{},v2.2.0-healthy +evt_000843,u_0494,onboarding_completed,2026-06-02T14:43:00Z,u_0494_s01,ins_u_0494_006,"{""completed_at"": ""2026-06-02T14:50:00Z""}",v2.2.0-healthy +evt_000844,u_0398,signup_completed,2026-06-02T14:45:00Z,u_0398_s01,ins_u_0398_002,{},v2.2.0-healthy +evt_000845,u_0166,signup_completed,2026-06-02T14:46:00Z,u_0166_s01,ins_u_0166_002,{},v2.2.0-healthy +evt_000846,u_0019,profile_saved,2026-06-02T14:47:00Z,u_0019_s01,ins_u_0019_003,{},v2.2.0-healthy +evt_000847,u_0229,activation_completed,2026-06-02T14:48:00Z,u_0229_s01,ins_u_0229_007,{},v2.2.0-healthy +evt_000848,u_0155,activation_completed,2026-06-02T14:50:00Z,u_0155_s01,ins_u_0155_007,{},v2.2.0-healthy +evt_000849,u_0398,session_abandoned,2026-06-02T14:51:00Z,u_0398_s01,ins_u_0398_003,{},v2.2.0-healthy +evt_000850,u_0019,onboarding_step_viewed,2026-06-02T14:53:00Z,u_0019_s01,ins_u_0019_004,{},v2.2.0-healthy +evt_000851,u_0166,profile_saved,2026-06-02T14:55:00Z,u_0166_s01,ins_u_0166_003,{},v2.2.0-healthy +evt_000852,u_0280,signup_started,2026-06-02T14:55:00Z,u_0280_s01,ins_u_0280_001,{},v2.2.0-healthy +evt_000853,u_0451,onboarding_completed,2026-06-02T14:55:00Z,u_0451_s01,ins_u_0451_005,"{""completed_at"": ""2026-06-02T14:44:00Z""}",v2.2.0-healthy +evt_000854,u_0199,signup_started,2026-06-02T14:58:00Z,u_0199_s01,ins_u_0199_001,{},v2.2.0-healthy +evt_000855,u_0358,signup_started,2026-06-02T14:58:00Z,u_0358_s01,ins_u_0358_001,{},v2.2.0-healthy +evt_000856,u_0280,signup_completed,2026-06-02T15:00:00Z,u_0280_s01,ins_u_0280_002,{},v2.2.0-healthy +evt_000857,u_0358,session_abandoned,2026-06-02T15:00:00Z,u_0358_s01,ins_u_0358_002,{},v2.2.0-healthy +evt_000858,u_0142,feature_used,2026-06-02T15:01:00Z,u_0142_s01,ins_u_0142_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000859,u_0343,signup_started,2026-06-02T15:02:00Z,u_0343_s01,ins_u_0343_001,{},v2.2.0-healthy +evt_000860,u_0393,onboarding_completed,2026-06-02T15:02:00Z,u_0393_s01,ins_u_0393_005,"{""completed_at"": ""2026-06-02T14:52:00Z""}",v2.2.0-healthy +evt_000861,u_0343,signup_completed,2026-06-02T15:04:00Z,u_0343_s01,ins_u_0343_002,{},v2.2.0-healthy +evt_000862,u_0199,signup_completed,2026-06-02T15:06:00Z,u_0199_s01,ins_u_0199_002,{},v2.2.0-healthy +evt_000863,u_0061,activation_completed,2026-06-02T15:07:00Z,u_0061_s01,ins_u_0061_007,{},v2.2.0-healthy +evt_000864,u_0280,session_abandoned,2026-06-02T15:07:00Z,u_0280_s01,ins_u_0280_003,{},v2.2.0-healthy +evt_000865,u_0343,session_abandoned,2026-06-02T15:09:00Z,u_0343_s01,ins_u_0343_003,{},v2.2.0-healthy +evt_000866,u_0253,activation_completed,2026-06-02T15:10:00Z,u_0253_s01,ins_u_0253_007,{},v2.2.0-healthy +evt_000867,u_0142,onboarding_completed,2026-06-02T15:11:00Z,u_0142_s01,ins_u_0142_006,"{""completed_at"": ""2026-06-02T15:08:00Z""}",v2.2.0-healthy +evt_000868,u_0199,profile_saved,2026-06-02T15:11:00Z,u_0199_s01,ins_u_0199_003,{},v2.2.0-healthy +evt_000869,u_0752,signup_started,2026-06-02T15:12:00Z,u_0752_s01,ins_u_0752_001,{},v2.2.0-healthy +evt_000870,u_0783,signup_started,2026-06-02T15:14:00Z,u_0783_s01,ins_u_0783_001,{},v2.2.0-healthy +evt_000871,u_0199,onboarding_step_viewed,2026-06-02T15:16:00Z,u_0199_s01,ins_u_0199_004,{},v2.2.0-healthy +evt_000872,u_0752,session_abandoned,2026-06-02T15:17:00Z,u_0752_s01,ins_u_0752_002,{},v2.2.0-healthy +evt_000873,u_0783,signup_completed,2026-06-02T15:19:00Z,u_0783_s01,ins_u_0783_002,{},v2.2.0-healthy +evt_000874,u_0783,profile_saved,2026-06-02T15:22:00Z,u_0783_s01,ins_u_0783_003,{},v2.2.0-healthy +evt_000875,u_0142,activation_completed,2026-06-02T15:23:00Z,u_0142_s01,ins_u_0142_007,{},v2.2.0-healthy +evt_000876,u_0166,onboarding_completed,2026-06-02T15:24:00Z,u_0166_s01,ins_u_0166_004,"{""completed_at"": ""2026-06-02T15:23:00Z""}",v2.2.0-healthy +evt_000877,u_0608,signup_started,2026-06-02T15:24:00Z,u_0608_s01,ins_u_0608_001,{},v2.2.0-healthy +evt_000878,u_0783,onboarding_step_viewed,2026-06-02T15:24:00Z,u_0783_s01,ins_u_0783_004,{},v2.2.0-healthy +evt_000879,u_0494,activation_completed,2026-06-02T15:26:00Z,u_0494_s01,ins_u_0494_007,{},v2.2.0-healthy +evt_000880,u_0199,feature_used,2026-06-02T15:27:00Z,u_0199_s01,ins_u_0199_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000881,u_0608,session_abandoned,2026-06-02T15:29:00Z,u_0608_s01,ins_u_0608_002,{},v2.2.0-healthy +evt_000882,u_0472,signup_started,2026-06-02T15:30:00Z,u_0472_s01,ins_u_0472_001,{},v2.2.0-healthy +evt_000883,u_0027,signup_started,2026-06-02T15:31:00Z,u_0027_s01,ins_u_0027_001,{},v2.2.0-healthy +evt_000884,u_0478,signup_started,2026-06-02T15:32:00Z,u_0478_s01,ins_u_0478_001,{},v2.2.0-healthy +evt_000885,u_0472,session_abandoned,2026-06-02T15:34:00Z,u_0472_s01,ins_u_0472_002,{},v2.2.0-healthy +evt_000886,u_0027,signup_completed,2026-06-02T15:35:00Z,u_0027_s01,ins_u_0027_002,{},v2.2.0-healthy +evt_000887,u_0468,signup_started,2026-06-02T15:36:00Z,u_0468_s01,ins_u_0468_001,{},v2.2.0-healthy +evt_000888,u_0478,signup_completed,2026-06-02T15:38:00Z,u_0478_s01,ins_u_0478_002,{},v2.2.0-healthy +evt_000889,u_0779,signup_started,2026-06-02T15:38:00Z,u_0779_s01,ins_u_0779_001,{},v2.2.0-healthy +evt_000890,u_0027,profile_saved,2026-06-02T15:40:00Z,u_0027_s01,ins_u_0027_003,{},v2.2.0-healthy +evt_000891,u_0468,signup_completed,2026-06-02T15:40:00Z,u_0468_s01,ins_u_0468_002,{},v2.2.0-healthy +evt_000892,u_0783,feature_used,2026-06-02T15:41:00Z,u_0783_s01,ins_u_0783_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000893,u_0199,onboarding_completed,2026-06-02T15:42:00Z,u_0199_s01,ins_u_0199_006,"{""completed_at"": ""2026-06-02T15:46:00Z""}",v2.2.0-healthy +evt_000894,u_0779,signup_completed,2026-06-02T15:43:00Z,u_0779_s01,ins_u_0779_002,{},v2.2.0-healthy +evt_000895,u_0272,signup_started,2026-06-02T15:46:00Z,u_0272_s01,ins_u_0272_001,{},v2.2.0-healthy +evt_000896,u_0027,feature_used,2026-06-02T15:47:00Z,u_0027_s01,ins_u_0027_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_000897,u_0181,signup_started,2026-06-02T15:47:00Z,u_0181_s01,ins_u_0181_001,{},v2.2.0-healthy +evt_000898,u_0478,profile_saved,2026-06-02T15:48:00Z,u_0478_s01,ins_u_0478_003,{},v2.2.0-healthy +evt_000899,u_0481,signup_started,2026-06-02T15:48:00Z,u_0481_s01,ins_u_0481_001,{},v2.2.0-healthy +evt_000900,u_0468,profile_saved,2026-06-02T15:49:00Z,u_0468_s01,ins_u_0468_003,{},v2.2.0-healthy +evt_000901,u_0166,activation_completed,2026-06-02T15:50:00Z,u_0166_s01,ins_u_0166_005,{},v2.2.0-healthy +evt_000902,u_0272,signup_completed,2026-06-02T15:51:00Z,u_0272_s01,ins_u_0272_002,{},v2.2.0-healthy +evt_000903,u_0478,onboarding_step_viewed,2026-06-02T15:51:00Z,u_0478_s01,ins_u_0478_004,{},v2.2.0-healthy +evt_000904,u_0779,profile_saved,2026-06-02T15:51:00Z,u_0779_s01,ins_u_0779_003,{},v2.2.0-healthy +evt_000905,u_0181,signup_completed,2026-06-02T15:54:00Z,u_0181_s01,ins_u_0181_002,{},v2.2.0-healthy +evt_000906,u_0272,profile_saved,2026-06-02T15:54:00Z,u_0272_s01,ins_u_0272_003,{},v2.2.0-healthy +evt_000907,u_0468,onboarding_step_viewed,2026-06-02T15:55:00Z,u_0468_s01,ins_u_0468_004,{},v2.2.0-healthy +evt_000908,u_0481,signup_completed,2026-06-02T15:55:00Z,u_0481_s01,ins_u_0481_002,{},v2.2.0-healthy +evt_000909,u_0779,onboarding_step_viewed,2026-06-02T15:56:00Z,u_0779_s01,ins_u_0779_004,{},v2.2.0-healthy +evt_000910,u_0181,session_abandoned,2026-06-02T15:59:00Z,u_0181_s01,ins_u_0181_003,{},v2.2.0-healthy +evt_000911,u_0481,profile_saved,2026-06-02T15:59:00Z,u_0481_s01,ins_u_0481_003,{},v2.2.0-healthy +evt_000912,u_0783,onboarding_completed,2026-06-02T16:00:00Z,u_0783_s01,ins_u_0783_006,"{""completed_at"": ""2026-06-02T15:58:00Z""}",v2.2.0-healthy +evt_000913,u_0481,onboarding_step_viewed,2026-06-02T16:02:00Z,u_0481_s01,ins_u_0481_004,{},v2.2.0-healthy +evt_000914,u_0027,onboarding_completed,2026-06-02T16:14:00Z,u_0027_s01,ins_u_0027_005,"{""completed_at"": ""2026-06-02T16:14:00Z""}",v2.2.0-healthy +evt_000915,u_0272,feature_used,2026-06-02T16:15:00Z,u_0272_s01,ins_u_0272_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_000916,u_0538,signup_started,2026-06-02T16:18:00Z,u_0538_s01,ins_u_0538_001,{},v2.2.0-healthy +evt_000917,u_0468,onboarding_completed,2026-06-02T16:20:00Z,u_0468_s01,ins_u_0468_005,"{""completed_at"": ""2026-06-02T16:26:00Z""}",v2.2.0-healthy +evt_000918,u_0478,onboarding_completed,2026-06-02T16:20:00Z,u_0478_s01,ins_u_0478_005,"{""completed_at"": ""2026-06-02T16:22:00Z""}",v2.2.0-healthy +evt_000919,u_0033,signup_started,2026-06-02T16:25:00Z,u_0033_s01,ins_u_0033_001,{},v2.2.0-healthy +evt_000920,u_0538,signup_completed,2026-06-02T16:25:00Z,u_0538_s01,ins_u_0538_002,{},v2.2.0-healthy +evt_000921,u_0668,signup_started,2026-06-02T16:25:00Z,u_0668_s01,ins_u_0668_001,{},v2.2.0-healthy +evt_000922,u_0783,activation_completed,2026-06-02T16:26:00Z,u_0783_s01,ins_u_0783_007,{},v2.2.0-healthy +evt_000923,u_0779,onboarding_completed,2026-06-02T16:27:00Z,u_0779_s01,ins_u_0779_005,"{""completed_at"": ""2026-06-02T16:26:00Z""}",v2.2.0-healthy +evt_000924,u_0668,session_abandoned,2026-06-02T16:28:00Z,u_0668_s01,ins_u_0668_002,{},v2.2.0-healthy +evt_000925,u_0033,signup_completed,2026-06-02T16:30:00Z,u_0033_s01,ins_u_0033_002,{},v2.2.0-healthy +evt_000926,u_0538,profile_saved,2026-06-02T16:30:00Z,u_0538_s01,ins_u_0538_003,{},v2.2.0-healthy +evt_000927,u_0481,onboarding_completed,2026-06-02T16:31:00Z,u_0481_s01,ins_u_0481_005,"{""completed_at"": ""2026-06-02T16:27:00Z""}",v2.2.0-healthy +evt_000928,u_0009,signup_started,2026-06-02T16:34:00Z,u_0009_s01,ins_u_0009_001,{},v2.2.0-healthy +evt_000929,u_0538,onboarding_step_viewed,2026-06-02T16:34:00Z,u_0538_s01,ins_u_0538_004,{},v2.2.0-healthy +evt_000930,u_0009,signup_completed,2026-06-02T16:35:00Z,u_0009_s01,ins_u_0009_002,{},v2.2.0-healthy +evt_000931,u_0272,onboarding_completed,2026-06-02T16:37:00Z,u_0272_s01,ins_u_0272_005,"{""completed_at"": ""2026-06-02T16:30:00Z""}",v2.2.0-healthy +evt_000932,u_0033,session_abandoned,2026-06-02T16:39:00Z,u_0033_s01,ins_u_0033_003,{},v2.2.0-healthy +evt_000933,u_0272,activation_completed,2026-06-02T16:43:00Z,u_0272_s01,ins_u_0272_006,{},v2.2.0-healthy +evt_000934,u_0009,profile_saved,2026-06-02T16:45:00Z,u_0009_s01,ins_u_0009_003,{},v2.2.0-healthy +evt_000935,u_0009,onboarding_step_viewed,2026-06-02T16:48:00Z,u_0009_s01,ins_u_0009_004,{},v2.2.0-healthy +evt_000936,u_0027,activation_completed,2026-06-02T16:50:00Z,u_0027_s01,ins_u_0027_006,{},v2.2.0-healthy +evt_000937,u_0538,feature_used,2026-06-02T16:53:00Z,u_0538_s01,ins_u_0538_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000938,u_0779,activation_completed,2026-06-02T16:56:00Z,u_0779_s01,ins_u_0779_006,{},v2.2.0-healthy +evt_000939,u_0538,onboarding_completed,2026-06-02T16:59:00Z,u_0538_s01,ins_u_0538_006,"{""completed_at"": ""2026-06-02T16:59:00Z""}",v2.2.0-healthy +evt_000940,u_0284,signup_started,2026-06-02T17:09:00Z,u_0284_s01,ins_u_0284_001,{},v2.2.0-healthy +evt_000941,u_0284,session_abandoned,2026-06-02T17:16:00Z,u_0284_s01,ins_u_0284_002,{},v2.2.0-healthy +evt_000942,u_0481,activation_completed,2026-06-02T17:19:00Z,u_0481_s01,ins_u_0481_006,{},v2.2.0-healthy +evt_000943,u_0172,signup_started,2026-06-02T17:20:00Z,u_0172_s01,ins_u_0172_001,{},v2.2.0-healthy +evt_000944,u_0172,signup_completed,2026-06-02T17:25:00Z,u_0172_s01,ins_u_0172_002,{},v2.2.0-healthy +evt_000945,u_0426,signup_started,2026-06-02T17:29:00Z,u_0426_s01,ins_u_0426_001,{},v2.2.0-healthy +evt_000946,u_0770,signup_started,2026-06-02T17:32:00Z,u_0770_s01,ins_u_0770_001,{},v2.2.0-healthy +evt_000947,u_0172,session_abandoned,2026-06-02T17:34:00Z,u_0172_s01,ins_u_0172_003,{},v2.2.0-healthy +evt_000948,u_0426,signup_completed,2026-06-02T17:35:00Z,u_0426_s01,ins_u_0426_002,{},v2.2.0-healthy +evt_000949,u_0247,signup_started,2026-06-02T17:36:00Z,u_0247_s01,ins_u_0247_001,{},v2.2.0-healthy +evt_000950,u_0770,session_abandoned,2026-06-02T17:36:00Z,u_0770_s01,ins_u_0770_002,{},v2.2.0-healthy +evt_000951,u_0156,signup_started,2026-06-02T17:38:00Z,u_0156_s01,ins_u_0156_001,{},v2.2.0-healthy +evt_000952,u_0426,profile_saved,2026-06-02T17:39:00Z,u_0426_s01,ins_u_0426_003,{},v2.2.0-healthy +evt_000953,u_0247,session_abandoned,2026-06-02T17:40:00Z,u_0247_s01,ins_u_0247_002,{},v2.2.0-healthy +evt_000954,u_0426,onboarding_step_viewed,2026-06-02T17:42:00Z,u_0426_s01,ins_u_0426_004,{},v2.2.0-healthy +evt_000955,u_0156,signup_completed,2026-06-02T17:46:00Z,u_0156_s01,ins_u_0156_002,{},v2.2.0-healthy +evt_000956,u_0538,activation_completed,2026-06-02T17:48:00Z,u_0538_s01,ins_u_0538_007,{},v2.2.0-healthy +evt_000957,u_0156,session_abandoned,2026-06-02T17:50:00Z,u_0156_s01,ins_u_0156_003,{},v2.2.0-healthy +evt_000958,u_0426,feature_used,2026-06-02T17:51:00Z,u_0426_s01,ins_u_0426_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000959,u_0158,signup_started,2026-06-02T17:53:00Z,u_0158_s01,ins_u_0158_001,{},v2.2.0-healthy +evt_000960,u_0158,signup_completed,2026-06-02T18:00:00Z,u_0158_s01,ins_u_0158_002,{},v2.2.0-healthy +evt_000961,u_0158,profile_saved,2026-06-02T18:09:00Z,u_0158_s01,ins_u_0158_003,{},v2.2.0-healthy +evt_000962,u_0287,signup_started,2026-06-02T18:09:00Z,u_0287_s01,ins_u_0287_001,{},v2.2.0-healthy +evt_000963,u_0426,onboarding_completed,2026-06-02T18:10:00Z,u_0426_s01,ins_u_0426_006,"{""completed_at"": ""2026-06-02T18:14:00Z""}",v2.2.0-healthy +evt_000964,u_0644,signup_started,2026-06-02T18:10:00Z,u_0644_s01,ins_u_0644_001,{},v2.2.0-healthy +evt_000965,u_0182,signup_started,2026-06-02T18:11:00Z,u_0182_s01,ins_u_0182_001,{},v2.2.0-healthy +evt_000966,u_0287,session_abandoned,2026-06-02T18:11:00Z,u_0287_s01,ins_u_0287_002,{},v2.2.0-healthy +evt_000967,u_0182,signup_completed,2026-06-02T18:13:00Z,u_0182_s01,ins_u_0182_002,{},v2.2.0-healthy +evt_000968,u_0213,signup_started,2026-06-02T18:13:00Z,u_0213_s01,ins_u_0213_001,{},v2.2.0-healthy +evt_000969,u_0384,signup_started,2026-06-02T18:13:00Z,u_0384_s01,ins_u_0384_001,{},v2.2.0-healthy +evt_000970,u_0133,signup_started,2026-06-02T18:15:00Z,u_0133_s01,ins_u_0133_001,{},v2.2.0-healthy +evt_000971,u_0182,profile_saved,2026-06-02T18:15:00Z,u_0182_s01,ins_u_0182_003,{},v2.2.0-healthy +evt_000972,u_0182,error_shown,2026-06-02T18:16:00Z,u_0182_s01,ins_u_0182_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_000973,u_0213,session_abandoned,2026-06-02T18:16:00Z,u_0213_s01,ins_u_0213_002,{},v2.2.0-healthy +evt_000974,u_0644,signup_completed,2026-06-02T18:16:00Z,u_0644_s01,ins_u_0644_002,{},v2.2.0-healthy +evt_000975,u_0384,signup_completed,2026-06-02T18:18:00Z,u_0384_s01,ins_u_0384_002,{},v2.2.0-healthy +evt_000976,u_0133,signup_completed,2026-06-02T18:21:00Z,u_0133_s01,ins_u_0133_002,{},v2.2.0-healthy +evt_000977,u_0182,onboarding_step_viewed,2026-06-02T18:21:00Z,u_0182_s01,ins_u_0182_005,{},v2.2.0-healthy +evt_000978,u_0089,signup_started,2026-06-02T18:22:00Z,u_0089_s01,ins_u_0089_001,{},v2.2.0-healthy +evt_000979,u_0133,profile_saved,2026-06-02T18:24:00Z,u_0133_s01,ins_u_0133_003,{},v2.2.0-healthy +evt_000980,u_0384,profile_saved,2026-06-02T18:25:00Z,u_0384_s01,ins_u_0384_003,{},v2.2.0-healthy +evt_000981,u_0644,profile_saved,2026-06-02T18:25:00Z,u_0644_s01,ins_u_0644_003,{},v2.2.0-healthy +evt_000982,u_0133,onboarding_step_viewed,2026-06-02T18:29:00Z,u_0133_s01,ins_u_0133_004,{},v2.2.0-healthy +evt_000983,u_0644,onboarding_step_viewed,2026-06-02T18:29:00Z,u_0644_s01,ins_u_0644_004,{},v2.2.0-healthy +evt_000984,u_0089,signup_completed,2026-06-02T18:30:00Z,u_0089_s01,ins_u_0089_002,{},v2.2.0-healthy +evt_000985,u_0158,feature_used,2026-06-02T18:31:00Z,u_0158_s01,ins_u_0158_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_000986,u_0384,onboarding_step_viewed,2026-06-02T18:31:00Z,u_0384_s01,ins_u_0384_004,{},v2.2.0-healthy +evt_000987,u_0051,signup_started,2026-06-02T18:35:00Z,u_0051_s01,ins_u_0051_001,{},v2.2.0-healthy +evt_000988,u_0089,session_abandoned,2026-06-02T18:36:00Z,u_0089_s01,ins_u_0089_003,{},v2.2.0-healthy +evt_000989,u_0465,signup_started,2026-06-02T18:37:00Z,u_0465_s01,ins_u_0465_001,{},v2.2.0-healthy +evt_000990,u_0492,signup_started,2026-06-02T18:38:00Z,u_0492_s01,ins_u_0492_001,{},v2.2.0-healthy +evt_000991,u_0384,feature_used,2026-06-02T18:40:00Z,u_0384_s01,ins_u_0384_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_000992,u_0421,signup_started,2026-06-02T18:41:00Z,u_0421_s01,ins_u_0421_001,{},v2.2.0-healthy +evt_000993,u_0492,signup_completed,2026-06-02T18:41:00Z,u_0492_s01,ins_u_0492_002,{},v2.2.0-healthy +evt_000994,u_0051,signup_completed,2026-06-02T18:43:00Z,u_0051_s01,ins_u_0051_002,{},v2.2.0-healthy +evt_000995,u_0421,session_abandoned,2026-06-02T18:43:00Z,u_0421_s01,ins_u_0421_002,{},v2.2.0-healthy +evt_000996,u_0465,signup_completed,2026-06-02T18:44:00Z,u_0465_s01,ins_u_0465_002,{},v2.2.0-healthy +evt_000997,u_0492,profile_saved,2026-06-02T18:44:00Z,u_0492_s01,ins_u_0492_003,{},v2.2.0-healthy +evt_000998,u_0051,profile_saved,2026-06-02T18:46:00Z,u_0051_s01,ins_u_0051_003,{},v2.2.0-healthy +evt_000999,u_0158,onboarding_completed,2026-06-02T18:46:00Z,u_0158_s01,ins_u_0158_005,"{""completed_at"": ""2026-06-02T18:43:00Z""}",v2.2.0-healthy +evt_001000,u_0153,signup_started,2026-06-02T18:47:00Z,u_0153_s01,ins_u_0153_001,{},v2.2.0-healthy +evt_001001,u_0492,onboarding_step_viewed,2026-06-02T18:48:00Z,u_0492_s01,ins_u_0492_004,{},v2.2.0-healthy +evt_001002,u_0785,signup_started,2026-06-02T18:49:00Z,u_0785_s01,ins_u_0785_001,{},v2.2.0-healthy +evt_001003,u_0051,onboarding_step_viewed,2026-06-02T18:50:00Z,u_0051_s01,ins_u_0051_004,{},v2.2.0-healthy +evt_001004,u_0785,signup_completed,2026-06-02T18:50:00Z,u_0785_s01,ins_u_0785_002,{},v2.2.0-healthy +evt_001005,u_0182,onboarding_completed,2026-06-02T18:52:00Z,u_0182_s01,ins_u_0182_006,"{""completed_at"": ""2026-06-02T18:53:00Z""}",v2.2.0-healthy +evt_001006,u_0153,session_abandoned,2026-06-02T18:53:00Z,u_0153_s01,ins_u_0153_002,{},v2.2.0-healthy +evt_001007,u_0465,session_abandoned,2026-06-02T18:53:00Z,u_0465_s01,ins_u_0465_003,{},v2.2.0-healthy +evt_001008,u_0133,onboarding_completed,2026-06-02T18:54:00Z,u_0133_s01,ins_u_0133_005,"{""completed_at"": ""2026-06-02T18:54:00Z""}",v2.2.0-healthy +evt_001009,u_0447,signup_started,2026-06-02T18:55:00Z,u_0447_s01,ins_u_0447_001,{},v2.2.0-healthy +evt_001010,u_0785,session_abandoned,2026-06-02T18:55:00Z,u_0785_s01,ins_u_0785_003,{},v2.2.0-healthy +evt_001011,u_0384,onboarding_completed,2026-06-02T18:57:00Z,u_0384_s01,ins_u_0384_006,"{""completed_at"": ""2026-06-02T19:04:00Z""}",v2.2.0-healthy +evt_001012,u_0447,signup_completed,2026-06-02T19:00:00Z,u_0447_s01,ins_u_0447_002,{},v2.2.0-healthy +evt_001013,u_0492,feature_used,2026-06-02T19:02:00Z,u_0492_s01,ins_u_0492_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001014,u_0447,session_abandoned,2026-06-02T19:08:00Z,u_0447_s01,ins_u_0447_003,{},v2.2.0-healthy +evt_001015,u_0622,signup_started,2026-06-02T19:10:00Z,u_0622_s01,ins_u_0622_001,{},v2.2.0-healthy +evt_001016,u_0622,signup_completed,2026-06-02T19:17:00Z,u_0622_s01,ins_u_0622_002,{},v2.2.0-healthy +evt_001017,u_0622,profile_saved,2026-06-02T19:23:00Z,u_0622_s01,ins_u_0622_003,{},v2.2.0-healthy +evt_001018,u_0051,onboarding_completed,2026-06-02T19:29:00Z,u_0051_s01,ins_u_0051_005,"{""completed_at"": ""2026-06-02T19:20:00Z""}",v2.2.0-healthy +evt_001019,u_0492,onboarding_completed,2026-06-02T19:29:00Z,u_0492_s01,ins_u_0492_006,"{""completed_at"": ""2026-06-02T19:14:00Z""}",v2.2.0-healthy +evt_001020,u_0622,onboarding_step_viewed,2026-06-02T19:29:00Z,u_0622_s01,ins_u_0622_004,{},v2.2.0-healthy +evt_001021,u_0492,activation_completed,2026-06-02T19:31:00Z,u_0492_s01,ins_u_0492_007,{},v2.2.0-healthy +evt_001022,u_0699,signup_started,2026-06-02T19:31:00Z,u_0699_s01,ins_u_0699_001,{},v2.2.0-healthy +evt_001023,u_0183,signup_started,2026-06-02T19:32:00Z,u_0183_s01,ins_u_0183_001,{},v2.2.0-healthy +evt_001024,u_0133,activation_completed,2026-06-02T19:36:00Z,u_0133_s01,ins_u_0133_006,{},v2.2.0-healthy +evt_001025,u_0622,feature_used,2026-06-02T19:38:00Z,u_0622_s01,ins_u_0622_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001026,u_0699,signup_completed,2026-06-02T19:38:00Z,u_0699_s01,ins_u_0699_002,{},v2.2.0-healthy +evt_001027,u_0183,session_abandoned,2026-06-02T19:40:00Z,u_0183_s01,ins_u_0183_002,{},v2.2.0-healthy +evt_001028,u_0436,signup_started,2026-06-02T19:41:00Z,u_0436_s01,ins_u_0436_001,{},v2.2.0-healthy +evt_001029,u_0436,signup_completed,2026-06-02T19:43:00Z,u_0436_s01,ins_u_0436_002,{},v2.2.0-healthy +evt_001030,u_0699,profile_saved,2026-06-02T19:45:00Z,u_0699_s01,ins_u_0699_003,{},v2.2.0-healthy +evt_001031,u_0699,onboarding_step_viewed,2026-06-02T19:47:00Z,u_0699_s01,ins_u_0699_004,{},v2.2.0-healthy +evt_001032,u_0436,profile_saved,2026-06-02T19:48:00Z,u_0436_s01,ins_u_0436_003,{},v2.2.0-healthy +evt_001033,u_0054,signup_started,2026-06-02T19:50:00Z,u_0054_s01,ins_u_0054_001,{},v2.2.0-healthy +evt_001034,u_0622,onboarding_completed,2026-06-02T19:53:00Z,u_0622_s01,ins_u_0622_006,"{""completed_at"": ""2026-06-02T19:54:00Z""}",v2.2.0-healthy +evt_001035,u_0436,onboarding_step_viewed,2026-06-02T19:54:00Z,u_0436_s01,ins_u_0436_004,{},v2.2.0-healthy +evt_001036,u_0054,signup_completed,2026-06-02T19:55:00Z,u_0054_s01,ins_u_0054_002,{},v2.2.0-healthy +evt_001037,u_0436,feature_used,2026-06-02T19:56:00Z,u_0436_s01,ins_u_0436_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001038,u_0054,profile_saved,2026-06-02T19:57:00Z,u_0054_s01,ins_u_0054_003,{},v2.2.0-healthy +evt_001039,u_0054,onboarding_step_viewed,2026-06-02T19:59:00Z,u_0054_s01,ins_u_0054_004,{},v2.2.0-healthy +evt_001040,u_0711,signup_started,2026-06-02T20:12:00Z,u_0711_s01,ins_u_0711_001,{},v2.2.0-healthy +evt_001041,u_0351,signup_started,2026-06-02T20:16:00Z,u_0351_s01,ins_u_0351_001,{},v2.2.0-healthy +evt_001042,u_0699,onboarding_completed,2026-06-02T20:16:00Z,u_0699_s01,ins_u_0699_005,"{""completed_at"": ""2026-06-02T20:11:00Z""}",v2.2.0-healthy +evt_001043,u_0711,signup_completed,2026-06-02T20:19:00Z,u_0711_s01,ins_u_0711_002,{},v2.2.0-healthy +evt_001044,u_0351,signup_completed,2026-06-02T20:21:00Z,u_0351_s01,ins_u_0351_002,{},v2.2.0-healthy +evt_001045,u_0054,onboarding_completed,2026-06-02T20:23:00Z,u_0054_s01,ins_u_0054_005,"{""completed_at"": ""2026-06-02T20:34:00Z""}",v2.2.0-healthy +evt_001046,u_0351,profile_saved,2026-06-02T20:24:00Z,u_0351_s01,ins_u_0351_003,{},v2.2.0-healthy +evt_001047,u_0351,onboarding_step_viewed,2026-06-02T20:26:00Z,u_0351_s01,ins_u_0351_004,{},v2.2.0-healthy +evt_001048,u_0711,profile_saved,2026-06-02T20:27:00Z,u_0711_s01,ins_u_0711_003,{},v2.2.0-healthy +evt_001049,u_0677,signup_started,2026-06-02T20:30:00Z,u_0677_s01,ins_u_0677_001,{},v2.2.0-healthy +evt_001050,u_0711,onboarding_step_viewed,2026-06-02T20:30:00Z,u_0711_s01,ins_u_0711_004,{},v2.2.0-healthy +evt_001051,u_0622,activation_completed,2026-06-02T20:31:00Z,u_0622_s01,ins_u_0622_007,{},v2.2.0-healthy +evt_001052,u_0436,onboarding_completed,2026-06-02T20:32:00Z,u_0436_s01,ins_u_0436_006,"{""completed_at"": ""2026-06-02T20:16:00Z""}",v2.2.0-healthy +evt_001053,u_0218,signup_started,2026-06-02T20:35:00Z,u_0218_s01,ins_u_0218_001,{},v2.2.0-healthy +evt_001054,u_0677,signup_completed,2026-06-02T20:35:00Z,u_0677_s01,ins_u_0677_002,{},v2.2.0-healthy +evt_001055,u_0120,signup_started,2026-06-02T20:38:00Z,u_0120_s01,ins_u_0120_001,{},v2.2.0-healthy +evt_001056,u_0677,profile_saved,2026-06-02T20:38:00Z,u_0677_s01,ins_u_0677_003,{},v2.2.0-healthy +evt_001057,u_0677,onboarding_step_viewed,2026-06-02T20:41:00Z,u_0677_s01,ins_u_0677_004,{},v2.2.0-healthy +evt_001058,u_0218,session_abandoned,2026-06-02T20:42:00Z,u_0218_s01,ins_u_0218_002,{},v2.2.0-healthy +evt_001059,u_0120,signup_completed,2026-06-02T20:43:00Z,u_0120_s01,ins_u_0120_002,{},v2.2.0-healthy +evt_001060,u_0095,signup_started,2026-06-02T20:44:00Z,u_0095_s01,ins_u_0095_001,{},v2.2.0-healthy +evt_001061,u_0711,feature_used,2026-06-02T20:45:00Z,u_0711_s01,ins_u_0711_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001062,u_0095,signup_completed,2026-06-02T20:48:00Z,u_0095_s01,ins_u_0095_002,{},v2.2.0-healthy +evt_001063,u_0120,profile_saved,2026-06-02T20:51:00Z,u_0120_s01,ins_u_0120_003,{},v2.2.0-healthy +evt_001064,u_0120,onboarding_step_viewed,2026-06-02T20:53:00Z,u_0120_s01,ins_u_0120_004,{},v2.2.0-healthy +evt_001065,u_0334,signup_started,2026-06-02T20:53:00Z,u_0334_s01,ins_u_0334_001,{},v2.2.0-healthy +evt_001066,u_0677,feature_used,2026-06-02T20:53:00Z,u_0677_s01,ins_u_0677_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001067,u_0334,signup_completed,2026-06-02T20:54:00Z,u_0334_s01,ins_u_0334_002,{},v2.2.0-healthy +evt_001068,u_0095,session_abandoned,2026-06-02T20:55:00Z,u_0095_s01,ins_u_0095_003,{},v2.2.0-healthy +evt_001069,u_0699,activation_completed,2026-06-02T20:57:00Z,u_0699_s01,ins_u_0699_006,{},v2.2.0-healthy +evt_001070,u_0711,onboarding_completed,2026-06-02T20:57:00Z,u_0711_s01,ins_u_0711_006,"{""completed_at"": ""2026-06-02T21:01:00Z""}",v2.2.0-healthy +evt_001071,u_0334,profile_saved,2026-06-02T21:04:00Z,u_0334_s01,ins_u_0334_003,{},v2.2.0-healthy +evt_001072,u_0334,onboarding_step_viewed,2026-06-02T21:06:00Z,u_0334_s01,ins_u_0334_004,{},v2.2.0-healthy +evt_001073,u_0120,feature_used,2026-06-02T21:11:00Z,u_0120_s01,ins_u_0120_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001074,u_0351,activation_completed,2026-06-02T21:20:00Z,u_0351_s01,ins_u_0351_005,{},v2.2.0-healthy +evt_001075,u_0677,activation_completed,2026-06-02T21:31:00Z,u_0677_s01,ins_u_0677_006,{},v2.2.0-healthy +evt_001076,u_0334,onboarding_completed,2026-06-02T21:32:00Z,u_0334_s01,ins_u_0334_005,"{""completed_at"": ""2026-06-02T21:37:00Z""}",v2.2.0-healthy +evt_001077,u_0120,onboarding_completed,2026-06-02T21:35:00Z,u_0120_s01,ins_u_0120_006,"{""completed_at"": ""2026-06-02T21:21:00Z""}",v2.2.0-healthy +evt_001078,u_0711,activation_completed,2026-06-02T21:45:00Z,u_0711_s01,ins_u_0711_007,{},v2.2.0-healthy +evt_001079,u_0721,signup_started,2026-06-03T08:01:00Z,u_0721_s01,ins_u_0721_001,{},v2.2.0-healthy +evt_001080,u_0721,signup_completed,2026-06-03T08:04:00Z,u_0721_s01,ins_u_0721_002,{},v2.2.0-healthy +evt_001081,u_0064,signup_started,2026-06-03T08:10:00Z,u_0064_s01,ins_u_0064_001,{},v2.2.0-healthy +evt_001082,u_0190,signup_started,2026-06-03T08:11:00Z,u_0190_s01,ins_u_0190_001,{},v2.2.0-healthy +evt_001083,u_0402,signup_started,2026-06-03T08:12:00Z,u_0402_s01,ins_u_0402_001,{},v2.2.0-healthy +evt_001084,u_0721,profile_saved,2026-06-03T08:14:00Z,u_0721_s01,ins_u_0721_003,{},v2.2.0-healthy +evt_001085,u_0190,signup_completed,2026-06-03T08:15:00Z,u_0190_s01,ins_u_0190_002,{},v2.2.0-healthy +evt_001086,u_0767,signup_started,2026-06-03T08:16:00Z,u_0767_s01,ins_u_0767_001,{},v2.2.0-healthy +evt_001087,u_0402,session_abandoned,2026-06-03T08:17:00Z,u_0402_s01,ins_u_0402_002,{},v2.2.0-healthy +evt_001088,u_0064,session_abandoned,2026-06-03T08:18:00Z,u_0064_s01,ins_u_0064_002,{},v2.2.0-healthy +evt_001089,u_0190,profile_saved,2026-06-03T08:18:00Z,u_0190_s01,ins_u_0190_003,{},v2.2.0-healthy +evt_001090,u_0721,onboarding_step_viewed,2026-06-03T08:19:00Z,u_0721_s01,ins_u_0721_004,{},v2.2.0-healthy +evt_001091,u_0767,signup_completed,2026-06-03T08:19:00Z,u_0767_s01,ins_u_0767_002,{},v2.2.0-healthy +evt_001092,u_0037,signup_started,2026-06-03T08:23:00Z,u_0037_s01,ins_u_0037_001,{},v2.2.0-healthy +evt_001093,u_0537,signup_started,2026-06-03T08:25:00Z,u_0537_s01,ins_u_0537_001,{},v2.2.0-healthy +evt_001094,u_0767,session_abandoned,2026-06-03T08:25:00Z,u_0767_s01,ins_u_0767_003,{},v2.2.0-healthy +evt_001095,u_0037,signup_completed,2026-06-03T08:27:00Z,u_0037_s01,ins_u_0037_002,{},v2.2.0-healthy +evt_001096,u_0555,signup_started,2026-06-03T08:28:00Z,u_0555_s01,ins_u_0555_001,{},v2.2.0-healthy +evt_001097,u_0537,signup_completed,2026-06-03T08:30:00Z,u_0537_s01,ins_u_0537_002,{},v2.2.0-healthy +evt_001098,u_0037,profile_saved,2026-06-03T08:32:00Z,u_0037_s01,ins_u_0037_003,{},v2.2.0-healthy +evt_001099,u_0537,profile_saved,2026-06-03T08:36:00Z,u_0537_s01,ins_u_0537_003,{},v2.2.0-healthy +evt_001100,u_0555,signup_completed,2026-06-03T08:36:00Z,u_0555_s01,ins_u_0555_002,{},v2.2.0-healthy +evt_001101,u_0537,error_shown,2026-06-03T08:37:00Z,u_0537_s01,ins_u_0537_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001102,u_0721,feature_used,2026-06-03T08:39:00Z,u_0721_s01,ins_u_0721_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001103,u_0439,signup_started,2026-06-03T08:40:00Z,u_0439_s01,ins_u_0439_001,{},v2.2.0-healthy +evt_001104,u_0537,onboarding_step_viewed,2026-06-03T08:41:00Z,u_0537_s01,ins_u_0537_005,{},v2.2.0-healthy +evt_001105,u_0555,session_abandoned,2026-06-03T08:41:00Z,u_0555_s01,ins_u_0555_003,{},v2.2.0-healthy +evt_001106,u_0282,signup_started,2026-06-03T08:45:00Z,u_0282_s01,ins_u_0282_001,{},v2.2.0-healthy +evt_001107,u_0190,onboarding_completed,2026-06-03T08:46:00Z,u_0190_s01,ins_u_0190_004,"{""completed_at"": ""2026-06-03T08:48:00Z""}",v2.2.0-healthy +evt_001108,u_0439,session_abandoned,2026-06-03T08:46:00Z,u_0439_s01,ins_u_0439_002,{},v2.2.0-healthy +evt_001109,u_0282,signup_completed,2026-06-03T08:51:00Z,u_0282_s01,ins_u_0282_002,{},v2.2.0-healthy +evt_001110,u_0733,signup_started,2026-06-03T08:54:00Z,u_0733_s01,ins_u_0733_001,{},v2.2.0-healthy +evt_001111,u_0721,onboarding_completed,2026-06-03T08:55:00Z,u_0721_s01,ins_u_0721_006,"{""completed_at"": ""2026-06-03T08:44:00Z""}",v2.2.0-healthy +evt_001112,u_0577,signup_started,2026-06-03T08:56:00Z,u_0577_s01,ins_u_0577_001,{},v2.2.0-healthy +evt_001113,u_0590,signup_started,2026-06-03T08:57:00Z,u_0590_s01,ins_u_0590_001,{},v2.2.0-healthy +evt_001114,u_0037,onboarding_completed,2026-06-03T08:58:00Z,u_0037_s01,ins_u_0037_004,"{""completed_at"": ""2026-06-03T09:07:00Z""}",v2.2.0-healthy +evt_001115,u_0376,signup_started,2026-06-03T08:58:00Z,u_0376_s01,ins_u_0376_001,{},v2.2.0-healthy +evt_001116,u_0733,signup_completed,2026-06-03T08:58:00Z,u_0733_s01,ins_u_0733_002,{},v2.2.0-healthy +evt_001117,u_0219,signup_started,2026-06-03T09:00:00Z,u_0219_s01,ins_u_0219_001,{},v2.2.0-healthy +evt_001118,u_0282,profile_saved,2026-06-03T09:00:00Z,u_0282_s01,ins_u_0282_003,{},v2.2.0-healthy +evt_001119,u_0577,signup_completed,2026-06-03T09:00:00Z,u_0577_s01,ins_u_0577_002,{},v2.2.0-healthy +evt_001120,u_0590,signup_completed,2026-06-03T09:00:00Z,u_0590_s01,ins_u_0590_002,{},v2.2.0-healthy +evt_001121,u_0219,signup_completed,2026-06-03T09:01:00Z,u_0219_s01,ins_u_0219_002,{},v2.2.0-healthy +evt_001122,u_0733,profile_saved,2026-06-03T09:01:00Z,u_0733_s01,ins_u_0733_003,{},v2.2.0-healthy +evt_001123,u_0503,signup_started,2026-06-03T09:02:00Z,u_0503_s01,ins_u_0503_001,{},v2.2.0-healthy +evt_001124,u_0707,signup_started,2026-06-03T09:02:00Z,u_0707_s01,ins_u_0707_001,{},v2.2.0-healthy +evt_001125,u_0376,signup_completed,2026-06-03T09:04:00Z,u_0376_s01,ins_u_0376_002,{},v2.2.0-healthy +evt_001126,u_0282,onboarding_step_viewed,2026-06-03T09:05:00Z,u_0282_s01,ins_u_0282_004,{},v2.2.0-healthy +evt_001127,u_0590,session_abandoned,2026-06-03T09:05:00Z,u_0590_s01,ins_u_0590_003,{},v2.2.0-healthy +evt_001128,u_0733,onboarding_step_viewed,2026-06-03T09:05:00Z,u_0733_s01,ins_u_0733_004,{},v2.2.0-healthy +evt_001129,u_0503,session_abandoned,2026-06-03T09:06:00Z,u_0503_s01,ins_u_0503_002,{},v2.2.0-healthy +evt_001130,u_0707,signup_completed,2026-06-03T09:06:00Z,u_0707_s01,ins_u_0707_002,{},v2.2.0-healthy +evt_001131,u_0219,profile_saved,2026-06-03T09:07:00Z,u_0219_s01,ins_u_0219_003,{},v2.2.0-healthy +evt_001132,u_0376,profile_saved,2026-06-03T09:07:00Z,u_0376_s01,ins_u_0376_003,{},v2.2.0-healthy +evt_001133,u_0577,session_abandoned,2026-06-03T09:07:00Z,u_0577_s01,ins_u_0577_003,{},v2.2.0-healthy +evt_001134,u_0793,signup_started,2026-06-03T09:07:00Z,u_0793_s01,ins_u_0793_001,{},v2.2.0-healthy +evt_001135,u_0219,error_shown,2026-06-03T09:08:00Z,u_0219_s01,ins_u_0219_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001136,u_0376,onboarding_step_viewed,2026-06-03T09:09:00Z,u_0376_s01,ins_u_0376_004,{},v2.2.0-healthy +evt_001137,u_0537,onboarding_completed,2026-06-03T09:10:00Z,u_0537_s01,ins_u_0537_006,"{""completed_at"": ""2026-06-03T09:10:00Z""}",v2.2.0-healthy +evt_001138,u_0190,activation_completed,2026-06-03T09:11:00Z,u_0190_s01,ins_u_0190_005,{},v2.2.0-healthy +evt_001139,u_0707,profile_saved,2026-06-03T09:13:00Z,u_0707_s01,ins_u_0707_003,{},v2.2.0-healthy +evt_001140,u_0263,signup_started,2026-06-03T09:15:00Z,u_0263_s01,ins_u_0263_001,{},v2.2.0-healthy +evt_001141,u_0707,onboarding_step_viewed,2026-06-03T09:15:00Z,u_0707_s01,ins_u_0707_004,{},v2.2.0-healthy +evt_001142,u_0793,session_abandoned,2026-06-03T09:15:00Z,u_0793_s01,ins_u_0793_002,{},v2.2.0-healthy +evt_001143,u_0219,feature_used,2026-06-03T09:17:00Z,u_0219_s01,ins_u_0219_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001144,u_0263,signup_completed,2026-06-03T09:18:00Z,u_0263_s01,ins_u_0263_002,{},v2.2.0-healthy +evt_001145,u_0733,feature_used,2026-06-03T09:18:00Z,u_0733_s01,ins_u_0733_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001146,u_0376,feature_used,2026-06-03T09:21:00Z,u_0376_s01,ins_u_0376_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001147,u_0263,session_abandoned,2026-06-03T09:22:00Z,u_0263_s01,ins_u_0263_003,{},v2.2.0-healthy +evt_001148,u_0227,signup_started,2026-06-03T09:24:00Z,u_0227_s01,ins_u_0227_001,{},v2.2.0-healthy +evt_001149,u_0474,signup_started,2026-06-03T09:28:00Z,u_0474_s01,ins_u_0474_001,{},v2.2.0-healthy +evt_001150,u_0227,signup_completed,2026-06-03T09:31:00Z,u_0227_s01,ins_u_0227_002,{},v2.2.0-healthy +evt_001151,u_0474,signup_completed,2026-06-03T09:35:00Z,u_0474_s01,ins_u_0474_002,{},v2.2.0-healthy +evt_001152,u_0707,feature_used,2026-06-03T09:36:00Z,u_0707_s01,ins_u_0707_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001153,u_0547,signup_started,2026-06-03T09:37:00Z,u_0547_s01,ins_u_0547_001,{},v2.2.0-healthy +evt_001154,u_0227,profile_saved,2026-06-03T09:38:00Z,u_0227_s01,ins_u_0227_003,{},v2.2.0-healthy +evt_001155,u_0474,profile_saved,2026-06-03T09:38:00Z,u_0474_s01,ins_u_0474_003,{},v2.2.0-healthy +evt_001156,u_0547,signup_completed,2026-06-03T09:38:00Z,u_0547_s01,ins_u_0547_002,{},v2.2.0-healthy +evt_001157,u_0578,signup_started,2026-06-03T09:38:00Z,u_0578_s01,ins_u_0578_001,{},v2.2.0-healthy +evt_001158,u_0282,onboarding_completed,2026-06-03T09:39:00Z,u_0282_s01,ins_u_0282_005,"{""completed_at"": ""2026-06-03T09:26:00Z""}",v2.2.0-healthy +evt_001159,u_0474,onboarding_step_viewed,2026-06-03T09:40:00Z,u_0474_s01,ins_u_0474_004,{},v2.2.0-healthy +evt_001160,u_0219,onboarding_completed,2026-06-03T09:42:00Z,u_0219_s01,ins_u_0219_006,"{""completed_at"": ""2026-06-03T09:37:00Z""}",v2.2.0-healthy +evt_001161,u_0008,signup_started,2026-06-03T09:43:00Z,u_0008_s01,ins_u_0008_001,{},v2.2.0-healthy +evt_001162,u_0578,signup_completed,2026-06-03T09:44:00Z,u_0578_s01,ins_u_0578_002,{},v2.2.0-healthy +evt_001163,u_0547,profile_saved,2026-06-03T09:45:00Z,u_0547_s01,ins_u_0547_003,{},v2.2.0-healthy +evt_001164,u_0547,error_shown,2026-06-03T09:46:00Z,u_0547_s01,ins_u_0547_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001165,u_0008,session_abandoned,2026-06-03T09:48:00Z,u_0008_s01,ins_u_0008_002,{},v2.2.0-healthy +evt_001166,u_0376,onboarding_completed,2026-06-03T09:48:00Z,u_0376_s01,ins_u_0376_006,"{""completed_at"": ""2026-06-03T09:40:00Z""}",v2.2.0-healthy +evt_001167,u_0547,onboarding_step_viewed,2026-06-03T09:51:00Z,u_0547_s01,ins_u_0547_005,{},v2.2.0-healthy +evt_001168,u_0578,profile_saved,2026-06-03T09:54:00Z,u_0578_s01,ins_u_0578_003,{},v2.2.0-healthy +evt_001169,u_0305,signup_started,2026-06-03T09:57:00Z,u_0305_s01,ins_u_0305_001,{},v2.2.0-healthy +evt_001170,u_0578,onboarding_step_viewed,2026-06-03T09:57:00Z,u_0578_s01,ins_u_0578_004,{},v2.2.0-healthy +evt_001171,u_0547,feature_used,2026-06-03T10:00:00Z,u_0547_s01,ins_u_0547_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001172,u_0733,activation_completed,2026-06-03T10:00:00Z,u_0733_s01,ins_u_0733_006,{},v2.2.0-healthy +evt_001173,u_0227,feature_used,2026-06-03T10:02:00Z,u_0227_s01,ins_u_0227_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001174,u_0474,feature_used,2026-06-03T10:02:00Z,u_0474_s01,ins_u_0474_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001175,u_0305,signup_completed,2026-06-03T10:05:00Z,u_0305_s01,ins_u_0305_002,{},v2.2.0-healthy +evt_001176,u_0578,feature_used,2026-06-03T10:06:00Z,u_0578_s01,ins_u_0578_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001177,u_0635,signup_started,2026-06-03T10:07:00Z,u_0635_s01,ins_u_0635_001,{},v2.2.0-healthy +evt_001178,u_0305,profile_saved,2026-06-03T10:09:00Z,u_0305_s01,ins_u_0305_003,{},v2.2.0-healthy +evt_001179,u_0635,signup_completed,2026-06-03T10:12:00Z,u_0635_s01,ins_u_0635_002,{},v2.2.0-healthy +evt_001180,u_0707,activation_completed,2026-06-03T10:12:00Z,u_0707_s01,ins_u_0707_006,{},v2.2.0-healthy +evt_001181,u_0787,signup_started,2026-06-03T10:13:00Z,u_0787_s01,ins_u_0787_001,{},v2.2.0-healthy +evt_001182,u_0305,onboarding_step_viewed,2026-06-03T10:15:00Z,u_0305_s01,ins_u_0305_004,{},v2.2.0-healthy +evt_001183,u_0635,profile_saved,2026-06-03T10:15:00Z,u_0635_s01,ins_u_0635_003,{},v2.2.0-healthy +evt_001184,u_0192,signup_started,2026-06-03T10:19:00Z,u_0192_s01,ins_u_0192_001,{},v2.2.0-healthy +evt_001185,u_0227,onboarding_completed,2026-06-03T10:19:00Z,u_0227_s01,ins_u_0227_005,"{""completed_at"": ""2026-06-03T10:08:00Z""}",v2.2.0-healthy +evt_001186,u_0787,signup_completed,2026-06-03T10:20:00Z,u_0787_s01,ins_u_0787_002,{},v2.2.0-healthy +evt_001187,u_0635,onboarding_step_viewed,2026-06-03T10:21:00Z,u_0635_s01,ins_u_0635_004,{},v2.2.0-healthy +evt_001188,u_0474,onboarding_completed,2026-06-03T10:22:00Z,u_0474_s01,ins_u_0474_006,"{""completed_at"": ""2026-06-03T10:08:00Z""}",v2.2.0-healthy +evt_001189,u_0305,feature_used,2026-06-03T10:24:00Z,u_0305_s01,ins_u_0305_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001190,u_0547,onboarding_completed,2026-06-03T10:24:00Z,u_0547_s01,ins_u_0547_007,"{""completed_at"": ""2026-06-03T10:19:00Z""}",v2.2.0-healthy +evt_001191,u_0192,session_abandoned,2026-06-03T10:26:00Z,u_0192_s01,ins_u_0192_002,{},v2.2.0-healthy +evt_001192,u_0787,session_abandoned,2026-06-03T10:26:00Z,u_0787_s01,ins_u_0787_003,{},v2.2.0-healthy +evt_001193,u_0684,signup_started,2026-06-03T10:27:00Z,u_0684_s01,ins_u_0684_001,{},v2.2.0-healthy +evt_001194,u_0684,signup_completed,2026-06-03T10:28:00Z,u_0684_s01,ins_u_0684_002,{},v2.2.0-healthy +evt_001195,u_0635,feature_used,2026-06-03T10:29:00Z,u_0635_s01,ins_u_0635_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001196,u_0684,profile_saved,2026-06-03T10:33:00Z,u_0684_s01,ins_u_0684_003,{},v2.2.0-healthy +evt_001197,u_0684,onboarding_step_viewed,2026-06-03T10:35:00Z,u_0684_s01,ins_u_0684_004,{},v2.2.0-healthy +evt_001198,u_0736,signup_started,2026-06-03T10:39:00Z,u_0736_s01,ins_u_0736_001,{},v2.2.0-healthy +evt_001199,u_0202,signup_started,2026-06-03T10:42:00Z,u_0202_s01,ins_u_0202_001,{},v2.2.0-healthy +evt_001200,u_0305,onboarding_completed,2026-06-03T10:42:00Z,u_0305_s01,ins_u_0305_006,"{""completed_at"": ""2026-06-03T10:37:00Z""}",v2.2.0-healthy +evt_001201,u_0370,signup_started,2026-06-03T10:43:00Z,u_0370_s01,ins_u_0370_001,{},v2.2.0-healthy +evt_001202,u_0357,signup_started,2026-06-03T10:45:00Z,u_0357_s01,ins_u_0357_001,{},v2.2.0-healthy +evt_001203,u_0684,feature_used,2026-06-03T10:45:00Z,u_0684_s01,ins_u_0684_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001204,u_0202,signup_completed,2026-06-03T10:46:00Z,u_0202_s01,ins_u_0202_002,{},v2.2.0-healthy +evt_001205,u_0736,signup_completed,2026-06-03T10:46:00Z,u_0736_s01,ins_u_0736_002,{},v2.2.0-healthy +evt_001206,u_0202,profile_saved,2026-06-03T10:48:00Z,u_0202_s01,ins_u_0202_003,{},v2.2.0-healthy +evt_001207,u_0474,activation_completed,2026-06-03T10:49:00Z,u_0474_s01,ins_u_0474_007,{},v2.2.0-healthy +evt_001208,u_0370,signup_completed,2026-06-03T10:51:00Z,u_0370_s01,ins_u_0370_002,{},v2.2.0-healthy +evt_001209,u_0357,signup_completed,2026-06-03T10:53:00Z,u_0357_s01,ins_u_0357_002,{},v2.2.0-healthy +evt_001210,u_0357,profile_saved,2026-06-03T10:55:00Z,u_0357_s01,ins_u_0357_003,{},v2.2.0-healthy +evt_001211,u_0370,profile_saved,2026-06-03T10:55:00Z,u_0370_s01,ins_u_0370_003,{},v2.2.0-healthy +evt_001212,u_0635,onboarding_completed,2026-06-03T10:55:00Z,u_0635_s01,ins_u_0635_006,"{""completed_at"": ""2026-06-03T10:55:00Z""}",v2.2.0-healthy +evt_001213,u_0736,profile_saved,2026-06-03T10:56:00Z,u_0736_s01,ins_u_0736_003,{},v2.2.0-healthy +evt_001214,u_0617,signup_started,2026-06-03T10:58:00Z,u_0617_s01,ins_u_0617_001,{},v2.2.0-healthy +evt_001215,u_0357,onboarding_step_viewed,2026-06-03T11:01:00Z,u_0357_s01,ins_u_0357_004,{},v2.2.0-healthy +evt_001216,u_0617,session_abandoned,2026-06-03T11:01:00Z,u_0617_s01,ins_u_0617_002,{},v2.2.0-healthy +evt_001217,u_0736,onboarding_step_viewed,2026-06-03T11:01:00Z,u_0736_s01,ins_u_0736_004,{},v2.2.0-healthy +evt_001218,u_0357,feature_used,2026-06-03T11:02:00Z,u_0357_s01,ins_u_0357_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001219,u_0305,activation_completed,2026-06-03T11:03:00Z,u_0305_s01,ins_u_0305_007,{},v2.2.0-healthy +evt_001220,u_0605,signup_started,2026-06-03T11:12:00Z,u_0605_s01,ins_u_0605_001,{},v2.2.0-healthy +evt_001221,u_0202,feature_used,2026-06-03T11:13:00Z,u_0202_s01,ins_u_0202_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_001222,u_0345,signup_started,2026-06-03T11:13:00Z,u_0345_s01,ins_u_0345_001,{},v2.2.0-healthy +evt_001223,u_0605,signup_completed,2026-06-03T11:13:00Z,u_0605_s01,ins_u_0605_002,{},v2.2.0-healthy +evt_001224,u_0675,signup_started,2026-06-03T11:15:00Z,u_0675_s01,ins_u_0675_001,{},v2.2.0-healthy +evt_001225,u_0768,signup_started,2026-06-03T11:15:00Z,u_0768_s01,ins_u_0768_001,{},v2.2.0-healthy +evt_001226,u_0345,signup_completed,2026-06-03T11:17:00Z,u_0345_s01,ins_u_0345_002,{},v2.2.0-healthy +evt_001227,u_0495,signup_started,2026-06-03T11:17:00Z,u_0495_s01,ins_u_0495_001,{},v2.2.0-healthy +evt_001228,u_0605,profile_saved,2026-06-03T11:17:00Z,u_0605_s01,ins_u_0605_003,{},v2.2.0-healthy +evt_001229,u_0605,error_shown,2026-06-03T11:18:00Z,u_0605_s01,ins_u_0605_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001230,u_0675,signup_completed,2026-06-03T11:19:00Z,u_0675_s01,ins_u_0675_002,{},v2.2.0-healthy +evt_001231,u_0605,onboarding_step_viewed,2026-06-03T11:20:00Z,u_0605_s01,ins_u_0605_005,{},v2.2.0-healthy +evt_001232,u_0357,onboarding_completed,2026-06-03T11:21:00Z,u_0357_s01,ins_u_0357_006,"{""completed_at"": ""2026-06-03T11:23:00Z""}",v2.2.0-healthy +evt_001233,u_0768,signup_completed,2026-06-03T11:22:00Z,u_0768_s01,ins_u_0768_002,{},v2.2.0-healthy +evt_001234,u_0437,signup_started,2026-06-03T11:23:00Z,u_0437_s01,ins_u_0437_001,{},v2.2.0-healthy +evt_001235,u_0736,onboarding_completed,2026-06-03T11:23:00Z,u_0736_s01,ins_u_0736_005,"{""completed_at"": ""2026-06-03T11:32:00Z""}",v2.2.0-healthy +evt_001236,u_0495,signup_completed,2026-06-03T11:24:00Z,u_0495_s01,ins_u_0495_002,{},v2.2.0-healthy +evt_001237,u_0437,signup_completed,2026-06-03T11:25:00Z,u_0437_s01,ins_u_0437_002,{},v2.2.0-healthy +evt_001238,u_0675,profile_saved,2026-06-03T11:25:00Z,u_0675_s01,ins_u_0675_003,{},v2.2.0-healthy +evt_001239,u_0345,session_abandoned,2026-06-03T11:26:00Z,u_0345_s01,ins_u_0345_003,{},v2.2.0-healthy +evt_001240,u_0394,signup_started,2026-06-03T11:26:00Z,u_0394_s01,ins_u_0394_001,{},v2.2.0-healthy +evt_001241,u_0675,onboarding_step_viewed,2026-06-03T11:28:00Z,u_0675_s01,ins_u_0675_004,{},v2.2.0-healthy +evt_001242,u_0202,onboarding_completed,2026-06-03T11:29:00Z,u_0202_s01,ins_u_0202_005,"{""completed_at"": ""2026-06-03T11:21:00Z""}",v2.2.0-healthy +evt_001243,u_0437,session_abandoned,2026-06-03T11:29:00Z,u_0437_s01,ins_u_0437_003,{},v2.2.0-healthy +evt_001244,u_0768,profile_saved,2026-06-03T11:29:00Z,u_0768_s01,ins_u_0768_003,{},v2.2.0-healthy +evt_001245,u_0768,error_shown,2026-06-03T11:30:00Z,u_0768_s01,ins_u_0768_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001246,u_0684,activation_completed,2026-06-03T11:31:00Z,u_0684_s01,ins_u_0684_006,{},v2.2.0-healthy +evt_001247,u_0370,onboarding_completed,2026-06-03T11:32:00Z,u_0370_s01,ins_u_0370_004,"{""completed_at"": ""2026-06-03T11:24:00Z""}",v2.2.0-healthy +evt_001248,u_0394,signup_completed,2026-06-03T11:32:00Z,u_0394_s01,ins_u_0394_002,{},v2.2.0-healthy +evt_001249,u_0495,profile_saved,2026-06-03T11:32:00Z,u_0495_s01,ins_u_0495_003,{},v2.2.0-healthy +evt_001250,u_0768,onboarding_step_viewed,2026-06-03T11:33:00Z,u_0768_s01,ins_u_0768_005,{},v2.2.0-healthy +evt_001251,u_0605,feature_used,2026-06-03T11:34:00Z,u_0605_s01,ins_u_0605_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001252,u_0394,session_abandoned,2026-06-03T11:37:00Z,u_0394_s01,ins_u_0394_003,{},v2.2.0-healthy +evt_001253,u_0495,onboarding_step_viewed,2026-06-03T11:38:00Z,u_0495_s01,ins_u_0495_004,{},v2.2.0-healthy +evt_001254,u_0049,signup_started,2026-06-03T11:40:00Z,u_0049_s01,ins_u_0049_001,{},v2.2.0-healthy +evt_001255,u_0077,signup_started,2026-06-03T11:42:00Z,u_0077_s01,ins_u_0077_001,{},v2.2.0-healthy +evt_001256,u_0495,feature_used,2026-06-03T11:42:00Z,u_0495_s01,ins_u_0495_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001257,u_0675,feature_used,2026-06-03T11:42:00Z,u_0675_s01,ins_u_0675_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001258,u_0238,signup_started,2026-06-03T11:44:00Z,u_0238_s01,ins_u_0238_001,{},v2.2.0-healthy +evt_001259,u_0443,signup_started,2026-06-03T11:45:00Z,u_0443_s01,ins_u_0443_001,{},v2.2.0-healthy +evt_001260,u_0768,feature_used,2026-06-03T11:46:00Z,u_0768_s01,ins_u_0768_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_001261,u_0443,signup_completed,2026-06-03T11:47:00Z,u_0443_s01,ins_u_0443_002,{},v2.2.0-healthy +evt_001262,u_0049,signup_completed,2026-06-03T11:48:00Z,u_0049_s01,ins_u_0049_002,{},v2.2.0-healthy +evt_001263,u_0077,signup_completed,2026-06-03T11:48:00Z,u_0077_s01,ins_u_0077_002,{},v2.2.0-healthy +evt_001264,u_0238,signup_completed,2026-06-03T11:50:00Z,u_0238_s01,ins_u_0238_002,{},v2.2.0-healthy +evt_001265,u_0723,signup_started,2026-06-03T11:50:00Z,u_0723_s01,ins_u_0723_001,{},v2.2.0-healthy +evt_001266,u_0443,session_abandoned,2026-06-03T11:53:00Z,u_0443_s01,ins_u_0443_003,{},v2.2.0-healthy +evt_001267,u_0723,session_abandoned,2026-06-03T11:53:00Z,u_0723_s01,ins_u_0723_002,{},v2.2.0-healthy +evt_001268,u_0370,activation_completed,2026-06-03T11:54:00Z,u_0370_s01,ins_u_0370_005,{},v2.2.0-healthy +evt_001269,u_0077,profile_saved,2026-06-03T11:55:00Z,u_0077_s01,ins_u_0077_003,{},v2.2.0-healthy +evt_001270,u_0238,session_abandoned,2026-06-03T11:55:00Z,u_0238_s01,ins_u_0238_003,{},v2.2.0-healthy +evt_001271,u_0605,onboarding_completed,2026-06-03T11:56:00Z,u_0605_s01,ins_u_0605_007,"{""completed_at"": ""2026-06-03T11:45:00Z""}",v2.2.0-healthy +evt_001272,u_0049,session_abandoned,2026-06-03T11:57:00Z,u_0049_s01,ins_u_0049_003,{},v2.2.0-healthy +evt_001273,u_0077,onboarding_step_viewed,2026-06-03T12:00:00Z,u_0077_s01,ins_u_0077_004,{},v2.2.0-healthy +evt_001274,u_0788,signup_started,2026-06-03T12:00:00Z,u_0788_s01,ins_u_0788_001,{},v2.2.0-healthy +evt_001275,u_0495,onboarding_completed,2026-06-03T12:03:00Z,u_0495_s01,ins_u_0495_006,"{""completed_at"": ""2026-06-03T12:03:00Z""}",v2.2.0-healthy +evt_001276,u_0675,onboarding_completed,2026-06-03T12:03:00Z,u_0675_s01,ins_u_0675_006,"{""completed_at"": ""2026-06-03T11:57:00Z""}",v2.2.0-healthy +evt_001277,u_0087,signup_started,2026-06-03T12:04:00Z,u_0087_s01,ins_u_0087_001,{},v2.2.0-healthy +evt_001278,u_0788,signup_completed,2026-06-03T12:04:00Z,u_0788_s01,ins_u_0788_002,{},v2.2.0-healthy +evt_001279,u_0087,signup_completed,2026-06-03T12:11:00Z,u_0087_s01,ins_u_0087_002,{},v2.2.0-healthy +evt_001280,u_0788,session_abandoned,2026-06-03T12:12:00Z,u_0788_s01,ins_u_0788_003,{},v2.2.0-healthy +evt_001281,u_0087,profile_saved,2026-06-03T12:16:00Z,u_0087_s01,ins_u_0087_003,{},v2.2.0-healthy +evt_001282,u_0544,signup_started,2026-06-03T12:17:00Z,u_0544_s01,ins_u_0544_001,{},v2.2.0-healthy +evt_001283,u_0077,feature_used,2026-06-03T12:19:00Z,u_0077_s01,ins_u_0077_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001284,u_0087,onboarding_step_viewed,2026-06-03T12:20:00Z,u_0087_s01,ins_u_0087_004,{},v2.2.0-healthy +evt_001285,u_0768,activation_completed,2026-06-03T12:21:00Z,u_0768_s01,ins_u_0768_007,{},v2.2.0-healthy +evt_001286,u_0077,onboarding_completed,2026-06-03T12:22:00Z,u_0077_s01,ins_u_0077_006,"{""completed_at"": ""2026-06-03T12:32:00Z""}",v2.2.0-healthy +evt_001287,u_0544,signup_completed,2026-06-03T12:24:00Z,u_0544_s01,ins_u_0544_002,{},v2.2.0-healthy +evt_001288,u_0544,profile_saved,2026-06-03T12:31:00Z,u_0544_s01,ins_u_0544_003,{},v2.2.0-healthy +evt_001289,u_0544,onboarding_step_viewed,2026-06-03T12:36:00Z,u_0544_s01,ins_u_0544_004,{},v2.2.0-healthy +evt_001290,u_0692,signup_started,2026-06-03T12:38:00Z,u_0692_s01,ins_u_0692_001,{},v2.2.0-healthy +evt_001291,u_0473,signup_started,2026-06-03T12:40:00Z,u_0473_s01,ins_u_0473_001,{},v2.2.0-healthy +evt_001292,u_0473,signup_completed,2026-06-03T12:43:00Z,u_0473_s01,ins_u_0473_002,{},v2.2.0-healthy +evt_001293,u_0087,onboarding_completed,2026-06-03T12:44:00Z,u_0087_s01,ins_u_0087_005,"{""completed_at"": ""2026-06-03T12:55:00Z""}",v2.2.0-healthy +evt_001294,u_0322,signup_started,2026-06-03T12:44:00Z,u_0322_s01,ins_u_0322_001,{},v2.2.0-healthy +evt_001295,u_0544,feature_used,2026-06-03T12:44:00Z,u_0544_s01,ins_u_0544_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001296,u_0692,session_abandoned,2026-06-03T12:44:00Z,u_0692_s01,ins_u_0692_002,{},v2.2.0-healthy +evt_001297,u_0734,signup_started,2026-06-03T12:44:00Z,u_0734_s01,ins_u_0734_001,{},v2.2.0-healthy +evt_001298,u_0734,signup_completed,2026-06-03T12:48:00Z,u_0734_s01,ins_u_0734_002,{},v2.2.0-healthy +evt_001299,u_0255,signup_started,2026-06-03T12:50:00Z,u_0255_s01,ins_u_0255_001,{},v2.2.0-healthy +evt_001300,u_0322,session_abandoned,2026-06-03T12:50:00Z,u_0322_s01,ins_u_0322_002,{},v2.2.0-healthy +evt_001301,u_0473,profile_saved,2026-06-03T12:51:00Z,u_0473_s01,ins_u_0473_003,{},v2.2.0-healthy +evt_001302,u_0734,session_abandoned,2026-06-03T12:52:00Z,u_0734_s01,ins_u_0734_003,{},v2.2.0-healthy +evt_001303,u_0473,onboarding_step_viewed,2026-06-03T12:55:00Z,u_0473_s01,ins_u_0473_004,{},v2.2.0-healthy +evt_001304,u_0255,signup_completed,2026-06-03T12:56:00Z,u_0255_s01,ins_u_0255_002,{},v2.2.0-healthy +evt_001305,u_0255,profile_saved,2026-06-03T13:02:00Z,u_0255_s01,ins_u_0255_003,{},v2.2.0-healthy +evt_001306,u_0473,feature_used,2026-06-03T13:05:00Z,u_0473_s01,ins_u_0473_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001307,u_0637,signup_started,2026-06-03T13:06:00Z,u_0637_s01,ins_u_0637_001,{},v2.2.0-healthy +evt_001308,u_0637,signup_completed,2026-06-03T13:08:00Z,u_0637_s01,ins_u_0637_002,{},v2.2.0-healthy +evt_001309,u_0637,profile_saved,2026-06-03T13:10:00Z,u_0637_s01,ins_u_0637_003,{},v2.2.0-healthy +evt_001310,u_0637,error_shown,2026-06-03T13:11:00Z,u_0637_s01,ins_u_0637_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001311,u_0637,onboarding_step_viewed,2026-06-03T13:12:00Z,u_0637_s01,ins_u_0637_005,{},v2.2.0-healthy +evt_001312,u_0128,signup_started,2026-06-03T13:15:00Z,u_0128_s01,ins_u_0128_001,{},v2.2.0-healthy +evt_001313,u_0438,signup_started,2026-06-03T13:15:00Z,u_0438_s01,ins_u_0438_001,{},v2.2.0-healthy +evt_001314,u_0544,onboarding_completed,2026-06-03T13:15:00Z,u_0544_s01,ins_u_0544_006,"{""completed_at"": ""2026-06-03T13:01:00Z""}",v2.2.0-healthy +evt_001315,u_0128,signup_completed,2026-06-03T13:18:00Z,u_0128_s01,ins_u_0128_002,{},v2.2.0-healthy +evt_001316,u_0438,signup_completed,2026-06-03T13:19:00Z,u_0438_s01,ins_u_0438_002,{},v2.2.0-healthy +evt_001317,u_0637,feature_used,2026-06-03T13:19:00Z,u_0637_s01,ins_u_0637_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001318,u_0473,onboarding_completed,2026-06-03T13:20:00Z,u_0473_s01,ins_u_0473_006,"{""completed_at"": ""2026-06-03T13:19:00Z""}",v2.2.0-healthy +evt_001319,u_0128,profile_saved,2026-06-03T13:28:00Z,u_0128_s01,ins_u_0128_003,{},v2.2.0-healthy +evt_001320,u_0438,profile_saved,2026-06-03T13:29:00Z,u_0438_s01,ins_u_0438_003,{},v2.2.0-healthy +evt_001321,u_0438,error_shown,2026-06-03T13:30:00Z,u_0438_s01,ins_u_0438_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001322,u_0255,onboarding_completed,2026-06-03T13:31:00Z,u_0255_s01,ins_u_0255_004,"{""completed_at"": ""2026-06-03T13:39:00Z""}",v2.2.0-healthy +evt_001323,u_0660,signup_started,2026-06-03T13:32:00Z,u_0660_s01,ins_u_0660_001,{},v2.2.0-healthy +evt_001324,u_0128,onboarding_step_viewed,2026-06-03T13:33:00Z,u_0128_s01,ins_u_0128_004,{},v2.2.0-healthy +evt_001325,u_0438,onboarding_step_viewed,2026-06-03T13:33:00Z,u_0438_s01,ins_u_0438_005,{},v2.2.0-healthy +evt_001326,u_0660,signup_completed,2026-06-03T13:33:00Z,u_0660_s01,ins_u_0660_002,{},v2.2.0-healthy +evt_001327,u_0438,feature_used,2026-06-03T13:37:00Z,u_0438_s01,ins_u_0438_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_001328,u_0660,profile_saved,2026-06-03T13:42:00Z,u_0660_s01,ins_u_0660_003,{},v2.2.0-healthy +evt_001329,u_0660,onboarding_step_viewed,2026-06-03T13:44:00Z,u_0660_s01,ins_u_0660_004,{},v2.2.0-healthy +evt_001330,u_0128,feature_used,2026-06-03T13:47:00Z,u_0128_s01,ins_u_0128_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001331,u_0135,signup_started,2026-06-03T13:48:00Z,u_0135_s01,ins_u_0135_001,{},v2.2.0-healthy +evt_001332,u_0637,onboarding_completed,2026-06-03T13:51:00Z,u_0637_s01,ins_u_0637_007,"{""completed_at"": ""2026-06-03T13:40:00Z""}",v2.2.0-healthy +evt_001333,u_0135,signup_completed,2026-06-03T13:53:00Z,u_0135_s01,ins_u_0135_002,{},v2.2.0-healthy +evt_001334,u_0128,onboarding_completed,2026-06-03T13:55:00Z,u_0128_s01,ins_u_0128_006,"{""completed_at"": ""2026-06-03T14:01:00Z""}",v2.2.0-healthy +evt_001335,u_0135,profile_saved,2026-06-03T13:58:00Z,u_0135_s01,ins_u_0135_003,{},v2.2.0-healthy +evt_001336,u_0135,onboarding_step_viewed,2026-06-03T14:00:00Z,u_0135_s01,ins_u_0135_004,{},v2.2.0-healthy +evt_001337,u_0438,onboarding_completed,2026-06-03T14:00:00Z,u_0438_s01,ins_u_0438_007,"{""completed_at"": ""2026-06-03T14:06:00Z""}",v2.2.0-healthy +evt_001338,u_0660,feature_used,2026-06-03T14:07:00Z,u_0660_s01,ins_u_0660_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001339,u_0473,activation_completed,2026-06-03T14:10:00Z,u_0473_s01,ins_u_0473_007,{},v2.2.0-healthy +evt_001340,u_0775,signup_started,2026-06-03T14:11:00Z,u_0775_s01,ins_u_0775_001,{},v2.2.0-healthy +evt_001341,u_0660,onboarding_completed,2026-06-03T14:13:00Z,u_0660_s01,ins_u_0660_006,"{""completed_at"": ""2026-06-03T14:20:00Z""}",v2.2.0-healthy +evt_001342,u_0637,activation_completed,2026-06-03T14:19:00Z,u_0637_s01,ins_u_0637_008,{},v2.2.0-healthy +evt_001343,u_0775,signup_completed,2026-06-03T14:19:00Z,u_0775_s01,ins_u_0775_002,{},v2.2.0-healthy +evt_001344,u_0710,signup_started,2026-06-03T14:24:00Z,u_0710_s01,ins_u_0710_001,{},v2.2.0-healthy +evt_001345,u_0743,signup_started,2026-06-03T14:26:00Z,u_0743_s01,ins_u_0743_001,{},v2.2.0-healthy +evt_001346,u_0775,profile_saved,2026-06-03T14:26:00Z,u_0775_s01,ins_u_0775_003,{},v2.2.0-healthy +evt_001347,u_0128,activation_completed,2026-06-03T14:27:00Z,u_0128_s01,ins_u_0128_007,{},v2.2.0-healthy +evt_001348,u_0743,signup_completed,2026-06-03T14:30:00Z,u_0743_s01,ins_u_0743_002,{},v2.2.0-healthy +evt_001349,u_0593,signup_started,2026-06-03T14:31:00Z,u_0593_s01,ins_u_0593_001,{},v2.2.0-healthy +evt_001350,u_0710,signup_completed,2026-06-03T14:31:00Z,u_0710_s01,ins_u_0710_002,{},v2.2.0-healthy +evt_001351,u_0775,onboarding_step_viewed,2026-06-03T14:31:00Z,u_0775_s01,ins_u_0775_004,{},v2.2.0-healthy +evt_001352,u_0438,activation_completed,2026-06-03T14:35:00Z,u_0438_s01,ins_u_0438_008,{},v2.2.0-healthy +evt_001353,u_0710,profile_saved,2026-06-03T14:35:00Z,u_0710_s01,ins_u_0710_003,{},v2.2.0-healthy +evt_001354,u_0135,onboarding_completed,2026-06-03T14:36:00Z,u_0135_s01,ins_u_0135_005,"{""completed_at"": ""2026-06-03T14:37:00Z""}",v2.2.0-healthy +evt_001355,u_0593,signup_completed,2026-06-03T14:38:00Z,u_0593_s01,ins_u_0593_002,{},v2.2.0-healthy +evt_001356,u_0710,onboarding_step_viewed,2026-06-03T14:38:00Z,u_0710_s01,ins_u_0710_004,{},v2.2.0-healthy +evt_001357,u_0743,profile_saved,2026-06-03T14:39:00Z,u_0743_s01,ins_u_0743_003,{},v2.2.0-healthy +evt_001358,u_0688,signup_started,2026-06-03T14:41:00Z,u_0688_s01,ins_u_0688_001,{},v2.2.0-healthy +evt_001359,u_0593,session_abandoned,2026-06-03T14:43:00Z,u_0593_s01,ins_u_0593_003,{},v2.2.0-healthy +evt_001360,u_0743,onboarding_step_viewed,2026-06-03T14:43:00Z,u_0743_s01,ins_u_0743_004,{},v2.2.0-healthy +evt_001361,u_0775,feature_used,2026-06-03T14:44:00Z,u_0775_s01,ins_u_0775_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001362,u_0688,session_abandoned,2026-06-03T14:45:00Z,u_0688_s01,ins_u_0688_002,{},v2.2.0-healthy +evt_001363,u_0660,activation_completed,2026-06-03T14:49:00Z,u_0660_s01,ins_u_0660_007,{},v2.2.0-healthy +evt_001364,u_0090,signup_started,2026-06-03T14:51:00Z,u_0090_s01,ins_u_0090_001,{},v2.2.0-healthy +evt_001365,u_0069,signup_started,2026-06-03T14:55:00Z,u_0069_s01,ins_u_0069_001,{},v2.2.0-healthy +evt_001366,u_0090,signup_completed,2026-06-03T14:58:00Z,u_0090_s01,ins_u_0090_002,{},v2.2.0-healthy +evt_001367,u_0775,onboarding_completed,2026-06-03T15:00:00Z,u_0775_s01,ins_u_0775_006,"{""completed_at"": ""2026-06-03T15:06:00Z""}",v2.2.0-healthy +evt_001368,u_0069,signup_completed,2026-06-03T15:03:00Z,u_0069_s01,ins_u_0069_002,{},v2.2.0-healthy +evt_001369,u_0189,signup_started,2026-06-03T15:05:00Z,u_0189_s01,ins_u_0189_001,{},v2.2.0-healthy +evt_001370,u_0090,profile_saved,2026-06-03T15:07:00Z,u_0090_s01,ins_u_0090_003,{},v2.2.0-healthy +evt_001371,u_0710,onboarding_completed,2026-06-03T15:07:00Z,u_0710_s01,ins_u_0710_005,"{""completed_at"": ""2026-06-03T15:15:00Z""}",v2.2.0-healthy +evt_001372,u_0090,error_shown,2026-06-03T15:08:00Z,u_0090_s01,ins_u_0090_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001373,u_0058,signup_started,2026-06-03T15:10:00Z,u_0058_s01,ins_u_0058_001,{},v2.2.0-healthy +evt_001374,u_0189,signup_completed,2026-06-03T15:11:00Z,u_0189_s01,ins_u_0189_002,{},v2.2.0-healthy +evt_001375,u_0069,profile_saved,2026-06-03T15:12:00Z,u_0069_s01,ins_u_0069_003,{},v2.2.0-healthy +evt_001376,u_0090,onboarding_step_viewed,2026-06-03T15:12:00Z,u_0090_s01,ins_u_0090_005,{},v2.2.0-healthy +evt_001377,u_0545,signup_started,2026-06-03T15:12:00Z,u_0545_s01,ins_u_0545_001,{},v2.2.0-healthy +evt_001378,u_0058,signup_completed,2026-06-03T15:14:00Z,u_0058_s01,ins_u_0058_002,{},v2.2.0-healthy +evt_001379,u_0444,signup_started,2026-06-03T15:14:00Z,u_0444_s01,ins_u_0444_001,{},v2.2.0-healthy +evt_001380,u_0069,onboarding_step_viewed,2026-06-03T15:15:00Z,u_0069_s01,ins_u_0069_004,{},v2.2.0-healthy +evt_001381,u_0189,profile_saved,2026-06-03T15:17:00Z,u_0189_s01,ins_u_0189_003,{},v2.2.0-healthy +evt_001382,u_0545,session_abandoned,2026-06-03T15:19:00Z,u_0545_s01,ins_u_0545_002,{},v2.2.0-healthy +evt_001383,u_0743,onboarding_completed,2026-06-03T15:20:00Z,u_0743_s01,ins_u_0743_005,"{""completed_at"": ""2026-06-03T15:11:00Z""}",v2.2.0-healthy +evt_001384,u_0058,profile_saved,2026-06-03T15:21:00Z,u_0058_s01,ins_u_0058_003,{},v2.2.0-healthy +evt_001385,u_0090,feature_used,2026-06-03T15:21:00Z,u_0090_s01,ins_u_0090_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_001386,u_0444,signup_completed,2026-06-03T15:21:00Z,u_0444_s01,ins_u_0444_002,{},v2.2.0-healthy +evt_001387,u_0069,feature_used,2026-06-03T15:23:00Z,u_0069_s01,ins_u_0069_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001388,u_0189,onboarding_step_viewed,2026-06-03T15:23:00Z,u_0189_s01,ins_u_0189_004,{},v2.2.0-healthy +evt_001389,u_0058,onboarding_step_viewed,2026-06-03T15:26:00Z,u_0058_s01,ins_u_0058_004,{},v2.2.0-healthy +evt_001390,u_0189,feature_used,2026-06-03T15:27:00Z,u_0189_s01,ins_u_0189_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001391,u_0444,profile_saved,2026-06-03T15:29:00Z,u_0444_s01,ins_u_0444_003,{},v2.2.0-healthy +evt_001392,u_0718,signup_started,2026-06-03T15:29:00Z,u_0718_s01,ins_u_0718_001,{},v2.2.0-healthy +evt_001393,u_0718,signup_completed,2026-06-03T15:31:00Z,u_0718_s01,ins_u_0718_002,{},v2.2.0-healthy +evt_001394,u_0444,onboarding_step_viewed,2026-06-03T15:32:00Z,u_0444_s01,ins_u_0444_004,{},v2.2.0-healthy +evt_001395,u_0718,session_abandoned,2026-06-03T15:35:00Z,u_0718_s01,ins_u_0718_003,{},v2.2.0-healthy +evt_001396,u_0444,feature_used,2026-06-03T15:36:00Z,u_0444_s01,ins_u_0444_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001397,u_0090,onboarding_completed,2026-06-03T15:37:00Z,u_0090_s01,ins_u_0090_007,"{""completed_at"": ""2026-06-03T15:35:00Z""}",v2.2.0-healthy +evt_001398,u_0775,activation_completed,2026-06-03T15:44:00Z,u_0775_s01,ins_u_0775_007,{},v2.2.0-healthy +evt_001399,u_0046,signup_started,2026-06-03T15:46:00Z,u_0046_s01,ins_u_0046_001,{},v2.2.0-healthy +evt_001400,u_0069,onboarding_completed,2026-06-03T15:47:00Z,u_0069_s01,ins_u_0069_006,"{""completed_at"": ""2026-06-03T15:51:00Z""}",v2.2.0-healthy +evt_001401,u_0046,signup_completed,2026-06-03T15:48:00Z,u_0046_s01,ins_u_0046_002,{},v2.2.0-healthy +evt_001402,u_0189,onboarding_completed,2026-06-03T15:49:00Z,u_0189_s01,ins_u_0189_006,"{""completed_at"": ""2026-06-03T15:48:00Z""}",v2.2.0-healthy +evt_001403,u_0058,onboarding_completed,2026-06-03T15:51:00Z,u_0058_s01,ins_u_0058_005,"{""completed_at"": ""2026-06-03T16:00:00Z""}",v2.2.0-healthy +evt_001404,u_0710,activation_completed,2026-06-03T15:51:00Z,u_0710_s01,ins_u_0710_006,{},v2.2.0-healthy +evt_001405,u_0090,activation_completed,2026-06-03T15:53:00Z,u_0090_s01,ins_u_0090_008,{},v2.2.0-healthy +evt_001406,u_0046,session_abandoned,2026-06-03T15:57:00Z,u_0046_s01,ins_u_0046_003,{},v2.2.0-healthy +evt_001407,u_0395,signup_started,2026-06-03T16:00:00Z,u_0395_s01,ins_u_0395_001,{},v2.2.0-healthy +evt_001408,u_0395,signup_completed,2026-06-03T16:01:00Z,u_0395_s01,ins_u_0395_002,{},v2.2.0-healthy +evt_001409,u_0444,onboarding_completed,2026-06-03T16:01:00Z,u_0444_s01,ins_u_0444_006,"{""completed_at"": ""2026-06-03T16:01:00Z""}",v2.2.0-healthy +evt_001410,u_0395,profile_saved,2026-06-03T16:05:00Z,u_0395_s01,ins_u_0395_003,{},v2.2.0-healthy +evt_001411,u_0606,signup_started,2026-06-03T16:06:00Z,u_0606_s01,ins_u_0606_001,{},v2.2.0-healthy +evt_001412,u_0395,onboarding_step_viewed,2026-06-03T16:09:00Z,u_0395_s01,ins_u_0395_004,{},v2.2.0-healthy +evt_001413,u_0606,session_abandoned,2026-06-03T16:10:00Z,u_0606_s01,ins_u_0606_002,{},v2.2.0-healthy +evt_001414,u_0349,signup_started,2026-06-03T16:11:00Z,u_0349_s01,ins_u_0349_001,{},v2.2.0-healthy +evt_001415,u_0349,session_abandoned,2026-06-03T16:15:00Z,u_0349_s01,ins_u_0349_002,{},v2.2.0-healthy +evt_001416,u_0132,signup_started,2026-06-03T16:17:00Z,u_0132_s01,ins_u_0132_001,{},v2.2.0-healthy +evt_001417,u_0395,feature_used,2026-06-03T16:18:00Z,u_0395_s01,ins_u_0395_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001418,u_0132,signup_completed,2026-06-03T16:20:00Z,u_0132_s01,ins_u_0132_002,{},v2.2.0-healthy +evt_001419,u_0167,signup_started,2026-06-03T16:24:00Z,u_0167_s01,ins_u_0167_001,{},v2.2.0-healthy +evt_001420,u_0132,session_abandoned,2026-06-03T16:25:00Z,u_0132_s01,ins_u_0132_003,{},v2.2.0-healthy +evt_001421,u_0167,signup_completed,2026-06-03T16:25:00Z,u_0167_s01,ins_u_0167_002,{},v2.2.0-healthy +evt_001422,u_0189,activation_completed,2026-06-03T16:26:00Z,u_0189_s01,ins_u_0189_007,{},v2.2.0-healthy +evt_001423,u_0211,signup_started,2026-06-03T16:29:00Z,u_0211_s01,ins_u_0211_001,{},v2.2.0-healthy +evt_001424,u_0408,signup_started,2026-06-03T16:29:00Z,u_0408_s01,ins_u_0408_001,{},v2.2.0-healthy +evt_001425,u_0003,signup_started,2026-06-03T16:30:00Z,u_0003_s01,ins_u_0003_001,{},v2.2.0-healthy +evt_001426,u_0003,signup_completed,2026-06-03T16:31:00Z,u_0003_s01,ins_u_0003_002,{},v2.2.0-healthy +evt_001427,u_0098,signup_started,2026-06-03T16:33:00Z,u_0098_s01,ins_u_0098_001,{},v2.2.0-healthy +evt_001428,u_0167,profile_saved,2026-06-03T16:33:00Z,u_0167_s01,ins_u_0167_003,{},v2.2.0-healthy +evt_001429,u_0211,signup_completed,2026-06-03T16:33:00Z,u_0211_s01,ins_u_0211_002,{},v2.2.0-healthy +evt_001430,u_0408,signup_completed,2026-06-03T16:34:00Z,u_0408_s01,ins_u_0408_002,{},v2.2.0-healthy +evt_001431,u_0167,onboarding_step_viewed,2026-06-03T16:35:00Z,u_0167_s01,ins_u_0167_004,{},v2.2.0-healthy +evt_001432,u_0211,profile_saved,2026-06-03T16:36:00Z,u_0211_s01,ins_u_0211_003,{},v2.2.0-healthy +evt_001433,u_0098,signup_completed,2026-06-03T16:37:00Z,u_0098_s01,ins_u_0098_002,{},v2.2.0-healthy +evt_001434,u_0003,profile_saved,2026-06-03T16:39:00Z,u_0003_s01,ins_u_0003_003,{},v2.2.0-healthy +evt_001435,u_0541,signup_started,2026-06-03T16:40:00Z,u_0541_s01,ins_u_0541_001,{},v2.2.0-healthy +evt_001436,u_0003,onboarding_step_viewed,2026-06-03T16:41:00Z,u_0003_s01,ins_u_0003_004,{},v2.2.0-healthy +evt_001437,u_0098,profile_saved,2026-06-03T16:41:00Z,u_0098_s01,ins_u_0098_003,{},v2.2.0-healthy +evt_001438,u_0211,onboarding_step_viewed,2026-06-03T16:42:00Z,u_0211_s01,ins_u_0211_004,{},v2.2.0-healthy +evt_001439,u_0408,profile_saved,2026-06-03T16:43:00Z,u_0408_s01,ins_u_0408_003,{},v2.2.0-healthy +evt_001440,u_0098,onboarding_step_viewed,2026-06-03T16:45:00Z,u_0098_s01,ins_u_0098_004,{},v2.2.0-healthy +evt_001441,u_0408,onboarding_step_viewed,2026-06-03T16:45:00Z,u_0408_s01,ins_u_0408_004,{},v2.2.0-healthy +evt_001442,u_0395,onboarding_completed,2026-06-03T16:47:00Z,u_0395_s01,ins_u_0395_006,"{""completed_at"": ""2026-06-03T16:34:00Z""}",v2.2.0-healthy +evt_001443,u_0541,signup_completed,2026-06-03T16:48:00Z,u_0541_s01,ins_u_0541_002,{},v2.2.0-healthy +evt_001444,u_0289,signup_started,2026-06-03T16:54:00Z,u_0289_s01,ins_u_0289_001,{},v2.2.0-healthy +evt_001445,u_0541,profile_saved,2026-06-03T16:54:00Z,u_0541_s01,ins_u_0541_003,{},v2.2.0-healthy +evt_001446,u_0003,feature_used,2026-06-03T16:57:00Z,u_0003_s01,ins_u_0003_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001447,u_0289,signup_completed,2026-06-03T16:58:00Z,u_0289_s01,ins_u_0289_002,{},v2.2.0-healthy +evt_001448,u_0211,feature_used,2026-06-03T16:59:00Z,u_0211_s01,ins_u_0211_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001449,u_0081,signup_started,2026-06-03T17:02:00Z,u_0081_s01,ins_u_0081_001,{},v2.2.0-healthy +evt_001450,u_0570,signup_started,2026-06-03T17:02:00Z,u_0570_s01,ins_u_0570_001,{},v2.2.0-healthy +evt_001451,u_0695,signup_started,2026-06-03T17:02:00Z,u_0695_s01,ins_u_0695_001,{},v2.2.0-healthy +evt_001452,u_0081,signup_completed,2026-06-03T17:06:00Z,u_0081_s01,ins_u_0081_002,{},v2.2.0-healthy +evt_001453,u_0289,session_abandoned,2026-06-03T17:07:00Z,u_0289_s01,ins_u_0289_003,{},v2.2.0-healthy +evt_001454,u_0695,signup_completed,2026-06-03T17:07:00Z,u_0695_s01,ins_u_0695_002,{},v2.2.0-healthy +evt_001455,u_0167,onboarding_completed,2026-06-03T17:08:00Z,u_0167_s01,ins_u_0167_005,"{""completed_at"": ""2026-06-03T17:08:00Z""}",v2.2.0-healthy +evt_001456,u_0396,signup_started,2026-06-03T17:08:00Z,u_0396_s01,ins_u_0396_001,{},v2.2.0-healthy +evt_001457,u_0570,signup_completed,2026-06-03T17:09:00Z,u_0570_s01,ins_u_0570_002,{},v2.2.0-healthy +evt_001458,u_0359,signup_started,2026-06-03T17:11:00Z,u_0359_s01,ins_u_0359_001,{},v2.2.0-healthy +evt_001459,u_0211,onboarding_completed,2026-06-03T17:12:00Z,u_0211_s01,ins_u_0211_006,"{""completed_at"": ""2026-06-03T17:13:00Z""}",v2.2.0-healthy +evt_001460,u_0081,profile_saved,2026-06-03T17:13:00Z,u_0081_s01,ins_u_0081_003,{},v2.2.0-healthy +evt_001461,u_0570,session_abandoned,2026-06-03T17:13:00Z,u_0570_s01,ins_u_0570_003,{},v2.2.0-healthy +evt_001462,u_0695,profile_saved,2026-06-03T17:13:00Z,u_0695_s01,ins_u_0695_003,{},v2.2.0-healthy +evt_001463,u_0359,signup_completed,2026-06-03T17:14:00Z,u_0359_s01,ins_u_0359_002,{},v2.2.0-healthy +evt_001464,u_0396,signup_completed,2026-06-03T17:15:00Z,u_0396_s01,ins_u_0396_002,{},v2.2.0-healthy +evt_001465,u_0003,onboarding_completed,2026-06-03T17:16:00Z,u_0003_s01,ins_u_0003_006,"{""completed_at"": ""2026-06-03T17:13:00Z""}",v2.2.0-healthy +evt_001466,u_0395,activation_completed,2026-06-03T17:16:00Z,u_0395_s01,ins_u_0395_007,{},v2.2.0-healthy +evt_001467,u_0081,onboarding_step_viewed,2026-06-03T17:17:00Z,u_0081_s01,ins_u_0081_004,{},v2.2.0-healthy +evt_001468,u_0220,signup_started,2026-06-03T17:19:00Z,u_0220_s01,ins_u_0220_001,{},v2.2.0-healthy +evt_001469,u_0695,onboarding_step_viewed,2026-06-03T17:19:00Z,u_0695_s01,ins_u_0695_004,{},v2.2.0-healthy +evt_001470,u_0359,profile_saved,2026-06-03T17:22:00Z,u_0359_s01,ins_u_0359_003,{},v2.2.0-healthy +evt_001471,u_0396,profile_saved,2026-06-03T17:22:00Z,u_0396_s01,ins_u_0396_003,{},v2.2.0-healthy +evt_001472,u_0359,onboarding_step_viewed,2026-06-03T17:24:00Z,u_0359_s01,ins_u_0359_004,{},v2.2.0-healthy +evt_001473,u_0541,onboarding_completed,2026-06-03T17:24:00Z,u_0541_s01,ins_u_0541_004,"{""completed_at"": ""2026-06-03T17:25:00Z""}",v2.2.0-healthy +evt_001474,u_0098,onboarding_completed,2026-06-03T17:26:00Z,u_0098_s01,ins_u_0098_005,"{""completed_at"": ""2026-06-03T17:20:00Z""}",v2.2.0-healthy +evt_001475,u_0396,onboarding_step_viewed,2026-06-03T17:26:00Z,u_0396_s01,ins_u_0396_004,{},v2.2.0-healthy +evt_001476,u_0220,signup_completed,2026-06-03T17:27:00Z,u_0220_s01,ins_u_0220_002,{},v2.2.0-healthy +evt_001477,u_0408,onboarding_completed,2026-06-03T17:27:00Z,u_0408_s01,ins_u_0408_005,"{""completed_at"": ""2026-06-03T17:22:00Z""}",v2.2.0-healthy +evt_001478,u_0016,signup_started,2026-06-03T17:28:00Z,u_0016_s01,ins_u_0016_001,{},v2.2.0-healthy +evt_001479,u_0016,signup_completed,2026-06-03T17:31:00Z,u_0016_s01,ins_u_0016_002,{},v2.2.0-healthy +evt_001480,u_0003,activation_completed,2026-06-03T17:32:00Z,u_0003_s01,ins_u_0003_007,{},v2.2.0-healthy +evt_001481,u_0081,feature_used,2026-06-03T17:32:00Z,u_0081_s01,ins_u_0081_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001482,u_0184,signup_started,2026-06-03T17:36:00Z,u_0184_s01,ins_u_0184_001,{},v2.2.0-healthy +evt_001483,u_0220,profile_saved,2026-06-03T17:37:00Z,u_0220_s01,ins_u_0220_003,{},v2.2.0-healthy +evt_001484,u_0016,profile_saved,2026-06-03T17:39:00Z,u_0016_s01,ins_u_0016_003,{},v2.2.0-healthy +evt_001485,u_0184,signup_completed,2026-06-03T17:39:00Z,u_0184_s01,ins_u_0184_002,{},v2.2.0-healthy +evt_001486,u_0220,onboarding_step_viewed,2026-06-03T17:39:00Z,u_0220_s01,ins_u_0220_004,{},v2.2.0-healthy +evt_001487,u_0016,onboarding_step_viewed,2026-06-03T17:44:00Z,u_0016_s01,ins_u_0016_004,{},v2.2.0-healthy +evt_001488,u_0359,feature_used,2026-06-03T17:46:00Z,u_0359_s01,ins_u_0359_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001489,u_0541,activation_completed,2026-06-03T17:46:00Z,u_0541_s01,ins_u_0541_005,{},v2.2.0-healthy +evt_001490,u_0081,onboarding_completed,2026-06-03T17:49:00Z,u_0081_s01,ins_u_0081_006,"{""completed_at"": ""2026-06-03T17:44:00Z""}",v2.2.0-healthy +evt_001491,u_0184,profile_saved,2026-06-03T17:49:00Z,u_0184_s01,ins_u_0184_003,{},v2.2.0-healthy +evt_001492,u_0695,onboarding_completed,2026-06-03T17:49:00Z,u_0695_s01,ins_u_0695_005,"{""completed_at"": ""2026-06-03T17:44:00Z""}",v2.2.0-healthy +evt_001493,u_0184,onboarding_step_viewed,2026-06-03T17:51:00Z,u_0184_s01,ins_u_0184_004,{},v2.2.0-healthy +evt_001494,u_0220,feature_used,2026-06-03T17:51:00Z,u_0220_s01,ins_u_0220_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001495,u_0496,signup_started,2026-06-03T17:55:00Z,u_0496_s01,ins_u_0496_001,{},v2.2.0-healthy +evt_001496,u_0016,feature_used,2026-06-03T17:58:00Z,u_0016_s01,ins_u_0016_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001497,u_0396,onboarding_completed,2026-06-03T17:59:00Z,u_0396_s01,ins_u_0396_005,"{""completed_at"": ""2026-06-03T18:02:00Z""}",v2.2.0-healthy +evt_001498,u_0496,signup_completed,2026-06-03T18:01:00Z,u_0496_s01,ins_u_0496_002,{},v2.2.0-healthy +evt_001499,u_0359,onboarding_completed,2026-06-03T18:03:00Z,u_0359_s01,ins_u_0359_006,"{""completed_at"": ""2026-06-03T17:53:00Z""}",v2.2.0-healthy +evt_001500,u_0582,signup_started,2026-06-03T18:04:00Z,u_0582_s01,ins_u_0582_001,{},v2.2.0-healthy +evt_001501,u_0016,onboarding_completed,2026-06-03T18:07:00Z,u_0016_s01,ins_u_0016_006,"{""completed_at"": ""2026-06-03T18:19:00Z""}",v2.2.0-healthy +evt_001502,u_0496,profile_saved,2026-06-03T18:08:00Z,u_0496_s01,ins_u_0496_003,{},v2.2.0-healthy +evt_001503,u_0396,activation_completed,2026-06-03T18:09:00Z,u_0396_s01,ins_u_0396_006,{},v2.2.0-healthy +evt_001504,u_0582,signup_completed,2026-06-03T18:09:00Z,u_0582_s01,ins_u_0582_002,{},v2.2.0-healthy +evt_001505,u_0582,profile_saved,2026-06-03T18:11:00Z,u_0582_s01,ins_u_0582_003,{},v2.2.0-healthy +evt_001506,u_0184,feature_used,2026-06-03T18:13:00Z,u_0184_s01,ins_u_0184_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001507,u_0496,onboarding_step_viewed,2026-06-03T18:13:00Z,u_0496_s01,ins_u_0496_004,{},v2.2.0-healthy +evt_001508,u_0113,signup_started,2026-06-03T18:15:00Z,u_0113_s01,ins_u_0113_001,{},v2.2.0-healthy +evt_001509,u_0113,signup_completed,2026-06-03T18:16:00Z,u_0113_s01,ins_u_0113_002,{},v2.2.0-healthy +evt_001510,u_0496,feature_used,2026-06-03T18:17:00Z,u_0496_s01,ins_u_0496_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001511,u_0582,onboarding_step_viewed,2026-06-03T18:17:00Z,u_0582_s01,ins_u_0582_004,{},v2.2.0-healthy +evt_001512,u_0258,signup_started,2026-06-03T18:18:00Z,u_0258_s01,ins_u_0258_001,{},v2.2.0-healthy +evt_001513,u_0113,profile_saved,2026-06-03T18:19:00Z,u_0113_s01,ins_u_0113_003,{},v2.2.0-healthy +evt_001514,u_0220,onboarding_completed,2026-06-03T18:20:00Z,u_0220_s01,ins_u_0220_006,"{""completed_at"": ""2026-06-03T18:10:00Z""}",v2.2.0-healthy +evt_001515,u_0113,onboarding_step_viewed,2026-06-03T18:23:00Z,u_0113_s01,ins_u_0113_004,{},v2.2.0-healthy +evt_001516,u_0258,signup_completed,2026-06-03T18:24:00Z,u_0258_s01,ins_u_0258_002,{},v2.2.0-healthy +evt_001517,u_0184,onboarding_completed,2026-06-03T18:25:00Z,u_0184_s01,ins_u_0184_006,"{""completed_at"": ""2026-06-03T18:22:00Z""}",v2.2.0-healthy +evt_001518,u_0086,signup_started,2026-06-03T18:29:00Z,u_0086_s01,ins_u_0086_001,{},v2.2.0-healthy +evt_001519,u_0359,activation_completed,2026-06-03T18:31:00Z,u_0359_s01,ins_u_0359_007,{},v2.2.0-healthy +evt_001520,u_0258,profile_saved,2026-06-03T18:33:00Z,u_0258_s01,ins_u_0258_003,{},v2.2.0-healthy +evt_001521,u_0582,feature_used,2026-06-03T18:34:00Z,u_0582_s01,ins_u_0582_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001522,u_0086,signup_completed,2026-06-03T18:36:00Z,u_0086_s01,ins_u_0086_002,{},v2.2.0-healthy +evt_001523,u_0496,onboarding_completed,2026-06-03T18:40:00Z,u_0496_s01,ins_u_0496_006,"{""completed_at"": ""2026-06-03T18:48:00Z""}",v2.2.0-healthy +evt_001524,u_0573,signup_started,2026-06-03T18:40:00Z,u_0573_s01,ins_u_0573_001,{},v2.2.0-healthy +evt_001525,u_0582,onboarding_completed,2026-06-03T18:40:00Z,u_0582_s01,ins_u_0582_006,"{""completed_at"": ""2026-06-03T18:44:00Z""}",v2.2.0-healthy +evt_001526,u_0086,profile_saved,2026-06-03T18:43:00Z,u_0086_s01,ins_u_0086_003,{},v2.2.0-healthy +evt_001527,u_0573,signup_completed,2026-06-03T18:47:00Z,u_0573_s01,ins_u_0573_002,{},v2.2.0-healthy +evt_001528,u_0086,onboarding_step_viewed,2026-06-03T18:48:00Z,u_0086_s01,ins_u_0086_004,{},v2.2.0-healthy +evt_001529,u_0294,signup_started,2026-06-03T18:50:00Z,u_0294_s01,ins_u_0294_001,{},v2.2.0-healthy +evt_001530,u_0489,signup_started,2026-06-03T18:50:00Z,u_0489_s01,ins_u_0489_001,{},v2.2.0-healthy +evt_001531,u_0294,signup_completed,2026-06-03T18:54:00Z,u_0294_s01,ins_u_0294_002,{},v2.2.0-healthy +evt_001532,u_0573,profile_saved,2026-06-03T18:54:00Z,u_0573_s01,ins_u_0573_003,{},v2.2.0-healthy +evt_001533,u_0184,activation_completed,2026-06-03T18:55:00Z,u_0184_s01,ins_u_0184_007,{},v2.2.0-healthy +evt_001534,u_0712,signup_started,2026-06-03T18:55:00Z,u_0712_s01,ins_u_0712_001,{},v2.2.0-healthy +evt_001535,u_0489,signup_completed,2026-06-03T18:56:00Z,u_0489_s01,ins_u_0489_002,{},v2.2.0-healthy +evt_001536,u_0086,feature_used,2026-06-03T18:57:00Z,u_0086_s01,ins_u_0086_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001537,u_0016,activation_completed,2026-06-03T18:58:00Z,u_0016_s01,ins_u_0016_007,{},v2.2.0-healthy +evt_001538,u_0712,signup_completed,2026-06-03T18:59:00Z,u_0712_s01,ins_u_0712_002,{},v2.2.0-healthy +evt_001539,u_0573,onboarding_step_viewed,2026-06-03T19:00:00Z,u_0573_s01,ins_u_0573_004,{},v2.2.0-healthy +evt_001540,u_0712,profile_saved,2026-06-03T19:01:00Z,u_0712_s01,ins_u_0712_003,{},v2.2.0-healthy +evt_001541,u_0113,onboarding_completed,2026-06-03T19:02:00Z,u_0113_s01,ins_u_0113_005,"{""completed_at"": ""2026-06-03T18:57:00Z""}",v2.2.0-healthy +evt_001542,u_0294,session_abandoned,2026-06-03T19:03:00Z,u_0294_s01,ins_u_0294_003,{},v2.2.0-healthy +evt_001543,u_0712,onboarding_step_viewed,2026-06-03T19:03:00Z,u_0712_s01,ins_u_0712_004,{},v2.2.0-healthy +evt_001544,u_0489,session_abandoned,2026-06-03T19:05:00Z,u_0489_s01,ins_u_0489_003,{},v2.2.0-healthy +evt_001545,u_0573,feature_used,2026-06-03T19:08:00Z,u_0573_s01,ins_u_0573_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001546,u_0631,signup_started,2026-06-03T19:08:00Z,u_0631_s01,ins_u_0631_001,{},v2.2.0-healthy +evt_001547,u_0769,signup_started,2026-06-03T19:08:00Z,u_0769_s01,ins_u_0769_001,{},v2.2.0-healthy +evt_001548,u_0258,onboarding_completed,2026-06-03T19:09:00Z,u_0258_s01,ins_u_0258_004,"{""completed_at"": ""2026-06-03T19:06:00Z""}",v2.2.0-healthy +evt_001549,u_0554,signup_started,2026-06-03T19:11:00Z,u_0554_s01,ins_u_0554_001,{},v2.2.0-healthy +evt_001550,u_0631,session_abandoned,2026-06-03T19:15:00Z,u_0631_s01,ins_u_0631_002,{},v2.2.0-healthy +evt_001551,u_0769,signup_completed,2026-06-03T19:16:00Z,u_0769_s01,ins_u_0769_002,{},v2.2.0-healthy +evt_001552,u_0554,session_abandoned,2026-06-03T19:19:00Z,u_0554_s01,ins_u_0554_002,{},v2.2.0-healthy +evt_001553,u_0582,activation_completed,2026-06-03T19:21:00Z,u_0582_s01,ins_u_0582_007,{},v2.2.0-healthy +evt_001554,u_0573,onboarding_completed,2026-06-03T19:22:00Z,u_0573_s01,ins_u_0573_006,"{""completed_at"": ""2026-06-03T19:32:00Z""}",v2.2.0-healthy +evt_001555,u_0596,signup_started,2026-06-03T19:22:00Z,u_0596_s01,ins_u_0596_001,{},v2.2.0-healthy +evt_001556,u_0367,signup_started,2026-06-03T19:23:00Z,u_0367_s01,ins_u_0367_001,{},v2.2.0-healthy +evt_001557,u_0367,signup_completed,2026-06-03T19:26:00Z,u_0367_s01,ins_u_0367_002,{},v2.2.0-healthy +evt_001558,u_0769,profile_saved,2026-06-03T19:26:00Z,u_0769_s01,ins_u_0769_003,{},v2.2.0-healthy +evt_001559,u_0086,onboarding_completed,2026-06-03T19:27:00Z,u_0086_s01,ins_u_0086_006,"{""completed_at"": ""2026-06-03T19:09:00Z""}",v2.2.0-healthy +evt_001560,u_0596,signup_completed,2026-06-03T19:28:00Z,u_0596_s01,ins_u_0596_002,{},v2.2.0-healthy +evt_001561,u_0769,onboarding_step_viewed,2026-06-03T19:28:00Z,u_0769_s01,ins_u_0769_004,{},v2.2.0-healthy +evt_001562,u_0367,session_abandoned,2026-06-03T19:33:00Z,u_0367_s01,ins_u_0367_003,{},v2.2.0-healthy +evt_001563,u_0596,session_abandoned,2026-06-03T19:35:00Z,u_0596_s01,ins_u_0596_003,{},v2.2.0-healthy +evt_001564,u_0121,signup_started,2026-06-03T19:42:00Z,u_0121_s01,ins_u_0121_001,{},v2.2.0-healthy +evt_001565,u_0569,signup_started,2026-06-03T19:43:00Z,u_0569_s01,ins_u_0569_001,{},v2.2.0-healthy +evt_001566,u_0391,signup_started,2026-06-03T19:44:00Z,u_0391_s01,ins_u_0391_001,{},v2.2.0-healthy +evt_001567,u_0712,onboarding_completed,2026-06-03T19:44:00Z,u_0712_s01,ins_u_0712_005,"{""completed_at"": ""2026-06-03T19:40:00Z""}",v2.2.0-healthy +evt_001568,u_0121,signup_completed,2026-06-03T19:45:00Z,u_0121_s01,ins_u_0121_002,{},v2.2.0-healthy +evt_001569,u_0335,signup_started,2026-06-03T19:46:00Z,u_0335_s01,ins_u_0335_001,{},v2.2.0-healthy +evt_001570,u_0569,signup_completed,2026-06-03T19:48:00Z,u_0569_s01,ins_u_0569_002,{},v2.2.0-healthy +evt_001571,u_0463,signup_started,2026-06-03T19:49:00Z,u_0463_s01,ins_u_0463_001,{},v2.2.0-healthy +evt_001572,u_0086,activation_completed,2026-06-03T19:50:00Z,u_0086_s01,ins_u_0086_007,{},v2.2.0-healthy +evt_001573,u_0391,signup_completed,2026-06-03T19:50:00Z,u_0391_s01,ins_u_0391_002,{},v2.2.0-healthy +evt_001574,u_0121,profile_saved,2026-06-03T19:51:00Z,u_0121_s01,ins_u_0121_003,{},v2.2.0-healthy +evt_001575,u_0335,signup_completed,2026-06-03T19:51:00Z,u_0335_s01,ins_u_0335_002,{},v2.2.0-healthy +evt_001576,u_0539,signup_started,2026-06-03T19:53:00Z,u_0539_s01,ins_u_0539_001,{},v2.2.0-healthy +evt_001577,u_0249,signup_started,2026-06-03T19:55:00Z,u_0249_s01,ins_u_0249_001,{},v2.2.0-healthy +evt_001578,u_0121,onboarding_step_viewed,2026-06-03T19:56:00Z,u_0121_s01,ins_u_0121_004,{},v2.2.0-healthy +evt_001579,u_0391,profile_saved,2026-06-03T19:56:00Z,u_0391_s01,ins_u_0391_003,{},v2.2.0-healthy +evt_001580,u_0539,signup_completed,2026-06-03T19:56:00Z,u_0539_s01,ins_u_0539_002,{},v2.2.0-healthy +evt_001581,u_0463,signup_completed,2026-06-03T19:57:00Z,u_0463_s01,ins_u_0463_002,{},v2.2.0-healthy +evt_001582,u_0569,session_abandoned,2026-06-03T19:57:00Z,u_0569_s01,ins_u_0569_003,{},v2.2.0-healthy +evt_001583,u_0335,profile_saved,2026-06-03T19:59:00Z,u_0335_s01,ins_u_0335_003,{},v2.2.0-healthy +evt_001584,u_0328,signup_started,2026-06-03T20:00:00Z,u_0328_s01,ins_u_0328_001,{},v2.2.0-healthy +evt_001585,u_0391,onboarding_step_viewed,2026-06-03T20:00:00Z,u_0391_s01,ins_u_0391_004,{},v2.2.0-healthy +evt_001586,u_0539,profile_saved,2026-06-03T20:01:00Z,u_0539_s01,ins_u_0539_003,{},v2.2.0-healthy +evt_001587,u_0663,signup_started,2026-06-03T20:01:00Z,u_0663_s01,ins_u_0663_001,{},v2.2.0-healthy +evt_001588,u_0249,session_abandoned,2026-06-03T20:02:00Z,u_0249_s01,ins_u_0249_002,{},v2.2.0-healthy +evt_001589,u_0335,onboarding_step_viewed,2026-06-03T20:02:00Z,u_0335_s01,ins_u_0335_004,{},v2.2.0-healthy +evt_001590,u_0539,error_shown,2026-06-03T20:02:00Z,u_0539_s01,ins_u_0539_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001591,u_0328,signup_completed,2026-06-03T20:05:00Z,u_0328_s01,ins_u_0328_002,{},v2.2.0-healthy +evt_001592,u_0663,session_abandoned,2026-06-03T20:05:00Z,u_0663_s01,ins_u_0663_002,{},v2.2.0-healthy +evt_001593,u_0769,onboarding_completed,2026-06-03T20:05:00Z,u_0769_s01,ins_u_0769_005,"{""completed_at"": ""2026-06-03T20:00:00Z""}",v2.2.0-healthy +evt_001594,u_0463,profile_saved,2026-06-03T20:06:00Z,u_0463_s01,ins_u_0463_003,{},v2.2.0-healthy +evt_001595,u_0539,onboarding_step_viewed,2026-06-03T20:06:00Z,u_0539_s01,ins_u_0539_005,{},v2.2.0-healthy +evt_001596,u_0463,onboarding_step_viewed,2026-06-03T20:08:00Z,u_0463_s01,ins_u_0463_004,{},v2.2.0-healthy +evt_001597,u_0121,feature_used,2026-06-03T20:09:00Z,u_0121_s01,ins_u_0121_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001598,u_0755,signup_started,2026-06-03T20:09:00Z,u_0755_s01,ins_u_0755_001,{},v2.2.0-healthy +evt_001599,u_0328,profile_saved,2026-06-03T20:12:00Z,u_0328_s01,ins_u_0328_003,{},v2.2.0-healthy +evt_001600,u_0164,signup_started,2026-06-03T20:13:00Z,u_0164_s01,ins_u_0164_001,{},v2.2.0-healthy +evt_001601,u_0755,signup_completed,2026-06-03T20:13:00Z,u_0755_s01,ins_u_0755_002,{},v2.2.0-healthy +evt_001602,u_0758,signup_started,2026-06-03T20:14:00Z,u_0758_s01,ins_u_0758_001,{},v2.2.0-healthy +evt_001603,u_0328,onboarding_step_viewed,2026-06-03T20:15:00Z,u_0328_s01,ins_u_0328_004,{},v2.2.0-healthy +evt_001604,u_0543,signup_started,2026-06-03T20:17:00Z,u_0543_s01,ins_u_0543_001,{},v2.2.0-healthy +evt_001605,u_0164,signup_completed,2026-06-03T20:19:00Z,u_0164_s01,ins_u_0164_002,{},v2.2.0-healthy +evt_001606,u_0391,feature_used,2026-06-03T20:19:00Z,u_0391_s01,ins_u_0391_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001607,u_0164,profile_saved,2026-06-03T20:22:00Z,u_0164_s01,ins_u_0164_003,{},v2.2.0-healthy +evt_001608,u_0543,signup_completed,2026-06-03T20:22:00Z,u_0543_s01,ins_u_0543_002,{},v2.2.0-healthy +evt_001609,u_0755,session_abandoned,2026-06-03T20:22:00Z,u_0755_s01,ins_u_0755_003,{},v2.2.0-healthy +evt_001610,u_0758,signup_completed,2026-06-03T20:22:00Z,u_0758_s01,ins_u_0758_002,{},v2.2.0-healthy +evt_001611,u_0335,feature_used,2026-06-03T20:23:00Z,u_0335_s01,ins_u_0335_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001612,u_0539,feature_used,2026-06-03T20:23:00Z,u_0539_s01,ins_u_0539_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001613,u_0758,profile_saved,2026-06-03T20:26:00Z,u_0758_s01,ins_u_0758_003,{},v2.2.0-healthy +evt_001614,u_0164,onboarding_step_viewed,2026-06-03T20:27:00Z,u_0164_s01,ins_u_0164_004,{},v2.2.0-healthy +evt_001615,u_0543,profile_saved,2026-06-03T20:27:00Z,u_0543_s01,ins_u_0543_003,{},v2.2.0-healthy +evt_001616,u_0543,error_shown,2026-06-03T20:28:00Z,u_0543_s01,ins_u_0543_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001617,u_0328,feature_used,2026-06-03T20:30:00Z,u_0328_s01,ins_u_0328_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001618,u_0758,onboarding_step_viewed,2026-06-03T20:30:00Z,u_0758_s01,ins_u_0758_004,{},v2.2.0-healthy +evt_001619,u_0665,signup_started,2026-06-03T20:31:00Z,u_0665_s01,ins_u_0665_001,{},v2.2.0-healthy +evt_001620,u_0164,feature_used,2026-06-03T20:32:00Z,u_0164_s01,ins_u_0164_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001621,u_0401,signup_started,2026-06-03T20:32:00Z,u_0401_s01,ins_u_0401_001,{},v2.2.0-healthy +evt_001622,u_0543,onboarding_step_viewed,2026-06-03T20:32:00Z,u_0543_s01,ins_u_0543_005,{},v2.2.0-healthy +evt_001623,u_0335,onboarding_completed,2026-06-03T20:35:00Z,u_0335_s01,ins_u_0335_006,"{""completed_at"": ""2026-06-03T20:37:00Z""}",v2.2.0-healthy +evt_001624,u_0665,signup_completed,2026-06-03T20:36:00Z,u_0665_s01,ins_u_0665_002,{},v2.2.0-healthy +evt_001625,u_0121,activation_completed,2026-06-03T20:38:00Z,u_0121_s01,ins_u_0121_006,{},v2.2.0-healthy +evt_001626,u_0401,session_abandoned,2026-06-03T20:40:00Z,u_0401_s01,ins_u_0401_002,{},v2.2.0-healthy +evt_001627,u_0463,onboarding_completed,2026-06-03T20:42:00Z,u_0463_s01,ins_u_0463_005,"{""completed_at"": ""2026-06-03T20:38:00Z""}",v2.2.0-healthy +evt_001628,u_0539,onboarding_completed,2026-06-03T20:42:00Z,u_0539_s01,ins_u_0539_007,"{""completed_at"": ""2026-06-03T20:30:00Z""}",v2.2.0-healthy +evt_001629,u_0665,profile_saved,2026-06-03T20:43:00Z,u_0665_s01,ins_u_0665_003,{},v2.2.0-healthy +evt_001630,u_0665,error_shown,2026-06-03T20:44:00Z,u_0665_s01,ins_u_0665_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001631,u_0769,activation_completed,2026-06-03T20:44:00Z,u_0769_s01,ins_u_0769_006,{},v2.2.0-healthy +evt_001632,u_0665,onboarding_step_viewed,2026-06-03T20:45:00Z,u_0665_s01,ins_u_0665_005,{},v2.2.0-healthy +evt_001633,u_0758,feature_used,2026-06-03T20:49:00Z,u_0758_s01,ins_u_0758_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001634,u_0665,feature_used,2026-06-03T20:50:00Z,u_0665_s01,ins_u_0665_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001635,u_0543,feature_used,2026-06-03T20:51:00Z,u_0543_s01,ins_u_0543_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001636,u_0758,onboarding_completed,2026-06-03T20:54:00Z,u_0758_s01,ins_u_0758_006,"{""completed_at"": ""2026-06-03T21:04:00Z""}",v2.2.0-healthy +evt_001637,u_0164,onboarding_completed,2026-06-03T20:57:00Z,u_0164_s01,ins_u_0164_006,"{""completed_at"": ""2026-06-03T21:00:00Z""}",v2.2.0-healthy +evt_001638,u_0463,activation_completed,2026-06-03T21:01:00Z,u_0463_s01,ins_u_0463_006,{},v2.2.0-healthy +evt_001639,u_0543,onboarding_completed,2026-06-03T21:09:00Z,u_0543_s01,ins_u_0543_007,"{""completed_at"": ""2026-06-03T21:03:00Z""}",v2.2.0-healthy +evt_001640,u_0665,onboarding_completed,2026-06-03T21:20:00Z,u_0665_s01,ins_u_0665_007,"{""completed_at"": ""2026-06-03T21:20:00Z""}",v2.2.0-healthy +evt_001641,u_0758,activation_completed,2026-06-03T21:36:00Z,u_0758_s01,ins_u_0758_007,{},v2.2.0-healthy +evt_001642,u_0665,activation_completed,2026-06-03T21:56:00Z,u_0665_s01,ins_u_0665_008,{},v2.2.0-healthy +evt_001643,u_0517,return_visit,2026-06-04T01:02:00Z,u_0517_s02,ins_u_0517_007,{},v2.2.0-healthy +evt_001644,u_0604,signup_started,2026-06-04T08:03:00Z,u_0604_s01,ins_u_0604_001,{},v2.2.0-healthy +evt_001645,u_0604,signup_completed,2026-06-04T08:09:00Z,u_0604_s01,ins_u_0604_002,{},v2.2.0-healthy +evt_001646,u_0747,signup_started,2026-06-04T08:10:00Z,u_0747_s01,ins_u_0747_001,{},v2.2.0-healthy +evt_001647,u_0604,session_abandoned,2026-06-04T08:17:00Z,u_0604_s01,ins_u_0604_003,{},v2.2.0-healthy +evt_001648,u_0747,signup_completed,2026-06-04T08:17:00Z,u_0747_s01,ins_u_0747_002,{},v2.2.0-healthy +evt_001649,u_0747,session_abandoned,2026-06-04T08:26:00Z,u_0747_s01,ins_u_0747_003,{},v2.2.0-healthy +evt_001650,u_0354,signup_started,2026-06-04T08:37:00Z,u_0354_s01,ins_u_0354_001,{},v2.2.0-healthy +evt_001651,u_0651,signup_started,2026-06-04T08:37:00Z,u_0651_s01,ins_u_0651_001,{},v2.2.0-healthy +evt_001652,u_0651,signup_completed,2026-06-04T08:39:00Z,u_0651_s01,ins_u_0651_002,{},v2.2.0-healthy +evt_001653,u_0354,signup_completed,2026-06-04T08:44:00Z,u_0354_s01,ins_u_0354_002,{},v2.2.0-healthy +evt_001654,u_0651,profile_saved,2026-06-04T08:48:00Z,u_0651_s01,ins_u_0651_003,{},v2.2.0-healthy +evt_001655,u_0354,session_abandoned,2026-06-04T08:50:00Z,u_0354_s01,ins_u_0354_003,{},v2.2.0-healthy +evt_001656,u_0651,onboarding_step_viewed,2026-06-04T08:52:00Z,u_0651_s01,ins_u_0651_004,{},v2.2.0-healthy +evt_001657,u_0470,signup_started,2026-06-04T09:01:00Z,u_0470_s01,ins_u_0470_001,{},v2.2.0-healthy +evt_001658,u_0470,signup_completed,2026-06-04T09:03:00Z,u_0470_s01,ins_u_0470_002,{},v2.2.0-healthy +evt_001659,u_0470,profile_saved,2026-06-04T09:06:00Z,u_0470_s01,ins_u_0470_003,{},v2.2.0-healthy +evt_001660,u_0479,return_visit,2026-06-04T09:12:00Z,u_0479_s02,ins_u_0479_007,{},v2.2.0-healthy +evt_001661,u_0079,signup_started,2026-06-04T09:13:00Z,u_0079_s01,ins_u_0079_001,{},v2.2.0-healthy +evt_001662,u_0302,signup_started,2026-06-04T09:15:00Z,u_0302_s01,ins_u_0302_001,{},v2.2.0-healthy +evt_001663,u_0479,feature_used,2026-06-04T09:17:00Z,u_0479_s02,ins_u_0479_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001664,u_0403,signup_started,2026-06-04T09:18:00Z,u_0403_s01,ins_u_0403_001,{},v2.2.0-healthy +evt_001665,u_0079,signup_completed,2026-06-04T09:19:00Z,u_0079_s01,ins_u_0079_002,{},v2.2.0-healthy +evt_001666,u_0302,session_abandoned,2026-06-04T09:22:00Z,u_0302_s01,ins_u_0302_002,{},v2.2.0-healthy +evt_001667,u_0403,signup_completed,2026-06-04T09:23:00Z,u_0403_s01,ins_u_0403_002,{},v2.2.0-healthy +evt_001668,u_0024,signup_started,2026-06-04T09:25:00Z,u_0024_s01,ins_u_0024_001,{},v2.2.0-healthy +evt_001669,u_0212,signup_started,2026-06-04T09:25:00Z,u_0212_s01,ins_u_0212_001,{},v2.2.0-healthy +evt_001670,u_0651,onboarding_completed,2026-06-04T09:25:00Z,u_0651_s01,ins_u_0651_005,"{""completed_at"": ""2026-06-04T09:25:00Z""}",v2.2.0-healthy +evt_001671,u_0024,signup_completed,2026-06-04T09:26:00Z,u_0024_s01,ins_u_0024_002,{},v2.2.0-healthy +evt_001672,u_0079,profile_saved,2026-06-04T09:28:00Z,u_0079_s01,ins_u_0079_003,{},v2.2.0-healthy +evt_001673,u_0403,profile_saved,2026-06-04T09:28:00Z,u_0403_s01,ins_u_0403_003,{},v2.2.0-healthy +evt_001674,u_0212,signup_completed,2026-06-04T09:30:00Z,u_0212_s01,ins_u_0212_002,{},v2.2.0-healthy +evt_001675,u_0403,onboarding_step_viewed,2026-06-04T09:31:00Z,u_0403_s01,ins_u_0403_004,{},v2.2.0-healthy +evt_001676,u_0079,onboarding_step_viewed,2026-06-04T09:32:00Z,u_0079_s01,ins_u_0079_004,{},v2.2.0-healthy +evt_001677,u_0212,profile_saved,2026-06-04T09:34:00Z,u_0212_s01,ins_u_0212_003,{},v2.2.0-healthy +evt_001678,u_0326,signup_started,2026-06-04T09:34:00Z,u_0326_s01,ins_u_0326_001,{},v2.2.0-healthy +evt_001679,u_0024,profile_saved,2026-06-04T09:35:00Z,u_0024_s01,ins_u_0024_003,{},v2.2.0-healthy +evt_001680,u_0212,error_shown,2026-06-04T09:35:00Z,u_0212_s01,ins_u_0212_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001681,u_0326,signup_completed,2026-06-04T09:35:00Z,u_0326_s01,ins_u_0326_002,{},v2.2.0-healthy +evt_001682,u_0024,error_shown,2026-06-04T09:36:00Z,u_0024_s01,ins_u_0024_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001683,u_0470,onboarding_completed,2026-06-04T09:36:00Z,u_0470_s01,ins_u_0470_004,"{""completed_at"": ""2026-06-04T09:32:00Z""}",v2.2.0-healthy +evt_001684,u_0024,onboarding_step_viewed,2026-06-04T09:38:00Z,u_0024_s01,ins_u_0024_005,{},v2.2.0-healthy +evt_001685,u_0212,onboarding_step_viewed,2026-06-04T09:38:00Z,u_0212_s01,ins_u_0212_005,{},v2.2.0-healthy +evt_001686,u_0462,signup_started,2026-06-04T09:39:00Z,u_0462_s01,ins_u_0462_001,{},v2.2.0-healthy +evt_001687,u_0403,feature_used,2026-06-04T09:41:00Z,u_0403_s01,ins_u_0403_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001688,u_0326,session_abandoned,2026-06-04T09:42:00Z,u_0326_s01,ins_u_0326_003,{},v2.2.0-healthy +evt_001689,u_0212,feature_used,2026-06-04T09:45:00Z,u_0212_s01,ins_u_0212_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_001690,u_0462,signup_completed,2026-06-04T09:45:00Z,u_0462_s01,ins_u_0462_002,{},v2.2.0-healthy +evt_001691,u_0678,signup_started,2026-06-04T09:45:00Z,u_0678_s01,ins_u_0678_001,{},v2.2.0-healthy +evt_001692,u_0678,session_abandoned,2026-06-04T09:46:00Z,u_0678_s01,ins_u_0678_002,{},v2.2.0-healthy +evt_001693,u_0453,signup_started,2026-06-04T09:48:00Z,u_0453_s01,ins_u_0453_001,{},v2.2.0-healthy +evt_001694,u_0079,feature_used,2026-06-04T09:49:00Z,u_0079_s01,ins_u_0079_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001695,u_0024,feature_used,2026-06-04T09:53:00Z,u_0024_s01,ins_u_0024_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_001696,u_0453,signup_completed,2026-06-04T09:54:00Z,u_0453_s01,ins_u_0453_002,{},v2.2.0-healthy +evt_001697,u_0462,session_abandoned,2026-06-04T09:54:00Z,u_0462_s01,ins_u_0462_003,{},v2.2.0-healthy +evt_001698,u_0403,onboarding_completed,2026-06-04T09:57:00Z,u_0403_s01,ins_u_0403_006,"{""completed_at"": ""2026-06-04T09:57:00Z""}",v2.2.0-healthy +evt_001699,u_0453,profile_saved,2026-06-04T09:59:00Z,u_0453_s01,ins_u_0453_003,{},v2.2.0-healthy +evt_001700,u_0651,activation_completed,2026-06-04T10:00:00Z,u_0651_s01,ins_u_0651_006,{},v2.2.0-healthy +evt_001701,u_0212,onboarding_completed,2026-06-04T10:01:00Z,u_0212_s01,ins_u_0212_007,"{""completed_at"": ""2026-06-04T10:13:00Z""}",v2.2.0-healthy +evt_001702,u_0453,onboarding_step_viewed,2026-06-04T10:01:00Z,u_0453_s01,ins_u_0453_004,{},v2.2.0-healthy +evt_001703,u_0024,onboarding_completed,2026-06-04T10:06:00Z,u_0024_s01,ins_u_0024_007,"{""completed_at"": ""2026-06-04T10:15:00Z""}",v2.2.0-healthy +evt_001704,u_0453,feature_used,2026-06-04T10:07:00Z,u_0453_s01,ins_u_0453_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001705,u_0079,onboarding_completed,2026-06-04T10:12:00Z,u_0079_s01,ins_u_0079_006,"{""completed_at"": ""2026-06-04T09:58:00Z""}",v2.2.0-healthy +evt_001706,u_0461,signup_started,2026-06-04T10:18:00Z,u_0461_s01,ins_u_0461_001,{},v2.2.0-healthy +evt_001707,u_0244,signup_started,2026-06-04T10:21:00Z,u_0244_s01,ins_u_0244_001,{},v2.2.0-healthy +evt_001708,u_0212,activation_completed,2026-06-04T10:22:00Z,u_0212_s01,ins_u_0212_008,{},v2.2.0-healthy +evt_001709,u_0244,signup_completed,2026-06-04T10:24:00Z,u_0244_s01,ins_u_0244_002,{},v2.2.0-healthy +evt_001710,u_0461,signup_completed,2026-06-04T10:26:00Z,u_0461_s01,ins_u_0461_002,{},v2.2.0-healthy +evt_001711,u_0244,session_abandoned,2026-06-04T10:30:00Z,u_0244_s01,ins_u_0244_003,{},v2.2.0-healthy +evt_001712,u_0461,session_abandoned,2026-06-04T10:33:00Z,u_0461_s01,ins_u_0461_003,{},v2.2.0-healthy +evt_001713,u_0529,signup_started,2026-06-04T10:34:00Z,u_0529_s01,ins_u_0529_001,{},v2.2.0-healthy +evt_001714,u_0628,signup_started,2026-06-04T10:36:00Z,u_0628_s01,ins_u_0628_001,{},v2.2.0-healthy +evt_001715,u_0453,onboarding_completed,2026-06-04T10:38:00Z,u_0453_s01,ins_u_0453_006,"{""completed_at"": ""2026-06-04T10:28:00Z""}",v2.2.0-healthy +evt_001716,u_0628,session_abandoned,2026-06-04T10:41:00Z,u_0628_s01,ins_u_0628_002,{},v2.2.0-healthy +evt_001717,u_0529,signup_completed,2026-06-04T10:42:00Z,u_0529_s01,ins_u_0529_002,{},v2.2.0-healthy +evt_001718,u_0529,profile_saved,2026-06-04T10:44:00Z,u_0529_s01,ins_u_0529_003,{},v2.2.0-healthy +evt_001719,u_0386,signup_started,2026-06-04T10:48:00Z,u_0386_s01,ins_u_0386_001,{},v2.2.0-healthy +evt_001720,u_0529,onboarding_step_viewed,2026-06-04T10:48:00Z,u_0529_s01,ins_u_0529_004,{},v2.2.0-healthy +evt_001721,u_0386,signup_completed,2026-06-04T10:52:00Z,u_0386_s01,ins_u_0386_002,{},v2.2.0-healthy +evt_001722,u_0185,signup_started,2026-06-04T10:53:00Z,u_0185_s01,ins_u_0185_001,{},v2.2.0-healthy +evt_001723,u_0529,feature_used,2026-06-04T10:55:00Z,u_0529_s01,ins_u_0529_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001724,u_0386,profile_saved,2026-06-04T10:57:00Z,u_0386_s01,ins_u_0386_003,{},v2.2.0-healthy +evt_001725,u_0185,signup_completed,2026-06-04T11:01:00Z,u_0185_s01,ins_u_0185_002,{},v2.2.0-healthy +evt_001726,u_0386,onboarding_step_viewed,2026-06-04T11:01:00Z,u_0386_s01,ins_u_0386_004,{},v2.2.0-healthy +evt_001727,u_0185,profile_saved,2026-06-04T11:04:00Z,u_0185_s01,ins_u_0185_003,{},v2.2.0-healthy +evt_001728,u_0630,signup_started,2026-06-04T11:06:00Z,u_0630_s01,ins_u_0630_001,{},v2.2.0-healthy +evt_001729,u_0630,signup_completed,2026-06-04T11:07:00Z,u_0630_s01,ins_u_0630_002,{},v2.2.0-healthy +evt_001730,u_0150,signup_started,2026-06-04T11:08:00Z,u_0150_s01,ins_u_0150_001,{},v2.2.0-healthy +evt_001731,u_0185,onboarding_step_viewed,2026-06-04T11:10:00Z,u_0185_s01,ins_u_0185_004,{},v2.2.0-healthy +evt_001732,u_0150,signup_completed,2026-06-04T11:11:00Z,u_0150_s01,ins_u_0150_002,{},v2.2.0-healthy +evt_001733,u_0386,feature_used,2026-06-04T11:11:00Z,u_0386_s01,ins_u_0386_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001734,u_0630,profile_saved,2026-06-04T11:11:00Z,u_0630_s01,ins_u_0630_003,{},v2.2.0-healthy +evt_001735,u_0337,signup_started,2026-06-04T11:12:00Z,u_0337_s01,ins_u_0337_001,{},v2.2.0-healthy +evt_001736,u_0150,profile_saved,2026-06-04T11:17:00Z,u_0150_s01,ins_u_0150_003,{},v2.2.0-healthy +evt_001737,u_0150,onboarding_step_viewed,2026-06-04T11:19:00Z,u_0150_s01,ins_u_0150_004,{},v2.2.0-healthy +evt_001738,u_0337,signup_completed,2026-06-04T11:19:00Z,u_0337_s01,ins_u_0337_002,{},v2.2.0-healthy +evt_001739,u_0185,feature_used,2026-06-04T11:23:00Z,u_0185_s01,ins_u_0185_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001740,u_0278,signup_started,2026-06-04T11:23:00Z,u_0278_s01,ins_u_0278_001,{},v2.2.0-healthy +evt_001741,u_0386,onboarding_completed,2026-06-04T11:25:00Z,u_0386_s01,ins_u_0386_006,"{""completed_at"": ""2026-06-04T11:26:00Z""}",v2.2.0-healthy +evt_001742,u_0388,signup_started,2026-06-04T11:25:00Z,u_0388_s01,ins_u_0388_001,{},v2.2.0-healthy +evt_001743,u_0337,profile_saved,2026-06-04T11:27:00Z,u_0337_s01,ins_u_0337_003,{},v2.2.0-healthy +evt_001744,u_0388,signup_completed,2026-06-04T11:28:00Z,u_0388_s01,ins_u_0388_002,{},v2.2.0-healthy +evt_001745,u_0562,signup_started,2026-06-04T11:28:00Z,u_0562_s01,ins_u_0562_001,{},v2.2.0-healthy +evt_001746,u_0278,signup_completed,2026-06-04T11:31:00Z,u_0278_s01,ins_u_0278_002,{},v2.2.0-healthy +evt_001747,u_0063,signup_started,2026-06-04T11:33:00Z,u_0063_s01,ins_u_0063_001,{},v2.2.0-healthy +evt_001748,u_0337,onboarding_step_viewed,2026-06-04T11:33:00Z,u_0337_s01,ins_u_0337_004,{},v2.2.0-healthy +evt_001749,u_0388,profile_saved,2026-06-04T11:33:00Z,u_0388_s01,ins_u_0388_003,{},v2.2.0-healthy +evt_001750,u_0562,signup_completed,2026-06-04T11:33:00Z,u_0562_s01,ins_u_0562_002,{},v2.2.0-healthy +evt_001751,u_0185,onboarding_completed,2026-06-04T11:36:00Z,u_0185_s01,ins_u_0185_006,"{""completed_at"": ""2026-06-04T11:36:00Z""}",v2.2.0-healthy +evt_001752,u_0278,profile_saved,2026-06-04T11:36:00Z,u_0278_s01,ins_u_0278_003,{},v2.2.0-healthy +evt_001753,u_0111,signup_started,2026-06-04T11:37:00Z,u_0111_s01,ins_u_0111_001,{},v2.2.0-healthy +evt_001754,u_0278,onboarding_step_viewed,2026-06-04T11:39:00Z,u_0278_s01,ins_u_0278_004,{},v2.2.0-healthy +evt_001755,u_0562,session_abandoned,2026-06-04T11:39:00Z,u_0562_s01,ins_u_0562_003,{},v2.2.0-healthy +evt_001756,u_0063,signup_completed,2026-06-04T11:41:00Z,u_0063_s01,ins_u_0063_002,{},v2.2.0-healthy +evt_001757,u_0529,activation_completed,2026-06-04T11:42:00Z,u_0529_s01,ins_u_0529_006,{},v2.2.0-healthy +evt_001758,u_0111,signup_completed,2026-06-04T11:44:00Z,u_0111_s01,ins_u_0111_002,{},v2.2.0-healthy +evt_001759,u_0337,feature_used,2026-06-04T11:44:00Z,u_0337_s01,ins_u_0337_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001760,u_0111,profile_saved,2026-06-04T11:47:00Z,u_0111_s01,ins_u_0111_003,{},v2.2.0-healthy +evt_001761,u_0063,session_abandoned,2026-06-04T11:48:00Z,u_0063_s01,ins_u_0063_003,{},v2.2.0-healthy +evt_001762,u_0409,signup_started,2026-06-04T11:50:00Z,u_0409_s01,ins_u_0409_001,{},v2.2.0-healthy +evt_001763,u_0630,onboarding_completed,2026-06-04T11:50:00Z,u_0630_s01,ins_u_0630_004,"{""completed_at"": ""2026-06-04T11:39:00Z""}",v2.2.0-healthy +evt_001764,u_0111,onboarding_step_viewed,2026-06-04T11:51:00Z,u_0111_s01,ins_u_0111_004,{},v2.2.0-healthy +evt_001765,u_0150,onboarding_completed,2026-06-04T11:54:00Z,u_0150_s01,ins_u_0150_005,"{""completed_at"": ""2026-06-04T11:57:00Z""}",v2.2.0-healthy +evt_001766,u_0404,signup_started,2026-06-04T11:54:00Z,u_0404_s01,ins_u_0404_001,{},v2.2.0-healthy +evt_001767,u_0404,session_abandoned,2026-06-04T11:57:00Z,u_0404_s01,ins_u_0404_002,{},v2.2.0-healthy +evt_001768,u_0409,session_abandoned,2026-06-04T11:58:00Z,u_0409_s01,ins_u_0409_002,{},v2.2.0-healthy +evt_001769,u_0568,signup_started,2026-06-04T12:00:00Z,u_0568_s01,ins_u_0568_001,{},v2.2.0-healthy +evt_001770,u_0268,signup_started,2026-06-04T12:03:00Z,u_0268_s01,ins_u_0268_001,{},v2.2.0-healthy +evt_001771,u_0568,signup_completed,2026-06-04T12:04:00Z,u_0568_s01,ins_u_0568_002,{},v2.2.0-healthy +evt_001772,u_0011,signup_started,2026-06-04T12:05:00Z,u_0011_s01,ins_u_0011_001,{},v2.2.0-healthy +evt_001773,u_0388,onboarding_completed,2026-06-04T12:05:00Z,u_0388_s01,ins_u_0388_004,"{""completed_at"": ""2026-06-04T12:13:00Z""}",v2.2.0-healthy +evt_001774,u_0591,signup_started,2026-06-04T12:05:00Z,u_0591_s01,ins_u_0591_001,{},v2.2.0-healthy +evt_001775,u_0278,onboarding_completed,2026-06-04T12:06:00Z,u_0278_s01,ins_u_0278_005,"{""completed_at"": ""2026-06-04T12:02:00Z""}",v2.2.0-healthy +evt_001776,u_0616,signup_started,2026-06-04T12:07:00Z,u_0616_s01,ins_u_0616_001,{},v2.2.0-healthy +evt_001777,u_0111,feature_used,2026-06-04T12:08:00Z,u_0111_s01,ins_u_0111_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001778,u_0268,signup_completed,2026-06-04T12:08:00Z,u_0268_s01,ins_u_0268_002,{},v2.2.0-healthy +evt_001779,u_0591,signup_completed,2026-06-04T12:10:00Z,u_0591_s01,ins_u_0591_002,{},v2.2.0-healthy +evt_001780,u_0011,signup_completed,2026-06-04T12:11:00Z,u_0011_s01,ins_u_0011_002,{},v2.2.0-healthy +evt_001781,u_0337,onboarding_completed,2026-06-04T12:11:00Z,u_0337_s01,ins_u_0337_006,"{""completed_at"": ""2026-06-04T11:59:00Z""}",v2.2.0-healthy +evt_001782,u_0568,profile_saved,2026-06-04T12:11:00Z,u_0568_s01,ins_u_0568_003,{},v2.2.0-healthy +evt_001783,u_0268,profile_saved,2026-06-04T12:12:00Z,u_0268_s01,ins_u_0268_003,{},v2.2.0-healthy +evt_001784,u_0521,signup_started,2026-06-04T12:12:00Z,u_0521_s01,ins_u_0521_001,{},v2.2.0-healthy +evt_001785,u_0568,error_shown,2026-06-04T12:12:00Z,u_0568_s01,ins_u_0568_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001786,u_0011,profile_saved,2026-06-04T12:14:00Z,u_0011_s01,ins_u_0011_003,{},v2.2.0-healthy +evt_001787,u_0568,onboarding_step_viewed,2026-06-04T12:14:00Z,u_0568_s01,ins_u_0568_005,{},v2.2.0-healthy +evt_001788,u_0616,signup_completed,2026-06-04T12:14:00Z,u_0616_s01,ins_u_0616_002,{},v2.2.0-healthy +evt_001789,u_0011,error_shown,2026-06-04T12:15:00Z,u_0011_s01,ins_u_0011_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001790,u_0591,profile_saved,2026-06-04T12:16:00Z,u_0591_s01,ins_u_0591_003,{},v2.2.0-healthy +evt_001791,u_0268,onboarding_step_viewed,2026-06-04T12:17:00Z,u_0268_s01,ins_u_0268_004,{},v2.2.0-healthy +evt_001792,u_0442,signup_started,2026-06-04T12:19:00Z,u_0442_s01,ins_u_0442_001,{},v2.2.0-healthy +evt_001793,u_0011,onboarding_step_viewed,2026-06-04T12:20:00Z,u_0011_s01,ins_u_0011_005,{},v2.2.0-healthy +evt_001794,u_0521,signup_completed,2026-06-04T12:20:00Z,u_0521_s01,ins_u_0521_002,{},v2.2.0-healthy +evt_001795,u_0616,profile_saved,2026-06-04T12:21:00Z,u_0616_s01,ins_u_0616_003,{},v2.2.0-healthy +evt_001796,u_0591,onboarding_step_viewed,2026-06-04T12:22:00Z,u_0591_s01,ins_u_0591_004,{},v2.2.0-healthy +evt_001797,u_0111,onboarding_completed,2026-06-04T12:26:00Z,u_0111_s01,ins_u_0111_006,"{""completed_at"": ""2026-06-04T12:25:00Z""}",v2.2.0-healthy +evt_001798,u_0442,signup_completed,2026-06-04T12:26:00Z,u_0442_s01,ins_u_0442_002,{},v2.2.0-healthy +evt_001799,u_0278,activation_completed,2026-06-04T12:27:00Z,u_0278_s01,ins_u_0278_006,{},v2.2.0-healthy +evt_001800,u_0616,onboarding_step_viewed,2026-06-04T12:27:00Z,u_0616_s01,ins_u_0616_004,{},v2.2.0-healthy +evt_001801,u_0521,profile_saved,2026-06-04T12:29:00Z,u_0521_s01,ins_u_0521_003,{},v2.2.0-healthy +evt_001802,u_0044,signup_started,2026-06-04T12:32:00Z,u_0044_s01,ins_u_0044_001,{},v2.2.0-healthy +evt_001803,u_0521,onboarding_step_viewed,2026-06-04T12:35:00Z,u_0521_s01,ins_u_0521_004,{},v2.2.0-healthy +evt_001804,u_0442,profile_saved,2026-06-04T12:36:00Z,u_0442_s01,ins_u_0442_003,{},v2.2.0-healthy +evt_001805,u_0568,onboarding_completed,2026-06-04T12:37:00Z,u_0568_s01,ins_u_0568_006,"{""completed_at"": ""2026-06-04T12:38:00Z""}",v2.2.0-healthy +evt_001806,u_0616,feature_used,2026-06-04T12:37:00Z,u_0616_s01,ins_u_0616_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001807,u_0044,signup_completed,2026-06-04T12:40:00Z,u_0044_s01,ins_u_0044_002,{},v2.2.0-healthy +evt_001808,u_0442,onboarding_step_viewed,2026-06-04T12:41:00Z,u_0442_s01,ins_u_0442_004,{},v2.2.0-healthy +evt_001809,u_0268,onboarding_completed,2026-06-04T12:45:00Z,u_0268_s01,ins_u_0268_005,"{""completed_at"": ""2026-06-04T12:41:00Z""}",v2.2.0-healthy +evt_001810,u_0044,profile_saved,2026-06-04T12:46:00Z,u_0044_s01,ins_u_0044_003,{},v2.2.0-healthy +evt_001811,u_0332,signup_started,2026-06-04T12:46:00Z,u_0332_s01,ins_u_0332_001,{},v2.2.0-healthy +evt_001812,u_0044,onboarding_step_viewed,2026-06-04T12:48:00Z,u_0044_s01,ins_u_0044_004,{},v2.2.0-healthy +evt_001813,u_0505,signup_started,2026-06-04T12:48:00Z,u_0505_s01,ins_u_0505_001,{},v2.2.0-healthy +evt_001814,u_0467,signup_started,2026-06-04T12:49:00Z,u_0467_s01,ins_u_0467_001,{},v2.2.0-healthy +evt_001815,u_0521,feature_used,2026-06-04T12:51:00Z,u_0521_s01,ins_u_0521_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001816,u_0505,signup_completed,2026-06-04T12:52:00Z,u_0505_s01,ins_u_0505_002,{},v2.2.0-healthy +evt_001817,u_0591,onboarding_completed,2026-06-04T12:52:00Z,u_0591_s01,ins_u_0591_005,"{""completed_at"": ""2026-06-04T12:44:00Z""}",v2.2.0-healthy +evt_001818,u_0011,onboarding_completed,2026-06-04T12:53:00Z,u_0011_s01,ins_u_0011_006,"{""completed_at"": ""2026-06-04T12:44:00Z""}",v2.2.0-healthy +evt_001819,u_0330,signup_started,2026-06-04T12:54:00Z,u_0330_s01,ins_u_0330_001,{},v2.2.0-healthy +evt_001820,u_0332,signup_completed,2026-06-04T12:54:00Z,u_0332_s01,ins_u_0332_002,{},v2.2.0-healthy +evt_001821,u_0353,signup_started,2026-06-04T12:55:00Z,u_0353_s01,ins_u_0353_001,{},v2.2.0-healthy +evt_001822,u_0353,signup_completed,2026-06-04T12:57:00Z,u_0353_s01,ins_u_0353_002,{},v2.2.0-healthy +evt_001823,u_0467,signup_completed,2026-06-04T12:57:00Z,u_0467_s01,ins_u_0467_002,{},v2.2.0-healthy +evt_001824,u_0330,signup_completed,2026-06-04T12:58:00Z,u_0330_s01,ins_u_0330_002,{},v2.2.0-healthy +evt_001825,u_0332,profile_saved,2026-06-04T12:58:00Z,u_0332_s01,ins_u_0332_003,{},v2.2.0-healthy +evt_001826,u_0505,profile_saved,2026-06-04T12:58:00Z,u_0505_s01,ins_u_0505_003,{},v2.2.0-healthy +evt_001827,u_0467,profile_saved,2026-06-04T12:59:00Z,u_0467_s01,ins_u_0467_003,{},v2.2.0-healthy +evt_001828,u_0332,onboarding_step_viewed,2026-06-04T13:00:00Z,u_0332_s01,ins_u_0332_004,{},v2.2.0-healthy +evt_001829,u_0616,onboarding_completed,2026-06-04T13:00:00Z,u_0616_s01,ins_u_0616_006,"{""completed_at"": ""2026-06-04T12:51:00Z""}",v2.2.0-healthy +evt_001830,u_0505,onboarding_step_viewed,2026-06-04T13:02:00Z,u_0505_s01,ins_u_0505_004,{},v2.2.0-healthy +evt_001831,u_0330,session_abandoned,2026-06-04T13:03:00Z,u_0330_s01,ins_u_0330_003,{},v2.2.0-healthy +evt_001832,u_0174,signup_started,2026-06-04T13:04:00Z,u_0174_s01,ins_u_0174_001,{},v2.2.0-healthy +evt_001833,u_0467,onboarding_step_viewed,2026-06-04T13:04:00Z,u_0467_s01,ins_u_0467_004,{},v2.2.0-healthy +evt_001834,u_0353,profile_saved,2026-06-04T13:05:00Z,u_0353_s01,ins_u_0353_003,{},v2.2.0-healthy +evt_001835,u_0442,onboarding_completed,2026-06-04T13:05:00Z,u_0442_s01,ins_u_0442_005,"{""completed_at"": ""2026-06-04T13:02:00Z""}",v2.2.0-healthy +evt_001836,u_0521,onboarding_completed,2026-06-04T13:08:00Z,u_0521_s01,ins_u_0521_006,"{""completed_at"": ""2026-06-04T13:05:00Z""}",v2.2.0-healthy +evt_001837,u_0044,feature_used,2026-06-04T13:10:00Z,u_0044_s01,ins_u_0044_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001838,u_0174,signup_completed,2026-06-04T13:10:00Z,u_0174_s01,ins_u_0174_002,{},v2.2.0-healthy +evt_001839,u_0505,feature_used,2026-06-04T13:10:00Z,u_0505_s01,ins_u_0505_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001840,u_0268,activation_completed,2026-06-04T13:11:00Z,u_0268_s01,ins_u_0268_006,{},v2.2.0-healthy +evt_001841,u_0353,onboarding_step_viewed,2026-06-04T13:11:00Z,u_0353_s01,ins_u_0353_004,{},v2.2.0-healthy +evt_001842,u_0786,signup_started,2026-06-04T13:14:00Z,u_0786_s01,ins_u_0786_001,{},v2.2.0-healthy +evt_001843,u_0174,session_abandoned,2026-06-04T13:16:00Z,u_0174_s01,ins_u_0174_003,{},v2.2.0-healthy +evt_001844,u_0642,signup_started,2026-06-04T13:16:00Z,u_0642_s01,ins_u_0642_001,{},v2.2.0-healthy +evt_001845,u_0759,signup_started,2026-06-04T13:16:00Z,u_0759_s01,ins_u_0759_001,{},v2.2.0-healthy +evt_001846,u_0786,signup_completed,2026-06-04T13:16:00Z,u_0786_s01,ins_u_0786_002,{},v2.2.0-healthy +evt_001847,u_0759,session_abandoned,2026-06-04T13:18:00Z,u_0759_s01,ins_u_0759_002,{},v2.2.0-healthy +evt_001848,u_0029,signup_started,2026-06-04T13:19:00Z,u_0029_s01,ins_u_0029_001,{},v2.2.0-healthy +evt_001849,u_0786,session_abandoned,2026-06-04T13:20:00Z,u_0786_s01,ins_u_0786_003,{},v2.2.0-healthy +evt_001850,u_0044,onboarding_completed,2026-06-04T13:22:00Z,u_0044_s01,ins_u_0044_006,"{""completed_at"": ""2026-06-04T13:19:00Z""}",v2.2.0-healthy +evt_001851,u_0642,signup_completed,2026-06-04T13:23:00Z,u_0642_s01,ins_u_0642_002,{},v2.2.0-healthy +evt_001852,u_0106,signup_started,2026-06-04T13:25:00Z,u_0106_s01,ins_u_0106_001,{},v2.2.0-healthy +evt_001853,u_0353,feature_used,2026-06-04T13:26:00Z,u_0353_s01,ins_u_0353_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001854,u_0029,signup_completed,2026-06-04T13:27:00Z,u_0029_s01,ins_u_0029_002,{},v2.2.0-healthy +evt_001855,u_0106,signup_completed,2026-06-04T13:29:00Z,u_0106_s01,ins_u_0106_002,{},v2.2.0-healthy +evt_001856,u_0642,profile_saved,2026-06-04T13:29:00Z,u_0642_s01,ins_u_0642_003,{},v2.2.0-healthy +evt_001857,u_0029,profile_saved,2026-06-04T13:30:00Z,u_0029_s01,ins_u_0029_003,{},v2.2.0-healthy +evt_001858,u_0642,onboarding_step_viewed,2026-06-04T13:32:00Z,u_0642_s01,ins_u_0642_004,{},v2.2.0-healthy +evt_001859,u_0106,session_abandoned,2026-06-04T13:33:00Z,u_0106_s01,ins_u_0106_003,{},v2.2.0-healthy +evt_001860,u_0029,onboarding_step_viewed,2026-06-04T13:34:00Z,u_0029_s01,ins_u_0029_004,{},v2.2.0-healthy +evt_001861,u_0467,onboarding_completed,2026-06-04T13:34:00Z,u_0467_s01,ins_u_0467_005,"{""completed_at"": ""2026-06-04T13:35:00Z""}",v2.2.0-healthy +evt_001862,u_0332,onboarding_completed,2026-06-04T13:38:00Z,u_0332_s01,ins_u_0332_005,"{""completed_at"": ""2026-06-04T13:35:00Z""}",v2.2.0-healthy +evt_001863,u_0353,onboarding_completed,2026-06-04T13:41:00Z,u_0353_s01,ins_u_0353_006,"{""completed_at"": ""2026-06-04T13:36:00Z""}",v2.2.0-healthy +evt_001864,u_0505,onboarding_completed,2026-06-04T13:42:00Z,u_0505_s01,ins_u_0505_006,"{""completed_at"": ""2026-06-04T13:32:00Z""}",v2.2.0-healthy +evt_001865,u_0505,activation_completed,2026-06-04T13:45:00Z,u_0505_s01,ins_u_0505_007,{},v2.2.0-healthy +evt_001866,u_0794,signup_started,2026-06-04T13:45:00Z,u_0794_s01,ins_u_0794_001,{},v2.2.0-healthy +evt_001867,u_0794,signup_completed,2026-06-04T13:50:00Z,u_0794_s01,ins_u_0794_002,{},v2.2.0-healthy +evt_001868,u_0490,signup_started,2026-06-04T13:51:00Z,u_0490_s01,ins_u_0490_001,{},v2.2.0-healthy +evt_001869,u_0490,signup_completed,2026-06-04T13:54:00Z,u_0490_s01,ins_u_0490_002,{},v2.2.0-healthy +evt_001870,u_0794,profile_saved,2026-06-04T13:59:00Z,u_0794_s01,ins_u_0794_003,{},v2.2.0-healthy +evt_001871,u_0109,signup_started,2026-06-04T14:02:00Z,u_0109_s01,ins_u_0109_001,{},v2.2.0-healthy +evt_001872,u_0490,profile_saved,2026-06-04T14:02:00Z,u_0490_s01,ins_u_0490_003,{},v2.2.0-healthy +evt_001873,u_0794,onboarding_step_viewed,2026-06-04T14:02:00Z,u_0794_s01,ins_u_0794_004,{},v2.2.0-healthy +evt_001874,u_0029,onboarding_completed,2026-06-04T14:06:00Z,u_0029_s01,ins_u_0029_005,"{""completed_at"": ""2026-06-04T13:58:00Z""}",v2.2.0-healthy +evt_001875,u_0109,signup_completed,2026-06-04T14:06:00Z,u_0109_s01,ins_u_0109_002,{},v2.2.0-healthy +evt_001876,u_0490,onboarding_step_viewed,2026-06-04T14:07:00Z,u_0490_s01,ins_u_0490_004,{},v2.2.0-healthy +evt_001877,u_0690,signup_started,2026-06-04T14:09:00Z,u_0690_s01,ins_u_0690_001,{},v2.2.0-healthy +evt_001878,u_0642,onboarding_completed,2026-06-04T14:11:00Z,u_0642_s01,ins_u_0642_005,"{""completed_at"": ""2026-06-04T13:56:00Z""}",v2.2.0-healthy +evt_001879,u_0109,session_abandoned,2026-06-04T14:13:00Z,u_0109_s01,ins_u_0109_003,{},v2.2.0-healthy +evt_001880,u_0690,signup_completed,2026-06-04T14:17:00Z,u_0690_s01,ins_u_0690_002,{},v2.2.0-healthy +evt_001881,u_0187,signup_started,2026-06-04T14:22:00Z,u_0187_s01,ins_u_0187_001,{},v2.2.0-healthy +evt_001882,u_0490,feature_used,2026-06-04T14:25:00Z,u_0490_s01,ins_u_0490_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001883,u_0690,session_abandoned,2026-06-04T14:26:00Z,u_0690_s01,ins_u_0690_003,{},v2.2.0-healthy +evt_001884,u_0187,signup_completed,2026-06-04T14:30:00Z,u_0187_s01,ins_u_0187_002,{},v2.2.0-healthy +evt_001885,u_0187,profile_saved,2026-06-04T14:32:00Z,u_0187_s01,ins_u_0187_003,{},v2.2.0-healthy +evt_001886,u_0642,activation_completed,2026-06-04T14:35:00Z,u_0642_s01,ins_u_0642_006,{},v2.2.0-healthy +evt_001887,u_0187,onboarding_step_viewed,2026-06-04T14:37:00Z,u_0187_s01,ins_u_0187_004,{},v2.2.0-healthy +evt_001888,u_0627,signup_started,2026-06-04T14:37:00Z,u_0627_s01,ins_u_0627_001,{},v2.2.0-healthy +evt_001889,u_0794,onboarding_completed,2026-06-04T14:38:00Z,u_0794_s01,ins_u_0794_005,"{""completed_at"": ""2026-06-04T14:29:00Z""}",v2.2.0-healthy +evt_001890,u_0094,signup_started,2026-06-04T14:40:00Z,u_0094_s01,ins_u_0094_001,{},v2.2.0-healthy +evt_001891,u_0118,return_visit,2026-06-04T14:41:00Z,u_0118_s02,ins_u_0118_007,{},v2.2.0-healthy +evt_001892,u_0627,signup_completed,2026-06-04T14:41:00Z,u_0627_s01,ins_u_0627_002,{},v2.2.0-healthy +evt_001893,u_0490,onboarding_completed,2026-06-04T14:44:00Z,u_0490_s01,ins_u_0490_006,"{""completed_at"": ""2026-06-04T14:32:00Z""}",v2.2.0-healthy +evt_001894,u_0094,signup_completed,2026-06-04T14:46:00Z,u_0094_s01,ins_u_0094_002,{},v2.2.0-healthy +evt_001895,u_0627,profile_saved,2026-06-04T14:47:00Z,u_0627_s01,ins_u_0627_003,{},v2.2.0-healthy +evt_001896,u_0627,onboarding_step_viewed,2026-06-04T14:51:00Z,u_0627_s01,ins_u_0627_004,{},v2.2.0-healthy +evt_001897,u_0094,profile_saved,2026-06-04T14:55:00Z,u_0094_s01,ins_u_0094_003,{},v2.2.0-healthy +evt_001898,u_0179,signup_started,2026-06-04T14:55:00Z,u_0179_s01,ins_u_0179_001,{},v2.2.0-healthy +evt_001899,u_0094,onboarding_step_viewed,2026-06-04T15:00:00Z,u_0094_s01,ins_u_0094_004,{},v2.2.0-healthy +evt_001900,u_0179,session_abandoned,2026-06-04T15:03:00Z,u_0179_s01,ins_u_0179_002,{},v2.2.0-healthy +evt_001901,u_0094,feature_used,2026-06-04T15:06:00Z,u_0094_s01,ins_u_0094_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001902,u_0627,feature_used,2026-06-04T15:06:00Z,u_0627_s01,ins_u_0627_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001903,u_0187,onboarding_completed,2026-06-04T15:10:00Z,u_0187_s01,ins_u_0187_005,"{""completed_at"": ""2026-06-04T15:01:00Z""}",v2.2.0-healthy +evt_001904,u_0609,signup_started,2026-06-04T15:12:00Z,u_0609_s01,ins_u_0609_001,{},v2.2.0-healthy +evt_001905,u_0609,signup_completed,2026-06-04T15:13:00Z,u_0609_s01,ins_u_0609_002,{},v2.2.0-healthy +evt_001906,u_0585,signup_started,2026-06-04T15:14:00Z,u_0585_s01,ins_u_0585_001,{},v2.2.0-healthy +evt_001907,u_0585,session_abandoned,2026-06-04T15:16:00Z,u_0585_s01,ins_u_0585_002,{},v2.2.0-healthy +evt_001908,u_0609,profile_saved,2026-06-04T15:17:00Z,u_0609_s01,ins_u_0609_003,{},v2.2.0-healthy +evt_001909,u_0407,signup_started,2026-06-04T15:18:00Z,u_0407_s01,ins_u_0407_001,{},v2.2.0-healthy +evt_001910,u_0609,error_shown,2026-06-04T15:18:00Z,u_0609_s01,ins_u_0609_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001911,u_0698,signup_started,2026-06-04T15:19:00Z,u_0698_s01,ins_u_0698_001,{},v2.2.0-healthy +evt_001912,u_0698,signup_completed,2026-06-04T15:20:00Z,u_0698_s01,ins_u_0698_002,{},v2.2.0-healthy +evt_001913,u_0407,signup_completed,2026-06-04T15:21:00Z,u_0407_s01,ins_u_0407_002,{},v2.2.0-healthy +evt_001914,u_0698,profile_saved,2026-06-04T15:22:00Z,u_0698_s01,ins_u_0698_003,{},v2.2.0-healthy +evt_001915,u_0532,signup_started,2026-06-04T15:24:00Z,u_0532_s01,ins_u_0532_001,{},v2.2.0-healthy +evt_001916,u_0609,feature_used,2026-06-04T15:24:00Z,u_0609_s01,ins_u_0609_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001917,u_0187,activation_completed,2026-06-04T15:28:00Z,u_0187_s01,ins_u_0187_006,{},v2.2.0-healthy +evt_001918,u_0407,session_abandoned,2026-06-04T15:28:00Z,u_0407_s01,ins_u_0407_003,{},v2.2.0-healthy +evt_001919,u_0532,session_abandoned,2026-06-04T15:28:00Z,u_0532_s01,ins_u_0532_002,{},v2.2.0-healthy +evt_001920,u_0627,onboarding_completed,2026-06-04T15:28:00Z,u_0627_s01,ins_u_0627_006,"{""completed_at"": ""2026-06-04T15:24:00Z""}",v2.2.0-healthy +evt_001921,u_0698,feature_used,2026-06-04T15:40:00Z,u_0698_s01,ins_u_0698_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_001922,u_0194,signup_started,2026-06-04T15:49:00Z,u_0194_s01,ins_u_0194_001,{},v2.2.0-healthy +evt_001923,u_0609,onboarding_completed,2026-06-04T15:50:00Z,u_0609_s01,ins_u_0609_006,"{""completed_at"": ""2026-06-04T15:51:00Z""}",v2.2.0-healthy +evt_001924,u_0194,signup_completed,2026-06-04T15:51:00Z,u_0194_s01,ins_u_0194_002,{},v2.2.0-healthy +evt_001925,u_0194,profile_saved,2026-06-04T15:55:00Z,u_0194_s01,ins_u_0194_003,{},v2.2.0-healthy +evt_001926,u_0194,onboarding_step_viewed,2026-06-04T15:57:00Z,u_0194_s01,ins_u_0194_004,{},v2.2.0-healthy +evt_001927,u_0392,signup_started,2026-06-04T15:57:00Z,u_0392_s01,ins_u_0392_001,{},v2.2.0-healthy +evt_001928,u_0627,activation_completed,2026-06-04T15:58:00Z,u_0627_s01,ins_u_0627_007,{},v2.2.0-healthy +evt_001929,u_0392,signup_completed,2026-06-04T16:02:00Z,u_0392_s01,ins_u_0392_002,{},v2.2.0-healthy +evt_001930,u_0698,onboarding_completed,2026-06-04T16:03:00Z,u_0698_s01,ins_u_0698_005,"{""completed_at"": ""2026-06-04T15:58:00Z""}",v2.2.0-healthy +evt_001931,u_0392,profile_saved,2026-06-04T16:06:00Z,u_0392_s01,ins_u_0392_003,{},v2.2.0-healthy +evt_001932,u_0392,onboarding_step_viewed,2026-06-04T16:09:00Z,u_0392_s01,ins_u_0392_004,{},v2.2.0-healthy +evt_001933,u_0609,activation_completed,2026-06-04T16:09:00Z,u_0609_s01,ins_u_0609_007,{},v2.2.0-healthy +evt_001934,u_0789,signup_started,2026-06-04T16:09:00Z,u_0789_s01,ins_u_0789_001,{},v2.2.0-healthy +evt_001935,u_0094,activation_completed,2026-06-04T16:13:00Z,u_0094_s01,ins_u_0094_006,{},v2.2.0-healthy +evt_001936,u_0290,signup_started,2026-06-04T16:13:00Z,u_0290_s01,ins_u_0290_001,{},v2.2.0-healthy +evt_001937,u_0789,session_abandoned,2026-06-04T16:13:00Z,u_0789_s01,ins_u_0789_002,{},v2.2.0-healthy +evt_001938,u_0290,signup_completed,2026-06-04T16:14:00Z,u_0290_s01,ins_u_0290_002,{},v2.2.0-healthy +evt_001939,u_0194,feature_used,2026-06-04T16:15:00Z,u_0194_s01,ins_u_0194_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001940,u_0572,signup_started,2026-06-04T16:16:00Z,u_0572_s01,ins_u_0572_001,{},v2.2.0-healthy +evt_001941,u_0572,session_abandoned,2026-06-04T16:18:00Z,u_0572_s01,ins_u_0572_002,{},v2.2.0-healthy +evt_001942,u_0419,signup_started,2026-06-04T16:20:00Z,u_0419_s01,ins_u_0419_001,{},v2.2.0-healthy +evt_001943,u_0290,profile_saved,2026-06-04T16:21:00Z,u_0290_s01,ins_u_0290_003,{},v2.2.0-healthy +evt_001944,u_0099,signup_started,2026-06-04T16:26:00Z,u_0099_s01,ins_u_0099_001,{},v2.2.0-healthy +evt_001945,u_0194,onboarding_completed,2026-06-04T16:26:00Z,u_0194_s01,ins_u_0194_006,"{""completed_at"": ""2026-06-04T16:35:00Z""}",v2.2.0-healthy +evt_001946,u_0419,signup_completed,2026-06-04T16:28:00Z,u_0419_s01,ins_u_0419_002,{},v2.2.0-healthy +evt_001947,u_0099,signup_completed,2026-06-04T16:30:00Z,u_0099_s01,ins_u_0099_002,{},v2.2.0-healthy +evt_001948,u_0419,profile_saved,2026-06-04T16:31:00Z,u_0419_s01,ins_u_0419_003,{},v2.2.0-healthy +evt_001949,u_0419,error_shown,2026-06-04T16:32:00Z,u_0419_s01,ins_u_0419_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_001950,u_0099,session_abandoned,2026-06-04T16:35:00Z,u_0099_s01,ins_u_0099_003,{},v2.2.0-healthy +evt_001951,u_0419,onboarding_step_viewed,2026-06-04T16:35:00Z,u_0419_s01,ins_u_0419_005,{},v2.2.0-healthy +evt_001952,u_0392,onboarding_completed,2026-06-04T16:37:00Z,u_0392_s01,ins_u_0392_005,"{""completed_at"": ""2026-06-04T16:39:00Z""}",v2.2.0-healthy +evt_001953,u_0464,signup_started,2026-06-04T16:39:00Z,u_0464_s01,ins_u_0464_001,{},v2.2.0-healthy +evt_001954,u_0761,signup_started,2026-06-04T16:42:00Z,u_0761_s01,ins_u_0761_001,{},v2.2.0-healthy +evt_001955,u_0464,signup_completed,2026-06-04T16:44:00Z,u_0464_s01,ins_u_0464_002,{},v2.2.0-healthy +evt_001956,u_0103,signup_started,2026-06-04T16:45:00Z,u_0103_s01,ins_u_0103_001,{},v2.2.0-healthy +evt_001957,u_0464,profile_saved,2026-06-04T16:47:00Z,u_0464_s01,ins_u_0464_003,{},v2.2.0-healthy +evt_001958,u_0761,session_abandoned,2026-06-04T16:47:00Z,u_0761_s01,ins_u_0761_002,{},v2.2.0-healthy +evt_001959,u_0103,signup_completed,2026-06-04T16:51:00Z,u_0103_s01,ins_u_0103_002,{},v2.2.0-healthy +evt_001960,u_0464,onboarding_step_viewed,2026-06-04T16:53:00Z,u_0464_s01,ins_u_0464_004,{},v2.2.0-healthy +evt_001961,u_0103,profile_saved,2026-06-04T16:55:00Z,u_0103_s01,ins_u_0103_003,{},v2.2.0-healthy +evt_001962,u_0103,onboarding_step_viewed,2026-06-04T17:00:00Z,u_0103_s01,ins_u_0103_004,{},v2.2.0-healthy +evt_001963,u_0754,signup_started,2026-06-04T17:02:00Z,u_0754_s01,ins_u_0754_001,{},v2.2.0-healthy +evt_001964,u_0754,session_abandoned,2026-06-04T17:05:00Z,u_0754_s01,ins_u_0754_002,{},v2.2.0-healthy +evt_001965,u_0017,signup_started,2026-06-04T17:10:00Z,u_0017_s01,ins_u_0017_001,{},v2.2.0-healthy +evt_001966,u_0464,feature_used,2026-06-04T17:12:00Z,u_0464_s01,ins_u_0464_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_001967,u_0419,onboarding_completed,2026-06-04T17:14:00Z,u_0419_s01,ins_u_0419_006,"{""completed_at"": ""2026-06-04T16:57:00Z""}",v2.2.0-healthy +evt_001968,u_0017,signup_completed,2026-06-04T17:15:00Z,u_0017_s01,ins_u_0017_002,{},v2.2.0-healthy +evt_001969,u_0078,signup_started,2026-06-04T17:15:00Z,u_0078_s01,ins_u_0078_001,{},v2.2.0-healthy +evt_001970,u_0464,onboarding_completed,2026-06-04T17:15:00Z,u_0464_s01,ins_u_0464_006,"{""completed_at"": ""2026-06-04T17:20:00Z""}",v2.2.0-healthy +evt_001971,u_0017,profile_saved,2026-06-04T17:20:00Z,u_0017_s01,ins_u_0017_003,{},v2.2.0-healthy +evt_001972,u_0078,signup_completed,2026-06-04T17:20:00Z,u_0078_s01,ins_u_0078_002,{},v2.2.0-healthy +evt_001973,u_0235,signup_started,2026-06-04T17:22:00Z,u_0235_s01,ins_u_0235_001,{},v2.2.0-healthy +evt_001974,u_0017,onboarding_step_viewed,2026-06-04T17:23:00Z,u_0017_s01,ins_u_0017_004,{},v2.2.0-healthy +evt_001975,u_0290,activation_completed,2026-06-04T17:24:00Z,u_0290_s01,ins_u_0290_004,{},v2.2.0-healthy +evt_001976,u_0419,activation_completed,2026-06-04T17:24:00Z,u_0419_s01,ins_u_0419_007,{},v2.2.0-healthy +evt_001977,u_0078,session_abandoned,2026-06-04T17:27:00Z,u_0078_s01,ins_u_0078_003,{},v2.2.0-healthy +evt_001978,u_0235,session_abandoned,2026-06-04T17:27:00Z,u_0235_s01,ins_u_0235_002,{},v2.2.0-healthy +evt_001979,u_0017,feature_used,2026-06-04T17:30:00Z,u_0017_s01,ins_u_0017_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_001980,u_0488,signup_started,2026-06-04T17:30:00Z,u_0488_s01,ins_u_0488_001,{},v2.2.0-healthy +evt_001981,u_0795,signup_started,2026-06-04T17:34:00Z,u_0795_s01,ins_u_0795_001,{},v2.2.0-healthy +evt_001982,u_0103,onboarding_completed,2026-06-04T17:36:00Z,u_0103_s01,ins_u_0103_005,"{""completed_at"": ""2026-06-04T17:30:00Z""}",v2.2.0-healthy +evt_001983,u_0488,session_abandoned,2026-06-04T17:36:00Z,u_0488_s01,ins_u_0488_002,{},v2.2.0-healthy +evt_001984,u_0594,signup_started,2026-06-04T17:36:00Z,u_0594_s01,ins_u_0594_001,{},v2.2.0-healthy +evt_001985,u_0594,session_abandoned,2026-06-04T17:39:00Z,u_0594_s01,ins_u_0594_002,{},v2.2.0-healthy +evt_001986,u_0352,signup_started,2026-06-04T17:40:00Z,u_0352_s01,ins_u_0352_001,{},v2.2.0-healthy +evt_001987,u_0795,signup_completed,2026-06-04T17:41:00Z,u_0795_s01,ins_u_0795_002,{},v2.2.0-healthy +evt_001988,u_0154,signup_started,2026-06-04T17:42:00Z,u_0154_s01,ins_u_0154_001,{},v2.2.0-healthy +evt_001989,u_0154,signup_completed,2026-06-04T17:45:00Z,u_0154_s01,ins_u_0154_002,{},v2.2.0-healthy +evt_001990,u_0352,signup_completed,2026-06-04T17:47:00Z,u_0352_s01,ins_u_0352_002,{},v2.2.0-healthy +evt_001991,u_0154,profile_saved,2026-06-04T17:48:00Z,u_0154_s01,ins_u_0154_003,{},v2.2.0-healthy +evt_001992,u_0795,session_abandoned,2026-06-04T17:48:00Z,u_0795_s01,ins_u_0795_003,{},v2.2.0-healthy +evt_001993,u_0549,signup_started,2026-06-04T17:50:00Z,u_0549_s01,ins_u_0549_001,{},v2.2.0-healthy +evt_001994,u_0154,onboarding_step_viewed,2026-06-04T17:52:00Z,u_0154_s01,ins_u_0154_004,{},v2.2.0-healthy +evt_001995,u_0643,signup_started,2026-06-04T17:54:00Z,u_0643_s01,ins_u_0643_001,{},v2.2.0-healthy +evt_001996,u_0352,session_abandoned,2026-06-04T17:55:00Z,u_0352_s01,ins_u_0352_003,{},v2.2.0-healthy +evt_001997,u_0549,signup_completed,2026-06-04T17:57:00Z,u_0549_s01,ins_u_0549_002,{},v2.2.0-healthy +evt_001998,u_0501,signup_started,2026-06-04T17:58:00Z,u_0501_s01,ins_u_0501_001,{},v2.2.0-healthy +evt_001999,u_0643,signup_completed,2026-06-04T18:00:00Z,u_0643_s01,ins_u_0643_002,{},v2.2.0-healthy +evt_002000,u_0491,signup_started,2026-06-04T18:01:00Z,u_0491_s01,ins_u_0491_001,{},v2.2.0-healthy +evt_002001,u_0501,signup_completed,2026-06-04T18:04:00Z,u_0501_s01,ins_u_0501_002,{},v2.2.0-healthy +evt_002002,u_0491,signup_completed,2026-06-04T18:06:00Z,u_0491_s01,ins_u_0491_002,{},v2.2.0-healthy +evt_002003,u_0549,profile_saved,2026-06-04T18:06:00Z,u_0549_s01,ins_u_0549_003,{},v2.2.0-healthy +evt_002004,u_0291,signup_started,2026-06-04T18:08:00Z,u_0291_s01,ins_u_0291_001,{},v2.2.0-healthy +evt_002005,u_0321,signup_started,2026-06-04T18:09:00Z,u_0321_s01,ins_u_0321_001,{},v2.2.0-healthy +evt_002006,u_0363,signup_started,2026-06-04T18:09:00Z,u_0363_s01,ins_u_0363_001,{},v2.2.0-healthy +evt_002007,u_0371,return_visit,2026-06-04T18:09:00Z,u_0371_s02,ins_u_0371_007,{},v2.2.0-healthy +evt_002008,u_0501,profile_saved,2026-06-04T18:10:00Z,u_0501_s01,ins_u_0501_003,{},v2.2.0-healthy +evt_002009,u_0643,profile_saved,2026-06-04T18:10:00Z,u_0643_s01,ins_u_0643_003,{},v2.2.0-healthy +evt_002010,u_0363,signup_completed,2026-06-04T18:11:00Z,u_0363_s01,ins_u_0363_002,{},v2.2.0-healthy +evt_002011,u_0549,onboarding_step_viewed,2026-06-04T18:11:00Z,u_0549_s01,ins_u_0549_004,{},v2.2.0-healthy +evt_002012,u_0501,onboarding_step_viewed,2026-06-04T18:12:00Z,u_0501_s01,ins_u_0501_004,{},v2.2.0-healthy +evt_002013,u_0291,signup_completed,2026-06-04T18:14:00Z,u_0291_s01,ins_u_0291_002,{},v2.2.0-healthy +evt_002014,u_0371,feature_used,2026-06-04T18:14:00Z,u_0371_s02,ins_u_0371_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002015,u_0321,signup_completed,2026-06-04T18:15:00Z,u_0321_s01,ins_u_0321_002,{},v2.2.0-healthy +evt_002016,u_0491,session_abandoned,2026-06-04T18:15:00Z,u_0491_s01,ins_u_0491_003,{},v2.2.0-healthy +evt_002017,u_0643,onboarding_step_viewed,2026-06-04T18:15:00Z,u_0643_s01,ins_u_0643_004,{},v2.2.0-healthy +evt_002018,u_0291,profile_saved,2026-06-04T18:17:00Z,u_0291_s01,ins_u_0291_003,{},v2.2.0-healthy +evt_002019,u_0363,profile_saved,2026-06-04T18:17:00Z,u_0363_s01,ins_u_0363_003,{},v2.2.0-healthy +evt_002020,u_0549,feature_used,2026-06-04T18:17:00Z,u_0549_s01,ins_u_0549_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002021,u_0643,feature_used,2026-06-04T18:19:00Z,u_0643_s01,ins_u_0643_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002022,u_0363,onboarding_step_viewed,2026-06-04T18:20:00Z,u_0363_s01,ins_u_0363_004,{},v2.2.0-healthy +evt_002023,u_0100,signup_started,2026-06-04T18:22:00Z,u_0100_s01,ins_u_0100_001,{},v2.2.0-healthy +evt_002024,u_0321,profile_saved,2026-06-04T18:22:00Z,u_0321_s01,ins_u_0321_003,{},v2.2.0-healthy +evt_002025,u_0291,onboarding_step_viewed,2026-06-04T18:23:00Z,u_0291_s01,ins_u_0291_004,{},v2.2.0-healthy +evt_002026,u_0487,signup_started,2026-06-04T18:24:00Z,u_0487_s01,ins_u_0487_001,{},v2.2.0-healthy +evt_002027,u_0154,onboarding_completed,2026-06-04T18:25:00Z,u_0154_s01,ins_u_0154_005,"{""completed_at"": ""2026-06-04T18:17:00Z""}",v2.2.0-healthy +evt_002028,u_0100,signup_completed,2026-06-04T18:26:00Z,u_0100_s01,ins_u_0100_002,{},v2.2.0-healthy +evt_002029,u_0321,onboarding_step_viewed,2026-06-04T18:27:00Z,u_0321_s01,ins_u_0321_004,{},v2.2.0-healthy +evt_002030,u_0363,feature_used,2026-06-04T18:29:00Z,u_0363_s01,ins_u_0363_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002031,u_0100,profile_saved,2026-06-04T18:30:00Z,u_0100_s01,ins_u_0100_003,{},v2.2.0-healthy +evt_002032,u_0487,signup_completed,2026-06-04T18:32:00Z,u_0487_s01,ins_u_0487_002,{},v2.2.0-healthy +evt_002033,u_0100,onboarding_step_viewed,2026-06-04T18:33:00Z,u_0100_s01,ins_u_0100_004,{},v2.2.0-healthy +evt_002034,u_0501,feature_used,2026-06-04T18:34:00Z,u_0501_s01,ins_u_0501_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002035,u_0321,feature_used,2026-06-04T18:36:00Z,u_0321_s01,ins_u_0321_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002036,u_0487,profile_saved,2026-06-04T18:36:00Z,u_0487_s01,ins_u_0487_003,{},v2.2.0-healthy +evt_002037,u_0368,signup_started,2026-06-04T18:37:00Z,u_0368_s01,ins_u_0368_001,{},v2.2.0-healthy +evt_002038,u_0501,onboarding_completed,2026-06-04T18:40:00Z,u_0501_s01,ins_u_0501_006,"{""completed_at"": ""2026-06-04T18:41:00Z""}",v2.2.0-healthy +evt_002039,u_0487,onboarding_step_viewed,2026-06-04T18:41:00Z,u_0487_s01,ins_u_0487_004,{},v2.2.0-healthy +evt_002040,u_0612,signup_started,2026-06-04T18:41:00Z,u_0612_s01,ins_u_0612_001,{},v2.2.0-healthy +evt_002041,u_0368,signup_completed,2026-06-04T18:42:00Z,u_0368_s01,ins_u_0368_002,{},v2.2.0-healthy +evt_002042,u_0612,session_abandoned,2026-06-04T18:44:00Z,u_0612_s01,ins_u_0612_002,{},v2.2.0-healthy +evt_002043,u_0549,onboarding_completed,2026-06-04T18:45:00Z,u_0549_s01,ins_u_0549_006,"{""completed_at"": ""2026-06-04T18:33:00Z""}",v2.2.0-healthy +evt_002044,u_0643,onboarding_completed,2026-06-04T18:46:00Z,u_0643_s01,ins_u_0643_006,"{""completed_at"": ""2026-06-04T18:49:00Z""}",v2.2.0-healthy +evt_002045,u_0291,onboarding_completed,2026-06-04T18:48:00Z,u_0291_s01,ins_u_0291_005,"{""completed_at"": ""2026-06-04T18:52:00Z""}",v2.2.0-healthy +evt_002046,u_0363,onboarding_completed,2026-06-04T18:50:00Z,u_0363_s01,ins_u_0363_006,"{""completed_at"": ""2026-06-04T18:52:00Z""}",v2.2.0-healthy +evt_002047,u_0368,profile_saved,2026-06-04T18:50:00Z,u_0368_s01,ins_u_0368_003,{},v2.2.0-healthy +evt_002048,u_0487,feature_used,2026-06-04T18:50:00Z,u_0487_s01,ins_u_0487_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002049,u_0100,feature_used,2026-06-04T18:54:00Z,u_0100_s01,ins_u_0100_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002050,u_0368,onboarding_step_viewed,2026-06-04T18:55:00Z,u_0368_s01,ins_u_0368_004,{},v2.2.0-healthy +evt_002051,u_0321,onboarding_completed,2026-06-04T18:59:00Z,u_0321_s01,ins_u_0321_006,"{""completed_at"": ""2026-06-04T18:58:00Z""}",v2.2.0-healthy +evt_002052,u_0062,signup_started,2026-06-04T19:02:00Z,u_0062_s01,ins_u_0062_001,{},v2.2.0-healthy +evt_002053,u_0100,onboarding_completed,2026-06-04T19:03:00Z,u_0100_s01,ins_u_0100_006,"{""completed_at"": ""2026-06-04T19:02:00Z""}",v2.2.0-healthy +evt_002054,u_0291,activation_completed,2026-06-04T19:03:00Z,u_0291_s01,ins_u_0291_006,{},v2.2.0-healthy +evt_002055,u_0062,signup_completed,2026-06-04T19:09:00Z,u_0062_s01,ins_u_0062_002,{},v2.2.0-healthy +evt_002056,u_0487,onboarding_completed,2026-06-04T19:10:00Z,u_0487_s01,ins_u_0487_006,"{""completed_at"": ""2026-06-04T19:04:00Z""}",v2.2.0-healthy +evt_002057,u_0649,signup_started,2026-06-04T19:12:00Z,u_0649_s01,ins_u_0649_001,{},v2.2.0-healthy +evt_002058,u_0285,signup_started,2026-06-04T19:14:00Z,u_0285_s01,ins_u_0285_001,{},v2.2.0-healthy +evt_002059,u_0062,session_abandoned,2026-06-04T19:15:00Z,u_0062_s01,ins_u_0062_003,{},v2.2.0-healthy +evt_002060,u_0285,signup_completed,2026-06-04T19:15:00Z,u_0285_s01,ins_u_0285_002,{},v2.2.0-healthy +evt_002061,u_0205,signup_started,2026-06-04T19:16:00Z,u_0205_s01,ins_u_0205_001,{},v2.2.0-healthy +evt_002062,u_0101,signup_started,2026-06-04T19:17:00Z,u_0101_s01,ins_u_0101_001,{},v2.2.0-healthy +evt_002063,u_0649,signup_completed,2026-06-04T19:18:00Z,u_0649_s01,ins_u_0649_002,{},v2.2.0-healthy +evt_002064,u_0205,signup_completed,2026-06-04T19:20:00Z,u_0205_s01,ins_u_0205_002,{},v2.2.0-healthy +evt_002065,u_0101,signup_completed,2026-06-04T19:22:00Z,u_0101_s01,ins_u_0101_002,{},v2.2.0-healthy +evt_002066,u_0649,session_abandoned,2026-06-04T19:23:00Z,u_0649_s01,ins_u_0649_003,{},v2.2.0-healthy +evt_002067,u_0285,session_abandoned,2026-06-04T19:24:00Z,u_0285_s01,ins_u_0285_003,{},v2.2.0-healthy +evt_002068,u_0501,activation_completed,2026-06-04T19:24:00Z,u_0501_s01,ins_u_0501_007,{},v2.2.0-healthy +evt_002069,u_0205,profile_saved,2026-06-04T19:26:00Z,u_0205_s01,ins_u_0205_003,{},v2.2.0-healthy +evt_002070,u_0368,onboarding_completed,2026-06-04T19:26:00Z,u_0368_s01,ins_u_0368_005,"{""completed_at"": ""2026-06-04T19:21:00Z""}",v2.2.0-healthy +evt_002071,u_0321,activation_completed,2026-06-04T19:29:00Z,u_0321_s01,ins_u_0321_007,{},v2.2.0-healthy +evt_002072,u_0101,profile_saved,2026-06-04T19:31:00Z,u_0101_s01,ins_u_0101_003,{},v2.2.0-healthy +evt_002073,u_0205,onboarding_step_viewed,2026-06-04T19:32:00Z,u_0205_s01,ins_u_0205_004,{},v2.2.0-healthy +evt_002074,u_0101,onboarding_step_viewed,2026-06-04T19:33:00Z,u_0101_s01,ins_u_0101_004,{},v2.2.0-healthy +evt_002075,u_0101,feature_used,2026-06-04T19:38:00Z,u_0101_s01,ins_u_0101_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002076,u_0548,signup_started,2026-06-04T19:43:00Z,u_0548_s01,ins_u_0548_001,{},v2.2.0-healthy +evt_002077,u_0316,signup_started,2026-06-04T19:45:00Z,u_0316_s01,ins_u_0316_001,{},v2.2.0-healthy +evt_002078,u_0145,signup_started,2026-06-04T19:46:00Z,u_0145_s01,ins_u_0145_001,{},v2.2.0-healthy +evt_002079,u_0368,activation_completed,2026-06-04T19:46:00Z,u_0368_s01,ins_u_0368_006,{},v2.2.0-healthy +evt_002080,u_0145,signup_completed,2026-06-04T19:49:00Z,u_0145_s01,ins_u_0145_002,{},v2.2.0-healthy +evt_002081,u_0487,activation_completed,2026-06-04T19:49:00Z,u_0487_s01,ins_u_0487_007,{},v2.2.0-healthy +evt_002082,u_0548,signup_completed,2026-06-04T19:50:00Z,u_0548_s01,ins_u_0548_002,{},v2.2.0-healthy +evt_002083,u_0316,signup_completed,2026-06-04T19:51:00Z,u_0316_s01,ins_u_0316_002,{},v2.2.0-healthy +evt_002084,u_0548,profile_saved,2026-06-04T19:54:00Z,u_0548_s01,ins_u_0548_003,{},v2.2.0-healthy +evt_002085,u_0145,profile_saved,2026-06-04T19:56:00Z,u_0145_s01,ins_u_0145_003,{},v2.2.0-healthy +evt_002086,u_0316,profile_saved,2026-06-04T19:56:00Z,u_0316_s01,ins_u_0316_003,{},v2.2.0-healthy +evt_002087,u_0205,onboarding_completed,2026-06-04T19:58:00Z,u_0205_s01,ins_u_0205_005,"{""completed_at"": ""2026-06-04T19:54:00Z""}",v2.2.0-healthy +evt_002088,u_0748,signup_started,2026-06-04T19:59:00Z,u_0748_s01,ins_u_0748_001,{},v2.2.0-healthy +evt_002089,u_0145,onboarding_step_viewed,2026-06-04T20:02:00Z,u_0145_s01,ins_u_0145_004,{},v2.2.0-healthy +evt_002090,u_0762,signup_started,2026-06-04T20:02:00Z,u_0762_s01,ins_u_0762_001,{},v2.2.0-healthy +evt_002091,u_0748,signup_completed,2026-06-04T20:03:00Z,u_0748_s01,ins_u_0748_002,{},v2.2.0-healthy +evt_002092,u_0031,signup_started,2026-06-04T20:04:00Z,u_0031_s01,ins_u_0031_001,{},v2.2.0-healthy +evt_002093,u_0423,signup_started,2026-06-04T20:04:00Z,u_0423_s01,ins_u_0423_001,{},v2.2.0-healthy +evt_002094,u_0423,session_abandoned,2026-06-04T20:05:00Z,u_0423_s01,ins_u_0423_002,{},v2.2.0-healthy +evt_002095,u_0551,signup_started,2026-06-04T20:06:00Z,u_0551_s01,ins_u_0551_001,{},v2.2.0-healthy +evt_002096,u_0217,signup_started,2026-06-04T20:08:00Z,u_0217_s01,ins_u_0217_001,{},v2.2.0-healthy +evt_002097,u_0748,profile_saved,2026-06-04T20:08:00Z,u_0748_s01,ins_u_0748_003,{},v2.2.0-healthy +evt_002098,u_0217,signup_completed,2026-06-04T20:09:00Z,u_0217_s01,ins_u_0217_002,{},v2.2.0-healthy +evt_002099,u_0762,session_abandoned,2026-06-04T20:09:00Z,u_0762_s01,ins_u_0762_002,{},v2.2.0-healthy +evt_002100,u_0031,session_abandoned,2026-06-04T20:12:00Z,u_0031_s01,ins_u_0031_002,{},v2.2.0-healthy +evt_002101,u_0145,feature_used,2026-06-04T20:12:00Z,u_0145_s01,ins_u_0145_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002102,u_0206,signup_started,2026-06-04T20:12:00Z,u_0206_s01,ins_u_0206_001,{},v2.2.0-healthy +evt_002103,u_0551,signup_completed,2026-06-04T20:12:00Z,u_0551_s01,ins_u_0551_002,{},v2.2.0-healthy +evt_002104,u_0217,session_abandoned,2026-06-04T20:13:00Z,u_0217_s01,ins_u_0217_003,{},v2.2.0-healthy +evt_002105,u_0206,signup_completed,2026-06-04T20:14:00Z,u_0206_s01,ins_u_0206_002,{},v2.2.0-healthy +evt_002106,u_0551,profile_saved,2026-06-04T20:14:00Z,u_0551_s01,ins_u_0551_003,{},v2.2.0-healthy +evt_002107,u_0548,feature_used,2026-06-04T20:15:00Z,u_0548_s01,ins_u_0548_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_002108,u_0205,activation_completed,2026-06-04T20:18:00Z,u_0205_s01,ins_u_0205_006,{},v2.2.0-healthy +evt_002109,u_0551,onboarding_step_viewed,2026-06-04T20:18:00Z,u_0551_s01,ins_u_0551_004,{},v2.2.0-healthy +evt_002110,u_0228,signup_started,2026-06-04T20:23:00Z,u_0228_s01,ins_u_0228_001,{},v2.2.0-healthy +evt_002111,u_0446,signup_started,2026-06-04T20:23:00Z,u_0446_s01,ins_u_0446_001,{},v2.2.0-healthy +evt_002112,u_0206,profile_saved,2026-06-04T20:24:00Z,u_0206_s01,ins_u_0206_003,{},v2.2.0-healthy +evt_002113,u_0206,error_shown,2026-06-04T20:25:00Z,u_0206_s01,ins_u_0206_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002114,u_0206,onboarding_step_viewed,2026-06-04T20:27:00Z,u_0206_s01,ins_u_0206_005,{},v2.2.0-healthy +evt_002115,u_0318,signup_started,2026-06-04T20:28:00Z,u_0318_s01,ins_u_0318_001,{},v2.2.0-healthy +evt_002116,u_0318,signup_completed,2026-06-04T20:29:00Z,u_0318_s01,ins_u_0318_002,{},v2.2.0-healthy +evt_002117,u_0748,feature_used,2026-06-04T20:30:00Z,u_0748_s01,ins_u_0748_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_002118,u_0228,signup_completed,2026-06-04T20:31:00Z,u_0228_s01,ins_u_0228_002,{},v2.2.0-healthy +evt_002119,u_0446,session_abandoned,2026-06-04T20:31:00Z,u_0446_s01,ins_u_0446_002,{},v2.2.0-healthy +evt_002120,u_0550,signup_started,2026-06-04T20:32:00Z,u_0550_s01,ins_u_0550_001,{},v2.2.0-healthy +evt_002121,u_0316,onboarding_completed,2026-06-04T20:33:00Z,u_0316_s01,ins_u_0316_004,"{""completed_at"": ""2026-06-04T20:33:00Z""}",v2.2.0-healthy +evt_002122,u_0318,profile_saved,2026-06-04T20:33:00Z,u_0318_s01,ins_u_0318_003,{},v2.2.0-healthy +evt_002123,u_0551,feature_used,2026-06-04T20:33:00Z,u_0551_s01,ins_u_0551_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002124,u_0228,profile_saved,2026-06-04T20:34:00Z,u_0228_s01,ins_u_0228_003,{},v2.2.0-healthy +evt_002125,u_0550,signup_completed,2026-06-04T20:34:00Z,u_0550_s01,ins_u_0550_002,{},v2.2.0-healthy +evt_002126,u_0318,onboarding_step_viewed,2026-06-04T20:35:00Z,u_0318_s01,ins_u_0318_004,{},v2.2.0-healthy +evt_002127,u_0548,onboarding_completed,2026-06-04T20:37:00Z,u_0548_s01,ins_u_0548_005,"{""completed_at"": ""2026-06-04T20:34:00Z""}",v2.2.0-healthy +evt_002128,u_0228,onboarding_step_viewed,2026-06-04T20:39:00Z,u_0228_s01,ins_u_0228_004,{},v2.2.0-healthy +evt_002129,u_0550,profile_saved,2026-06-04T20:39:00Z,u_0550_s01,ins_u_0550_003,{},v2.2.0-healthy +evt_002130,u_0318,feature_used,2026-06-04T20:42:00Z,u_0318_s01,ins_u_0318_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002131,u_0550,onboarding_step_viewed,2026-06-04T20:45:00Z,u_0550_s01,ins_u_0550_004,{},v2.2.0-healthy +evt_002132,u_0083,signup_started,2026-06-04T20:47:00Z,u_0083_s01,ins_u_0083_001,{},v2.2.0-healthy +evt_002133,u_0145,activation_completed,2026-06-04T20:50:00Z,u_0145_s01,ins_u_0145_006,{},v2.2.0-healthy +evt_002134,u_0083,signup_completed,2026-06-04T20:51:00Z,u_0083_s01,ins_u_0083_002,{},v2.2.0-healthy +evt_002135,u_0228,feature_used,2026-06-04T20:53:00Z,u_0228_s01,ins_u_0228_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002136,u_0748,onboarding_completed,2026-06-04T20:53:00Z,u_0748_s01,ins_u_0748_005,"{""completed_at"": ""2026-06-04T20:46:00Z""}",v2.2.0-healthy +evt_002137,u_0550,feature_used,2026-06-04T20:55:00Z,u_0550_s01,ins_u_0550_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002138,u_0206,onboarding_completed,2026-06-04T20:58:00Z,u_0206_s01,ins_u_0206_006,"{""completed_at"": ""2026-06-04T20:57:00Z""}",v2.2.0-healthy +evt_002139,u_0551,onboarding_completed,2026-06-04T20:58:00Z,u_0551_s01,ins_u_0551_006,"{""completed_at"": ""2026-06-04T20:53:00Z""}",v2.2.0-healthy +evt_002140,u_0471,signup_started,2026-06-04T20:59:00Z,u_0471_s01,ins_u_0471_001,{},v2.2.0-healthy +evt_002141,u_0083,profile_saved,2026-06-04T21:00:00Z,u_0083_s01,ins_u_0083_003,{},v2.2.0-healthy +evt_002142,u_0083,onboarding_step_viewed,2026-06-04T21:02:00Z,u_0083_s01,ins_u_0083_004,{},v2.2.0-healthy +evt_002143,u_0471,signup_completed,2026-06-04T21:07:00Z,u_0471_s01,ins_u_0471_002,{},v2.2.0-healthy +evt_002144,u_0228,onboarding_completed,2026-06-04T21:09:00Z,u_0228_s01,ins_u_0228_006,"{""completed_at"": ""2026-06-04T21:01:00Z""}",v2.2.0-healthy +evt_002145,u_0318,onboarding_completed,2026-06-04T21:09:00Z,u_0318_s01,ins_u_0318_006,"{""completed_at"": ""2026-06-04T20:59:00Z""}",v2.2.0-healthy +evt_002146,u_0471,profile_saved,2026-06-04T21:13:00Z,u_0471_s01,ins_u_0471_003,{},v2.2.0-healthy +evt_002147,u_0083,feature_used,2026-06-04T21:16:00Z,u_0083_s01,ins_u_0083_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002148,u_0471,onboarding_step_viewed,2026-06-04T21:19:00Z,u_0471_s01,ins_u_0471_004,{},v2.2.0-healthy +evt_002149,u_0551,activation_completed,2026-06-04T21:29:00Z,u_0551_s01,ins_u_0551_007,{},v2.2.0-healthy +evt_002150,u_0228,activation_completed,2026-06-04T21:34:00Z,u_0228_s01,ins_u_0228_007,{},v2.2.0-healthy +evt_002151,u_0206,activation_completed,2026-06-04T21:40:00Z,u_0206_s01,ins_u_0206_007,{},v2.2.0-healthy +evt_002152,u_0471,onboarding_completed,2026-06-04T21:40:00Z,u_0471_s01,ins_u_0471_005,"{""completed_at"": ""2026-06-04T21:39:00Z""}",v2.2.0-healthy +evt_002153,u_0083,onboarding_completed,2026-06-04T21:43:00Z,u_0083_s01,ins_u_0083_006,"{""completed_at"": ""2026-06-04T21:31:00Z""}",v2.2.0-healthy +evt_002154,u_0550,activation_completed,2026-06-04T21:48:00Z,u_0550_s01,ins_u_0550_006,{},v2.2.0-healthy +evt_002155,u_0083,activation_completed,2026-06-04T21:58:00Z,u_0083_s01,ins_u_0083_007,{},v2.2.0-healthy +evt_002156,u_0471,activation_completed,2026-06-04T22:23:00Z,u_0471_s01,ins_u_0471_006,{},v2.2.0-healthy +evt_002157,u_0782,return_visit,2026-06-05T01:58:00Z,u_0782_s02,ins_u_0782_008,{},v2.2.0-healthy +evt_002158,u_0782,feature_used,2026-06-05T02:03:00Z,u_0782_s02,ins_u_0782_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002159,u_0084,return_visit,2026-06-05T02:22:00Z,u_0084_s02,ins_u_0084_008,{},v2.2.0-healthy +evt_002160,u_0084,feature_used,2026-06-05T02:27:00Z,u_0084_s02,ins_u_0084_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002161,u_0030,return_visit,2026-06-05T03:32:00Z,u_0030_s02,ins_u_0030_007,{},v2.2.0-healthy +evt_002162,u_0030,feature_used,2026-06-05T03:37:00Z,u_0030_s02,ins_u_0030_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002163,u_0334,return_visit,2026-06-05T05:53:00Z,u_0334_s02,ins_u_0334_006,{},v2.2.0-healthy +evt_002164,u_0243,return_visit,2026-06-05T08:11:00Z,u_0243_s02,ins_u_0243_007,{},v2.2.0-healthy +evt_002165,u_0104,signup_started,2026-06-05T08:31:00Z,u_0104_s01,ins_u_0104_001,{},v2.2.0-healthy +evt_002166,u_0104,signup_completed,2026-06-05T08:33:00Z,u_0104_s01,ins_u_0104_002,{},v2.2.0-healthy +evt_002167,u_0584,signup_started,2026-06-05T08:36:00Z,u_0584_s01,ins_u_0584_001,{},v2.2.0-healthy +evt_002168,u_0104,profile_saved,2026-06-05T08:37:00Z,u_0104_s01,ins_u_0104_003,{},v2.2.0-healthy +evt_002169,u_0104,error_shown,2026-06-05T08:38:00Z,u_0104_s01,ins_u_0104_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002170,u_0104,onboarding_step_viewed,2026-06-05T08:41:00Z,u_0104_s01,ins_u_0104_005,{},v2.2.0-healthy +evt_002171,u_0584,signup_completed,2026-06-05T08:41:00Z,u_0584_s01,ins_u_0584_002,{},v2.2.0-healthy +evt_002172,u_0584,profile_saved,2026-06-05T08:44:00Z,u_0584_s01,ins_u_0584_003,{},v2.2.0-healthy +evt_002173,u_0584,onboarding_step_viewed,2026-06-05T08:49:00Z,u_0584_s01,ins_u_0584_004,{},v2.2.0-healthy +evt_002174,u_0553,signup_started,2026-06-05T08:54:00Z,u_0553_s01,ins_u_0553_001,{},v2.2.0-healthy +evt_002175,u_0171,signup_started,2026-06-05T08:59:00Z,u_0171_s01,ins_u_0171_001,{},v2.2.0-healthy +evt_002176,u_0389,signup_started,2026-06-05T08:59:00Z,u_0389_s01,ins_u_0389_001,{},v2.2.0-healthy +evt_002177,u_0171,signup_completed,2026-06-05T09:00:00Z,u_0171_s01,ins_u_0171_002,{},v2.2.0-healthy +evt_002178,u_0553,signup_completed,2026-06-05T09:00:00Z,u_0553_s01,ins_u_0553_002,{},v2.2.0-healthy +evt_002179,u_0104,feature_used,2026-06-05T09:02:00Z,u_0104_s01,ins_u_0104_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_002180,u_0171,profile_saved,2026-06-05T09:04:00Z,u_0171_s01,ins_u_0171_003,{},v2.2.0-healthy +evt_002181,u_0553,profile_saved,2026-06-05T09:04:00Z,u_0553_s01,ins_u_0553_003,{},v2.2.0-healthy +evt_002182,u_0389,session_abandoned,2026-06-05T09:05:00Z,u_0389_s01,ins_u_0389_002,{},v2.2.0-healthy +evt_002183,u_0553,error_shown,2026-06-05T09:05:00Z,u_0553_s01,ins_u_0553_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002184,u_0553,onboarding_step_viewed,2026-06-05T09:07:00Z,u_0553_s01,ins_u_0553_005,{},v2.2.0-healthy +evt_002185,u_0171,onboarding_step_viewed,2026-06-05T09:08:00Z,u_0171_s01,ins_u_0171_004,{},v2.2.0-healthy +evt_002186,u_0271,signup_started,2026-06-05T09:10:00Z,u_0271_s01,ins_u_0271_001,{},v2.2.0-healthy +evt_002187,u_0552,signup_started,2026-06-05T09:10:00Z,u_0552_s01,ins_u_0552_001,{},v2.2.0-healthy +evt_002188,u_0193,signup_started,2026-06-05T09:12:00Z,u_0193_s01,ins_u_0193_001,{},v2.2.0-healthy +evt_002189,u_0171,feature_used,2026-06-05T09:13:00Z,u_0171_s01,ins_u_0171_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002190,u_0271,signup_completed,2026-06-05T09:14:00Z,u_0271_s01,ins_u_0271_002,{},v2.2.0-healthy +evt_002191,u_0584,onboarding_completed,2026-06-05T09:14:00Z,u_0584_s01,ins_u_0584_005,"{""completed_at"": ""2026-06-05T09:10:00Z""}",v2.2.0-healthy +evt_002192,u_0193,signup_completed,2026-06-05T09:15:00Z,u_0193_s01,ins_u_0193_002,{},v2.2.0-healthy +evt_002193,u_0193,profile_saved,2026-06-05T09:17:00Z,u_0193_s01,ins_u_0193_003,{},v2.2.0-healthy +evt_002194,u_0104,onboarding_completed,2026-06-05T09:18:00Z,u_0104_s01,ins_u_0104_007,"{""completed_at"": ""2026-06-05T09:03:00Z""}",v2.2.0-healthy +evt_002195,u_0552,signup_completed,2026-06-05T09:18:00Z,u_0552_s01,ins_u_0552_002,{},v2.2.0-healthy +evt_002196,u_0271,profile_saved,2026-06-05T09:20:00Z,u_0271_s01,ins_u_0271_003,{},v2.2.0-healthy +evt_002197,u_0175,signup_started,2026-06-05T09:21:00Z,u_0175_s01,ins_u_0175_001,{},v2.2.0-healthy +evt_002198,u_0271,error_shown,2026-06-05T09:21:00Z,u_0271_s01,ins_u_0271_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002199,u_0193,onboarding_step_viewed,2026-06-05T09:22:00Z,u_0193_s01,ins_u_0193_004,{},v2.2.0-healthy +evt_002200,u_0553,feature_used,2026-06-05T09:22:00Z,u_0553_s01,ins_u_0553_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002201,u_0271,onboarding_step_viewed,2026-06-05T09:26:00Z,u_0271_s01,ins_u_0271_005,{},v2.2.0-healthy +evt_002202,u_0193,feature_used,2026-06-05T09:28:00Z,u_0193_s01,ins_u_0193_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002203,u_0552,profile_saved,2026-06-05T09:28:00Z,u_0552_s01,ins_u_0552_003,{},v2.2.0-healthy +evt_002204,u_0717,signup_started,2026-06-05T09:28:00Z,u_0717_s01,ins_u_0717_001,{},v2.2.0-healthy +evt_002205,u_0175,signup_completed,2026-06-05T09:29:00Z,u_0175_s01,ins_u_0175_002,{},v2.2.0-healthy +evt_002206,u_0552,error_shown,2026-06-05T09:29:00Z,u_0552_s01,ins_u_0552_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002207,u_0552,onboarding_step_viewed,2026-06-05T09:31:00Z,u_0552_s01,ins_u_0552_005,{},v2.2.0-healthy +evt_002208,u_0075,signup_started,2026-06-05T09:33:00Z,u_0075_s01,ins_u_0075_001,{},v2.2.0-healthy +evt_002209,u_0075,signup_completed,2026-06-05T09:34:00Z,u_0075_s01,ins_u_0075_002,{},v2.2.0-healthy +evt_002210,u_0175,profile_saved,2026-06-05T09:34:00Z,u_0175_s01,ins_u_0175_003,{},v2.2.0-healthy +evt_002211,u_0271,feature_used,2026-06-05T09:35:00Z,u_0271_s01,ins_u_0271_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002212,u_0096,signup_started,2026-06-05T09:36:00Z,u_0096_s01,ins_u_0096_001,{},v2.2.0-healthy +evt_002213,u_0717,signup_completed,2026-06-05T09:36:00Z,u_0717_s01,ins_u_0717_002,{},v2.2.0-healthy +evt_002214,u_0175,onboarding_step_viewed,2026-06-05T09:37:00Z,u_0175_s01,ins_u_0175_004,{},v2.2.0-healthy +evt_002215,u_0552,feature_used,2026-06-05T09:37:00Z,u_0552_s01,ins_u_0552_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_002216,u_0075,profile_saved,2026-06-05T09:38:00Z,u_0075_s01,ins_u_0075_003,{},v2.2.0-healthy +evt_002217,u_0717,profile_saved,2026-06-05T09:41:00Z,u_0717_s01,ins_u_0717_003,{},v2.2.0-healthy +evt_002218,u_0096,signup_completed,2026-06-05T09:43:00Z,u_0096_s01,ins_u_0096_002,{},v2.2.0-healthy +evt_002219,u_0530,signup_started,2026-06-05T09:43:00Z,u_0530_s01,ins_u_0530_001,{},v2.2.0-healthy +evt_002220,u_0075,onboarding_step_viewed,2026-06-05T09:44:00Z,u_0075_s01,ins_u_0075_004,{},v2.2.0-healthy +evt_002221,u_0193,onboarding_completed,2026-06-05T09:45:00Z,u_0193_s01,ins_u_0193_006,"{""completed_at"": ""2026-06-05T09:43:00Z""}",v2.2.0-healthy +evt_002222,u_0530,signup_completed,2026-06-05T09:45:00Z,u_0530_s01,ins_u_0530_002,{},v2.2.0-healthy +evt_002223,u_0553,onboarding_completed,2026-06-05T09:45:00Z,u_0553_s01,ins_u_0553_007,"{""completed_at"": ""2026-06-05T09:33:00Z""}",v2.2.0-healthy +evt_002224,u_0717,onboarding_step_viewed,2026-06-05T09:45:00Z,u_0717_s01,ins_u_0717_004,{},v2.2.0-healthy +evt_002225,u_0175,feature_used,2026-06-05T09:47:00Z,u_0175_s01,ins_u_0175_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002226,u_0717,feature_used,2026-06-05T09:48:00Z,u_0717_s01,ins_u_0717_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002227,u_0096,profile_saved,2026-06-05T09:49:00Z,u_0096_s01,ins_u_0096_003,{},v2.2.0-healthy +evt_002228,u_0171,onboarding_completed,2026-06-05T09:49:00Z,u_0171_s01,ins_u_0171_006,"{""completed_at"": ""2026-06-05T09:39:00Z""}",v2.2.0-healthy +evt_002229,u_0096,error_shown,2026-06-05T09:50:00Z,u_0096_s01,ins_u_0096_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002230,u_0096,onboarding_step_viewed,2026-06-05T09:55:00Z,u_0096_s01,ins_u_0096_005,{},v2.2.0-healthy +evt_002231,u_0208,signup_started,2026-06-05T09:55:00Z,u_0208_s01,ins_u_0208_001,{},v2.2.0-healthy +evt_002232,u_0530,profile_saved,2026-06-05T09:55:00Z,u_0530_s01,ins_u_0530_003,{},v2.2.0-healthy +evt_002233,u_0096,feature_used,2026-06-05T09:57:00Z,u_0096_s01,ins_u_0096_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_002234,u_0530,onboarding_step_viewed,2026-06-05T09:57:00Z,u_0530_s01,ins_u_0530_004,{},v2.2.0-healthy +evt_002235,u_0735,signup_started,2026-06-05T09:57:00Z,u_0735_s01,ins_u_0735_001,{},v2.2.0-healthy +evt_002236,u_0271,onboarding_completed,2026-06-05T09:58:00Z,u_0271_s01,ins_u_0271_007,"{""completed_at"": ""2026-06-05T09:54:00Z""}",v2.2.0-healthy +evt_002237,u_0579,signup_started,2026-06-05T09:59:00Z,u_0579_s01,ins_u_0579_001,{},v2.2.0-healthy +evt_002238,u_0735,signup_completed,2026-06-05T09:59:00Z,u_0735_s01,ins_u_0735_002,{},v2.2.0-healthy +evt_002239,u_0208,signup_completed,2026-06-05T10:01:00Z,u_0208_s01,ins_u_0208_002,{},v2.2.0-healthy +evt_002240,u_0579,signup_completed,2026-06-05T10:03:00Z,u_0579_s01,ins_u_0579_002,{},v2.2.0-healthy +evt_002241,u_0735,profile_saved,2026-06-05T10:03:00Z,u_0735_s01,ins_u_0735_003,{},v2.2.0-healthy +evt_002242,u_0208,profile_saved,2026-06-05T10:04:00Z,u_0208_s01,ins_u_0208_003,{},v2.2.0-healthy +evt_002243,u_0270,return_visit,2026-06-05T10:04:00Z,u_0270_s02,ins_u_0270_007,{},v2.2.0-healthy +evt_002244,u_0773,signup_started,2026-06-05T10:04:00Z,u_0773_s01,ins_u_0773_001,{},v2.2.0-healthy +evt_002245,u_0175,onboarding_completed,2026-06-05T10:05:00Z,u_0175_s01,ins_u_0175_006,"{""completed_at"": ""2026-06-05T10:02:00Z""}",v2.2.0-healthy +evt_002246,u_0735,onboarding_step_viewed,2026-06-05T10:06:00Z,u_0735_s01,ins_u_0735_004,{},v2.2.0-healthy +evt_002247,u_0773,signup_completed,2026-06-05T10:08:00Z,u_0773_s01,ins_u_0773_002,{},v2.2.0-healthy +evt_002248,u_0075,onboarding_completed,2026-06-05T10:09:00Z,u_0075_s01,ins_u_0075_005,"{""completed_at"": ""2026-06-05T10:17:00Z""}",v2.2.0-healthy +evt_002249,u_0270,feature_used,2026-06-05T10:09:00Z,u_0270_s02,ins_u_0270_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002250,u_0208,onboarding_step_viewed,2026-06-05T10:10:00Z,u_0208_s01,ins_u_0208_004,{},v2.2.0-healthy +evt_002251,u_0579,session_abandoned,2026-06-05T10:11:00Z,u_0579_s01,ins_u_0579_003,{},v2.2.0-healthy +evt_002252,u_0717,onboarding_completed,2026-06-05T10:12:00Z,u_0717_s01,ins_u_0717_006,"{""completed_at"": ""2026-06-05T10:16:00Z""}",v2.2.0-healthy +evt_002253,u_0773,profile_saved,2026-06-05T10:15:00Z,u_0773_s01,ins_u_0773_003,{},v2.2.0-healthy +evt_002254,u_0208,feature_used,2026-06-05T10:20:00Z,u_0208_s01,ins_u_0208_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002255,u_0175,activation_completed,2026-06-05T10:21:00Z,u_0175_s01,ins_u_0175_007,{},v2.2.0-healthy +evt_002256,u_0773,onboarding_step_viewed,2026-06-05T10:21:00Z,u_0773_s01,ins_u_0773_004,{},v2.2.0-healthy +evt_002257,u_0039,signup_started,2026-06-05T10:23:00Z,u_0039_s01,ins_u_0039_001,{},v2.2.0-healthy +evt_002258,u_0781,signup_started,2026-06-05T10:23:00Z,u_0781_s01,ins_u_0781_001,{},v2.2.0-healthy +evt_002259,u_0039,signup_completed,2026-06-05T10:28:00Z,u_0039_s01,ins_u_0039_002,{},v2.2.0-healthy +evt_002260,u_0781,signup_completed,2026-06-05T10:29:00Z,u_0781_s01,ins_u_0781_002,{},v2.2.0-healthy +evt_002261,u_0039,profile_saved,2026-06-05T10:30:00Z,u_0039_s01,ins_u_0039_003,{},v2.2.0-healthy +evt_002262,u_0039,onboarding_step_viewed,2026-06-05T10:32:00Z,u_0039_s01,ins_u_0039_004,{},v2.2.0-healthy +evt_002263,u_0096,onboarding_completed,2026-06-05T10:34:00Z,u_0096_s01,ins_u_0096_007,"{""completed_at"": ""2026-06-05T10:25:00Z""}",v2.2.0-healthy +evt_002264,u_0681,signup_started,2026-06-05T10:36:00Z,u_0681_s01,ins_u_0681_001,{},v2.2.0-healthy +evt_002265,u_0781,profile_saved,2026-06-05T10:38:00Z,u_0781_s01,ins_u_0781_003,{},v2.2.0-healthy +evt_002266,u_0530,onboarding_completed,2026-06-05T10:39:00Z,u_0530_s01,ins_u_0530_005,"{""completed_at"": ""2026-06-05T10:34:00Z""}",v2.2.0-healthy +evt_002267,u_0565,signup_started,2026-06-05T10:40:00Z,u_0565_s01,ins_u_0565_001,{},v2.2.0-healthy +evt_002268,u_0096,activation_completed,2026-06-05T10:41:00Z,u_0096_s01,ins_u_0096_008,{},v2.2.0-healthy +evt_002269,u_0208,onboarding_completed,2026-06-05T10:41:00Z,u_0208_s01,ins_u_0208_006,"{""completed_at"": ""2026-06-05T10:33:00Z""}",v2.2.0-healthy +evt_002270,u_0781,onboarding_step_viewed,2026-06-05T10:42:00Z,u_0781_s01,ins_u_0781_004,{},v2.2.0-healthy +evt_002271,u_0681,signup_completed,2026-06-05T10:44:00Z,u_0681_s01,ins_u_0681_002,{},v2.2.0-healthy +evt_002272,u_0781,feature_used,2026-06-05T10:46:00Z,u_0781_s01,ins_u_0781_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002273,u_0565,session_abandoned,2026-06-05T10:48:00Z,u_0565_s01,ins_u_0565_002,{},v2.2.0-healthy +evt_002274,u_0200,signup_started,2026-06-05T10:52:00Z,u_0200_s01,ins_u_0200_001,{},v2.2.0-healthy +evt_002275,u_0208,activation_completed,2026-06-05T10:53:00Z,u_0208_s01,ins_u_0208_007,{},v2.2.0-healthy +evt_002276,u_0681,profile_saved,2026-06-05T10:53:00Z,u_0681_s01,ins_u_0681_003,{},v2.2.0-healthy +evt_002277,u_0075,activation_completed,2026-06-05T10:58:00Z,u_0075_s01,ins_u_0075_006,{},v2.2.0-healthy +evt_002278,u_0039,onboarding_completed,2026-06-05T10:59:00Z,u_0039_s01,ins_u_0039_005,"{""completed_at"": ""2026-06-05T11:10:00Z""}",v2.2.0-healthy +evt_002279,u_0681,onboarding_step_viewed,2026-06-05T10:59:00Z,u_0681_s01,ins_u_0681_004,{},v2.2.0-healthy +evt_002280,u_0200,signup_completed,2026-06-05T11:00:00Z,u_0200_s01,ins_u_0200_002,{},v2.2.0-healthy +evt_002281,u_0504,signup_started,2026-06-05T11:00:00Z,u_0504_s01,ins_u_0504_001,{},v2.2.0-healthy +evt_002282,u_0504,session_abandoned,2026-06-05T11:01:00Z,u_0504_s01,ins_u_0504_002,{},v2.2.0-healthy +evt_002283,u_0200,session_abandoned,2026-06-05T11:05:00Z,u_0200_s01,ins_u_0200_003,{},v2.2.0-healthy +evt_002284,u_0773,activation_completed,2026-06-05T11:19:00Z,u_0773_s01,ins_u_0773_005,{},v2.2.0-healthy +evt_002285,u_0781,onboarding_completed,2026-06-05T11:20:00Z,u_0781_s01,ins_u_0781_006,"{""completed_at"": ""2026-06-05T11:11:00Z""}",v2.2.0-healthy +evt_002286,u_0691,signup_started,2026-06-05T11:27:00Z,u_0691_s01,ins_u_0691_001,{},v2.2.0-healthy +evt_002287,u_0691,signup_completed,2026-06-05T11:28:00Z,u_0691_s01,ins_u_0691_002,{},v2.2.0-healthy +evt_002288,u_0691,session_abandoned,2026-06-05T11:34:00Z,u_0691_s01,ins_u_0691_003,{},v2.2.0-healthy +evt_002289,u_0669,signup_started,2026-06-05T11:39:00Z,u_0669_s01,ins_u_0669_001,{},v2.2.0-healthy +evt_002290,u_0039,activation_completed,2026-06-05T11:40:00Z,u_0039_s01,ins_u_0039_006,{},v2.2.0-healthy +evt_002291,u_0669,signup_completed,2026-06-05T11:42:00Z,u_0669_s01,ins_u_0669_002,{},v2.2.0-healthy +evt_002292,u_0669,profile_saved,2026-06-05T11:44:00Z,u_0669_s01,ins_u_0669_003,{},v2.2.0-healthy +evt_002293,u_0365,signup_started,2026-06-05T11:47:00Z,u_0365_s01,ins_u_0365_001,{},v2.2.0-healthy +evt_002294,u_0669,onboarding_step_viewed,2026-06-05T11:47:00Z,u_0669_s01,ins_u_0669_004,{},v2.2.0-healthy +evt_002295,u_0129,signup_started,2026-06-05T11:50:00Z,u_0129_s01,ins_u_0129_001,{},v2.2.0-healthy +evt_002296,u_0365,signup_completed,2026-06-05T11:50:00Z,u_0365_s01,ins_u_0365_002,{},v2.2.0-healthy +evt_002297,u_0129,signup_completed,2026-06-05T11:51:00Z,u_0129_s01,ins_u_0129_002,{},v2.2.0-healthy +evt_002298,u_0129,session_abandoned,2026-06-05T11:55:00Z,u_0129_s01,ins_u_0129_003,{},v2.2.0-healthy +evt_002299,u_0781,activation_completed,2026-06-05T11:57:00Z,u_0781_s01,ins_u_0781_007,{},v2.2.0-healthy +evt_002300,u_0365,session_abandoned,2026-06-05T11:58:00Z,u_0365_s01,ins_u_0365_003,{},v2.2.0-healthy +evt_002301,u_0369,signup_started,2026-06-05T12:02:00Z,u_0369_s01,ins_u_0369_001,{},v2.2.0-healthy +evt_002302,u_0369,session_abandoned,2026-06-05T12:04:00Z,u_0369_s01,ins_u_0369_002,{},v2.2.0-healthy +evt_002303,u_0432,signup_started,2026-06-05T12:25:00Z,u_0432_s01,ins_u_0432_001,{},v2.2.0-healthy +evt_002304,u_0432,signup_completed,2026-06-05T12:27:00Z,u_0432_s01,ins_u_0432_002,{},v2.2.0-healthy +evt_002305,u_0647,signup_started,2026-06-05T12:28:00Z,u_0647_s01,ins_u_0647_001,{},v2.2.0-healthy +evt_002306,u_0669,activation_completed,2026-06-05T12:31:00Z,u_0669_s01,ins_u_0669_005,{},v2.2.0-healthy +evt_002307,u_0432,profile_saved,2026-06-05T12:32:00Z,u_0432_s01,ins_u_0432_003,{},v2.2.0-healthy +evt_002308,u_0792,signup_started,2026-06-05T12:32:00Z,u_0792_s01,ins_u_0792_001,{},v2.2.0-healthy +evt_002309,u_0647,signup_completed,2026-06-05T12:33:00Z,u_0647_s01,ins_u_0647_002,{},v2.2.0-healthy +evt_002310,u_0792,signup_completed,2026-06-05T12:34:00Z,u_0792_s01,ins_u_0792_002,{},v2.2.0-healthy +evt_002311,u_0432,onboarding_step_viewed,2026-06-05T12:36:00Z,u_0432_s01,ins_u_0432_004,{},v2.2.0-healthy +evt_002312,u_0647,profile_saved,2026-06-05T12:39:00Z,u_0647_s01,ins_u_0647_003,{},v2.2.0-healthy +evt_002313,u_0647,error_shown,2026-06-05T12:40:00Z,u_0647_s01,ins_u_0647_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002314,u_0792,profile_saved,2026-06-05T12:41:00Z,u_0792_s01,ins_u_0792_003,{},v2.2.0-healthy +evt_002315,u_0792,error_shown,2026-06-05T12:42:00Z,u_0792_s01,ins_u_0792_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002316,u_0425,signup_started,2026-06-05T12:44:00Z,u_0425_s01,ins_u_0425_001,{},v2.2.0-healthy +evt_002317,u_0647,onboarding_step_viewed,2026-06-05T12:44:00Z,u_0647_s01,ins_u_0647_005,{},v2.2.0-healthy +evt_002318,u_0432,feature_used,2026-06-05T12:45:00Z,u_0432_s01,ins_u_0432_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002319,u_0425,signup_completed,2026-06-05T12:51:00Z,u_0425_s01,ins_u_0425_002,{},v2.2.0-healthy +evt_002320,u_0157,signup_started,2026-06-05T12:52:00Z,u_0157_s01,ins_u_0157_001,{},v2.2.0-healthy +evt_002321,u_0751,signup_started,2026-06-05T12:55:00Z,u_0751_s01,ins_u_0751_001,{},v2.2.0-healthy +evt_002322,u_0157,signup_completed,2026-06-05T12:56:00Z,u_0157_s01,ins_u_0157_002,{},v2.2.0-healthy +evt_002323,u_0425,profile_saved,2026-06-05T12:56:00Z,u_0425_s01,ins_u_0425_003,{},v2.2.0-healthy +evt_002324,u_0751,session_abandoned,2026-06-05T13:03:00Z,u_0751_s01,ins_u_0751_002,{},v2.2.0-healthy +evt_002325,u_0157,profile_saved,2026-06-05T13:04:00Z,u_0157_s01,ins_u_0157_003,{},v2.2.0-healthy +evt_002326,u_0792,feature_used,2026-06-05T13:05:00Z,u_0792_s01,ins_u_0792_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002327,u_0452,signup_started,2026-06-05T13:07:00Z,u_0452_s01,ins_u_0452_001,{},v2.2.0-healthy +evt_002328,u_0432,onboarding_completed,2026-06-05T13:09:00Z,u_0432_s01,ins_u_0432_006,"{""completed_at"": ""2026-06-05T13:00:00Z""}",v2.2.0-healthy +evt_002329,u_0148,signup_started,2026-06-05T13:15:00Z,u_0148_s01,ins_u_0148_001,{},v2.2.0-healthy +evt_002330,u_0452,signup_completed,2026-06-05T13:15:00Z,u_0452_s01,ins_u_0452_002,{},v2.2.0-healthy +evt_002331,u_0647,onboarding_completed,2026-06-05T13:15:00Z,u_0647_s01,ins_u_0647_006,"{""completed_at"": ""2026-06-05T13:10:00Z""}",v2.2.0-healthy +evt_002332,u_0148,session_abandoned,2026-06-05T13:20:00Z,u_0148_s01,ins_u_0148_002,{},v2.2.0-healthy +evt_002333,u_0452,profile_saved,2026-06-05T13:20:00Z,u_0452_s01,ins_u_0452_003,{},v2.2.0-healthy +evt_002334,u_0157,feature_used,2026-06-05T13:22:00Z,u_0157_s01,ins_u_0157_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002335,u_0315,signup_started,2026-06-05T13:23:00Z,u_0315_s01,ins_u_0315_001,{},v2.2.0-healthy +evt_002336,u_0452,onboarding_step_viewed,2026-06-05T13:24:00Z,u_0452_s01,ins_u_0452_004,{},v2.2.0-healthy +evt_002337,u_0018,signup_started,2026-06-05T13:26:00Z,u_0018_s01,ins_u_0018_001,{},v2.2.0-healthy +evt_002338,u_0315,signup_completed,2026-06-05T13:26:00Z,u_0315_s01,ins_u_0315_002,{},v2.2.0-healthy +evt_002339,u_0792,onboarding_completed,2026-06-05T13:26:00Z,u_0792_s01,ins_u_0792_006,"{""completed_at"": ""2026-06-05T13:17:00Z""}",v2.2.0-healthy +evt_002340,u_0425,onboarding_completed,2026-06-05T13:29:00Z,u_0425_s01,ins_u_0425_004,"{""completed_at"": ""2026-06-05T13:30:00Z""}",v2.2.0-healthy +evt_002341,u_0018,session_abandoned,2026-06-05T13:32:00Z,u_0018_s01,ins_u_0018_002,{},v2.2.0-healthy +evt_002342,u_0673,signup_started,2026-06-05T13:32:00Z,u_0673_s01,ins_u_0673_001,{},v2.2.0-healthy +evt_002343,u_0647,activation_completed,2026-06-05T13:33:00Z,u_0647_s01,ins_u_0647_007,{},v2.2.0-healthy +evt_002344,u_0315,profile_saved,2026-06-05T13:35:00Z,u_0315_s01,ins_u_0315_003,{},v2.2.0-healthy +evt_002345,u_0673,signup_completed,2026-06-05T13:35:00Z,u_0673_s01,ins_u_0673_002,{},v2.2.0-healthy +evt_002346,u_0315,onboarding_step_viewed,2026-06-05T13:38:00Z,u_0315_s01,ins_u_0315_004,{},v2.2.0-healthy +evt_002347,u_0673,session_abandoned,2026-06-05T13:41:00Z,u_0673_s01,ins_u_0673_003,{},v2.2.0-healthy +evt_002348,u_0315,feature_used,2026-06-05T13:43:00Z,u_0315_s01,ins_u_0315_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002349,u_0792,activation_completed,2026-06-05T13:46:00Z,u_0792_s01,ins_u_0792_007,{},v2.2.0-healthy +evt_002350,u_0157,onboarding_completed,2026-06-05T13:48:00Z,u_0157_s01,ins_u_0157_005,"{""completed_at"": ""2026-06-05T13:36:00Z""}",v2.2.0-healthy +evt_002351,u_0452,onboarding_completed,2026-06-05T13:51:00Z,u_0452_s01,ins_u_0452_005,"{""completed_at"": ""2026-06-05T13:56:00Z""}",v2.2.0-healthy +evt_002352,u_0085,signup_started,2026-06-05T13:52:00Z,u_0085_s01,ins_u_0085_001,{},v2.2.0-healthy +evt_002353,u_0085,signup_completed,2026-06-05T13:59:00Z,u_0085_s01,ins_u_0085_002,{},v2.2.0-healthy +evt_002354,u_0036,signup_started,2026-06-05T14:00:00Z,u_0036_s01,ins_u_0036_001,{},v2.2.0-healthy +evt_002355,u_0085,profile_saved,2026-06-05T14:04:00Z,u_0085_s01,ins_u_0085_003,{},v2.2.0-healthy +evt_002356,u_0085,error_shown,2026-06-05T14:05:00Z,u_0085_s01,ins_u_0085_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002357,u_0466,signup_started,2026-06-05T14:05:00Z,u_0466_s01,ins_u_0466_001,{},v2.2.0-healthy +evt_002358,u_0085,onboarding_step_viewed,2026-06-05T14:07:00Z,u_0085_s01,ins_u_0085_005,{},v2.2.0-healthy +evt_002359,u_0036,session_abandoned,2026-06-05T14:08:00Z,u_0036_s01,ins_u_0036_002,{},v2.2.0-healthy +evt_002360,u_0466,signup_completed,2026-06-05T14:11:00Z,u_0466_s01,ins_u_0466_002,{},v2.2.0-healthy +evt_002361,u_0236,signup_started,2026-06-05T14:12:00Z,u_0236_s01,ins_u_0236_001,{},v2.2.0-healthy +evt_002362,u_0315,onboarding_completed,2026-06-05T14:14:00Z,u_0315_s01,ins_u_0315_006,"{""completed_at"": ""2026-06-05T14:06:00Z""}",v2.2.0-healthy +evt_002363,u_0236,signup_completed,2026-06-05T14:15:00Z,u_0236_s01,ins_u_0236_002,{},v2.2.0-healthy +evt_002364,u_0466,session_abandoned,2026-06-05T14:15:00Z,u_0466_s01,ins_u_0466_003,{},v2.2.0-healthy +evt_002365,u_0460,signup_started,2026-06-05T14:19:00Z,u_0460_s01,ins_u_0460_001,{},v2.2.0-healthy +evt_002366,u_0236,session_abandoned,2026-06-05T14:22:00Z,u_0236_s01,ins_u_0236_003,{},v2.2.0-healthy +evt_002367,u_0085,feature_used,2026-06-05T14:24:00Z,u_0085_s01,ins_u_0085_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002368,u_0460,signup_completed,2026-06-05T14:25:00Z,u_0460_s01,ins_u_0460_002,{},v2.2.0-healthy +evt_002369,u_0315,activation_completed,2026-06-05T14:26:00Z,u_0315_s01,ins_u_0315_007,{},v2.2.0-healthy +evt_002370,u_0195,signup_started,2026-06-05T14:28:00Z,u_0195_s01,ins_u_0195_001,{},v2.2.0-healthy +evt_002371,u_0460,profile_saved,2026-06-05T14:29:00Z,u_0460_s01,ins_u_0460_003,{},v2.2.0-healthy +evt_002372,u_0085,onboarding_completed,2026-06-05T14:32:00Z,u_0085_s01,ins_u_0085_007,"{""completed_at"": ""2026-06-05T14:30:00Z""}",v2.2.0-healthy +evt_002373,u_0460,onboarding_step_viewed,2026-06-05T14:32:00Z,u_0460_s01,ins_u_0460_004,{},v2.2.0-healthy +evt_002374,u_0195,signup_completed,2026-06-05T14:33:00Z,u_0195_s01,ins_u_0195_002,{},v2.2.0-healthy +evt_002375,u_0597,signup_started,2026-06-05T14:33:00Z,u_0597_s01,ins_u_0597_001,{},v2.2.0-healthy +evt_002376,u_0460,feature_used,2026-06-05T14:37:00Z,u_0460_s01,ins_u_0460_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002377,u_0597,signup_completed,2026-06-05T14:38:00Z,u_0597_s01,ins_u_0597_002,{},v2.2.0-healthy +evt_002378,u_0195,profile_saved,2026-06-05T14:39:00Z,u_0195_s01,ins_u_0195_003,{},v2.2.0-healthy +evt_002379,u_0195,onboarding_step_viewed,2026-06-05T14:44:00Z,u_0195_s01,ins_u_0195_004,{},v2.2.0-healthy +evt_002380,u_0597,session_abandoned,2026-06-05T14:46:00Z,u_0597_s01,ins_u_0597_003,{},v2.2.0-healthy +evt_002381,u_0667,signup_started,2026-06-05T14:48:00Z,u_0667_s01,ins_u_0667_001,{},v2.2.0-healthy +evt_002382,u_0667,signup_completed,2026-06-05T14:49:00Z,u_0667_s01,ins_u_0667_002,{},v2.2.0-healthy +evt_002383,u_0097,signup_started,2026-06-05T14:50:00Z,u_0097_s01,ins_u_0097_001,{},v2.2.0-healthy +evt_002384,u_0097,signup_completed,2026-06-05T14:51:00Z,u_0097_s01,ins_u_0097_002,{},v2.2.0-healthy +evt_002385,u_0667,profile_saved,2026-06-05T14:56:00Z,u_0667_s01,ins_u_0667_003,{},v2.2.0-healthy +evt_002386,u_0097,session_abandoned,2026-06-05T14:58:00Z,u_0097_s01,ins_u_0097_003,{},v2.2.0-healthy +evt_002387,u_0556,signup_started,2026-06-05T14:58:00Z,u_0556_s01,ins_u_0556_001,{},v2.2.0-healthy +evt_002388,u_0667,onboarding_step_viewed,2026-06-05T14:59:00Z,u_0667_s01,ins_u_0667_004,{},v2.2.0-healthy +evt_002389,u_0556,signup_completed,2026-06-05T15:03:00Z,u_0556_s01,ins_u_0556_002,{},v2.2.0-healthy +evt_002390,u_0667,feature_used,2026-06-05T15:07:00Z,u_0667_s01,ins_u_0667_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002391,u_0556,session_abandoned,2026-06-05T15:08:00Z,u_0556_s01,ins_u_0556_003,{},v2.2.0-healthy +evt_002392,u_0620,signup_started,2026-06-05T15:22:00Z,u_0620_s01,ins_u_0620_001,{},v2.2.0-healthy +evt_002393,u_0667,onboarding_completed,2026-06-05T15:22:00Z,u_0667_s01,ins_u_0667_006,"{""completed_at"": ""2026-06-05T15:22:00Z""}",v2.2.0-healthy +evt_002394,u_0195,onboarding_completed,2026-06-05T15:23:00Z,u_0195_s01,ins_u_0195_005,"{""completed_at"": ""2026-06-05T15:10:00Z""}",v2.2.0-healthy +evt_002395,u_0620,signup_completed,2026-06-05T15:24:00Z,u_0620_s01,ins_u_0620_002,{},v2.2.0-healthy +evt_002396,u_0414,signup_started,2026-06-05T15:30:00Z,u_0414_s01,ins_u_0414_001,{},v2.2.0-healthy +evt_002397,u_0620,profile_saved,2026-06-05T15:31:00Z,u_0620_s01,ins_u_0620_003,{},v2.2.0-healthy +evt_002398,u_0414,signup_completed,2026-06-05T15:33:00Z,u_0414_s01,ins_u_0414_002,{},v2.2.0-healthy +evt_002399,u_0620,onboarding_step_viewed,2026-06-05T15:33:00Z,u_0620_s01,ins_u_0620_004,{},v2.2.0-healthy +evt_002400,u_0458,signup_started,2026-06-05T15:34:00Z,u_0458_s01,ins_u_0458_001,{},v2.2.0-healthy +evt_002401,u_0414,profile_saved,2026-06-05T15:39:00Z,u_0414_s01,ins_u_0414_003,{},v2.2.0-healthy +evt_002402,u_0429,signup_started,2026-06-05T15:40:00Z,u_0429_s01,ins_u_0429_001,{},v2.2.0-healthy +evt_002403,u_0458,signup_completed,2026-06-05T15:40:00Z,u_0458_s01,ins_u_0458_002,{},v2.2.0-healthy +evt_002404,u_0458,profile_saved,2026-06-05T15:42:00Z,u_0458_s01,ins_u_0458_003,{},v2.2.0-healthy +evt_002405,u_0414,onboarding_step_viewed,2026-06-05T15:45:00Z,u_0414_s01,ins_u_0414_004,{},v2.2.0-healthy +evt_002406,u_0429,signup_completed,2026-06-05T15:47:00Z,u_0429_s01,ins_u_0429_002,{},v2.2.0-healthy +evt_002407,u_0458,onboarding_step_viewed,2026-06-05T15:47:00Z,u_0458_s01,ins_u_0458_004,{},v2.2.0-healthy +evt_002408,u_0653,signup_started,2026-06-05T15:47:00Z,u_0653_s01,ins_u_0653_001,{},v2.2.0-healthy +evt_002409,u_0653,signup_completed,2026-06-05T15:51:00Z,u_0653_s01,ins_u_0653_002,{},v2.2.0-healthy +evt_002410,u_0429,session_abandoned,2026-06-05T15:55:00Z,u_0429_s01,ins_u_0429_003,{},v2.2.0-healthy +evt_002411,u_0563,signup_started,2026-06-05T15:55:00Z,u_0563_s01,ins_u_0563_001,{},v2.2.0-healthy +evt_002412,u_0708,signup_started,2026-06-05T15:55:00Z,u_0708_s01,ins_u_0708_001,{},v2.2.0-healthy +evt_002413,u_0653,profile_saved,2026-06-05T15:56:00Z,u_0653_s01,ins_u_0653_003,{},v2.2.0-healthy +evt_002414,u_0708,signup_completed,2026-06-05T15:56:00Z,u_0708_s01,ins_u_0708_002,{},v2.2.0-healthy +evt_002415,u_0123,signup_started,2026-06-05T15:57:00Z,u_0123_s01,ins_u_0123_001,{},v2.2.0-healthy +evt_002416,u_0563,signup_completed,2026-06-05T15:58:00Z,u_0563_s01,ins_u_0563_002,{},v2.2.0-healthy +evt_002417,u_0653,onboarding_step_viewed,2026-06-05T15:58:00Z,u_0653_s01,ins_u_0653_004,{},v2.2.0-healthy +evt_002418,u_0123,signup_completed,2026-06-05T16:01:00Z,u_0123_s01,ins_u_0123_002,{},v2.2.0-healthy +evt_002419,u_0563,profile_saved,2026-06-05T16:01:00Z,u_0563_s01,ins_u_0563_003,{},v2.2.0-healthy +evt_002420,u_0659,signup_started,2026-06-05T16:03:00Z,u_0659_s01,ins_u_0659_001,{},v2.2.0-healthy +evt_002421,u_0708,profile_saved,2026-06-05T16:03:00Z,u_0708_s01,ins_u_0708_003,{},v2.2.0-healthy +evt_002422,u_0233,signup_started,2026-06-05T16:04:00Z,u_0233_s01,ins_u_0233_001,{},v2.2.0-healthy +evt_002423,u_0414,onboarding_completed,2026-06-05T16:06:00Z,u_0414_s01,ins_u_0414_005,"{""completed_at"": ""2026-06-05T16:11:00Z""}",v2.2.0-healthy +evt_002424,u_0233,session_abandoned,2026-06-05T16:07:00Z,u_0233_s01,ins_u_0233_002,{},v2.2.0-healthy +evt_002425,u_0563,onboarding_step_viewed,2026-06-05T16:07:00Z,u_0563_s01,ins_u_0563_004,{},v2.2.0-healthy +evt_002426,u_0659,signup_completed,2026-06-05T16:07:00Z,u_0659_s01,ins_u_0659_002,{},v2.2.0-healthy +evt_002427,u_0620,onboarding_completed,2026-06-05T16:09:00Z,u_0620_s01,ins_u_0620_005,"{""completed_at"": ""2026-06-05T16:05:00Z""}",v2.2.0-healthy +evt_002428,u_0708,onboarding_step_viewed,2026-06-05T16:09:00Z,u_0708_s01,ins_u_0708_004,{},v2.2.0-healthy +evt_002429,u_0123,profile_saved,2026-06-05T16:10:00Z,u_0123_s01,ins_u_0123_003,{},v2.2.0-healthy +evt_002430,u_0123,onboarding_step_viewed,2026-06-05T16:13:00Z,u_0123_s01,ins_u_0123_004,{},v2.2.0-healthy +evt_002431,u_0415,signup_started,2026-06-05T16:13:00Z,u_0415_s01,ins_u_0415_001,{},v2.2.0-healthy +evt_002432,u_0226,signup_started,2026-06-05T16:14:00Z,u_0226_s01,ins_u_0226_001,{},v2.2.0-healthy +evt_002433,u_0458,onboarding_completed,2026-06-05T16:14:00Z,u_0458_s01,ins_u_0458_005,"{""completed_at"": ""2026-06-05T16:19:00Z""}",v2.2.0-healthy +evt_002434,u_0659,session_abandoned,2026-06-05T16:15:00Z,u_0659_s01,ins_u_0659_003,{},v2.2.0-healthy +evt_002435,u_0226,session_abandoned,2026-06-05T16:21:00Z,u_0226_s01,ins_u_0226_002,{},v2.2.0-healthy +evt_002436,u_0415,signup_completed,2026-06-05T16:21:00Z,u_0415_s01,ins_u_0415_002,{},v2.2.0-healthy +evt_002437,u_0123,feature_used,2026-06-05T16:24:00Z,u_0123_s01,ins_u_0123_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002438,u_0415,profile_saved,2026-06-05T16:24:00Z,u_0415_s01,ins_u_0415_003,{},v2.2.0-healthy +evt_002439,u_0514,signup_started,2026-06-05T16:26:00Z,u_0514_s01,ins_u_0514_001,{},v2.2.0-healthy +evt_002440,u_0415,onboarding_step_viewed,2026-06-05T16:30:00Z,u_0415_s01,ins_u_0415_004,{},v2.2.0-healthy +evt_002441,u_0514,session_abandoned,2026-06-05T16:32:00Z,u_0514_s01,ins_u_0514_002,{},v2.2.0-healthy +evt_002442,u_0563,onboarding_completed,2026-06-05T16:32:00Z,u_0563_s01,ins_u_0563_005,"{""completed_at"": ""2026-06-05T16:27:00Z""}",v2.2.0-healthy +evt_002443,u_0653,onboarding_completed,2026-06-05T16:33:00Z,u_0653_s01,ins_u_0653_005,"{""completed_at"": ""2026-06-05T16:36:00Z""}",v2.2.0-healthy +evt_002444,u_0708,onboarding_completed,2026-06-05T16:43:00Z,u_0708_s01,ins_u_0708_005,"{""completed_at"": ""2026-06-05T16:31:00Z""}",v2.2.0-healthy +evt_002445,u_0260,signup_started,2026-06-05T16:47:00Z,u_0260_s01,ins_u_0260_001,{},v2.2.0-healthy +evt_002446,u_0123,onboarding_completed,2026-06-05T16:51:00Z,u_0123_s01,ins_u_0123_006,"{""completed_at"": ""2026-06-05T16:40:00Z""}",v2.2.0-healthy +evt_002447,u_0414,activation_completed,2026-06-05T16:51:00Z,u_0414_s01,ins_u_0414_006,{},v2.2.0-healthy +evt_002448,u_0415,onboarding_completed,2026-06-05T16:51:00Z,u_0415_s01,ins_u_0415_005,"{""completed_at"": ""2026-06-05T17:04:00Z""}",v2.2.0-healthy +evt_002449,u_0260,signup_completed,2026-06-05T16:54:00Z,u_0260_s01,ins_u_0260_002,{},v2.2.0-healthy +evt_002450,u_0260,profile_saved,2026-06-05T16:57:00Z,u_0260_s01,ins_u_0260_003,{},v2.2.0-healthy +evt_002451,u_0308,signup_started,2026-06-05T16:59:00Z,u_0308_s01,ins_u_0308_001,{},v2.2.0-healthy +evt_002452,u_0563,activation_completed,2026-06-05T16:59:00Z,u_0563_s01,ins_u_0563_006,{},v2.2.0-healthy +evt_002453,u_0260,onboarding_step_viewed,2026-06-05T17:01:00Z,u_0260_s01,ins_u_0260_004,{},v2.2.0-healthy +evt_002454,u_0308,signup_completed,2026-06-05T17:03:00Z,u_0308_s01,ins_u_0308_002,{},v2.2.0-healthy +evt_002455,u_0260,feature_used,2026-06-05T17:05:00Z,u_0260_s01,ins_u_0260_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002456,u_0653,activation_completed,2026-06-05T17:05:00Z,u_0653_s01,ins_u_0653_006,{},v2.2.0-healthy +evt_002457,u_0512,signup_started,2026-06-05T17:06:00Z,u_0512_s01,ins_u_0512_001,{},v2.2.0-healthy +evt_002458,u_0308,profile_saved,2026-06-05T17:08:00Z,u_0308_s01,ins_u_0308_003,{},v2.2.0-healthy +evt_002459,u_0308,error_shown,2026-06-05T17:09:00Z,u_0308_s01,ins_u_0308_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002460,u_0308,onboarding_step_viewed,2026-06-05T17:13:00Z,u_0308_s01,ins_u_0308_005,{},v2.2.0-healthy +evt_002461,u_0512,signup_completed,2026-06-05T17:13:00Z,u_0512_s01,ins_u_0512_002,{},v2.2.0-healthy +evt_002462,u_0726,signup_started,2026-06-05T17:15:00Z,u_0726_s01,ins_u_0726_001,{},v2.2.0-healthy +evt_002463,u_0726,signup_completed,2026-06-05T17:16:00Z,u_0726_s01,ins_u_0726_002,{},v2.2.0-healthy +evt_002464,u_0726,profile_saved,2026-06-05T17:20:00Z,u_0726_s01,ins_u_0726_003,{},v2.2.0-healthy +evt_002465,u_0512,profile_saved,2026-06-05T17:23:00Z,u_0512_s01,ins_u_0512_003,{},v2.2.0-healthy +evt_002466,u_0726,onboarding_step_viewed,2026-06-05T17:24:00Z,u_0726_s01,ins_u_0726_004,{},v2.2.0-healthy +evt_002467,u_0308,feature_used,2026-06-05T17:25:00Z,u_0308_s01,ins_u_0308_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_002468,u_0413,signup_started,2026-06-05T17:26:00Z,u_0413_s01,ins_u_0413_001,{},v2.2.0-healthy +evt_002469,u_0512,onboarding_step_viewed,2026-06-05T17:27:00Z,u_0512_s01,ins_u_0512_004,{},v2.2.0-healthy +evt_002470,u_0072,signup_started,2026-06-05T17:31:00Z,u_0072_s01,ins_u_0072_001,{},v2.2.0-healthy +evt_002471,u_0413,signup_completed,2026-06-05T17:33:00Z,u_0413_s01,ins_u_0413_002,{},v2.2.0-healthy +evt_002472,u_0072,signup_completed,2026-06-05T17:35:00Z,u_0072_s01,ins_u_0072_002,{},v2.2.0-healthy +evt_002473,u_0413,profile_saved,2026-06-05T17:35:00Z,u_0413_s01,ins_u_0413_003,{},v2.2.0-healthy +evt_002474,u_0308,onboarding_completed,2026-06-05T17:39:00Z,u_0308_s01,ins_u_0308_007,"{""completed_at"": ""2026-06-05T17:35:00Z""}",v2.2.0-healthy +evt_002475,u_0413,onboarding_step_viewed,2026-06-05T17:39:00Z,u_0413_s01,ins_u_0413_004,{},v2.2.0-healthy +evt_002476,u_0260,onboarding_completed,2026-06-05T17:40:00Z,u_0260_s01,ins_u_0260_006,"{""completed_at"": ""2026-06-05T17:25:00Z""}",v2.2.0-healthy +evt_002477,u_0415,activation_completed,2026-06-05T17:40:00Z,u_0415_s01,ins_u_0415_006,{},v2.2.0-healthy +evt_002478,u_0726,feature_used,2026-06-05T17:40:00Z,u_0726_s01,ins_u_0726_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002479,u_0072,profile_saved,2026-06-05T17:42:00Z,u_0072_s01,ins_u_0072_003,{},v2.2.0-healthy +evt_002480,u_0119,signup_started,2026-06-05T17:46:00Z,u_0119_s01,ins_u_0119_001,{},v2.2.0-healthy +evt_002481,u_0072,onboarding_step_viewed,2026-06-05T17:47:00Z,u_0072_s01,ins_u_0072_004,{},v2.2.0-healthy +evt_002482,u_0119,signup_completed,2026-06-05T17:47:00Z,u_0119_s01,ins_u_0119_002,{},v2.2.0-healthy +evt_002483,u_0413,feature_used,2026-06-05T17:48:00Z,u_0413_s01,ins_u_0413_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002484,u_0072,feature_used,2026-06-05T17:50:00Z,u_0072_s01,ins_u_0072_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002485,u_0119,profile_saved,2026-06-05T17:52:00Z,u_0119_s01,ins_u_0119_003,{},v2.2.0-healthy +evt_002486,u_0119,onboarding_step_viewed,2026-06-05T17:58:00Z,u_0119_s01,ins_u_0119_004,{},v2.2.0-healthy +evt_002487,u_0726,onboarding_completed,2026-06-05T18:02:00Z,u_0726_s01,ins_u_0726_006,"{""completed_at"": ""2026-06-05T17:48:00Z""}",v2.2.0-healthy +evt_002488,u_0143,signup_started,2026-06-05T18:04:00Z,u_0143_s01,ins_u_0143_001,{},v2.2.0-healthy +evt_002489,u_0512,onboarding_completed,2026-06-05T18:05:00Z,u_0512_s01,ins_u_0512_005,"{""completed_at"": ""2026-06-05T17:58:00Z""}",v2.2.0-healthy +evt_002490,u_0119,feature_used,2026-06-05T18:06:00Z,u_0119_s01,ins_u_0119_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002491,u_0143,signup_completed,2026-06-05T18:07:00Z,u_0143_s01,ins_u_0143_002,{},v2.2.0-healthy +evt_002492,u_0413,onboarding_completed,2026-06-05T18:11:00Z,u_0413_s01,ins_u_0413_006,"{""completed_at"": ""2026-06-05T18:01:00Z""}",v2.2.0-healthy +evt_002493,u_0308,activation_completed,2026-06-05T18:12:00Z,u_0308_s01,ins_u_0308_008,{},v2.2.0-healthy +evt_002494,u_0469,signup_started,2026-06-05T18:13:00Z,u_0469_s01,ins_u_0469_001,{},v2.2.0-healthy +evt_002495,u_0486,signup_started,2026-06-05T18:13:00Z,u_0486_s01,ins_u_0486_001,{},v2.2.0-healthy +evt_002496,u_0143,profile_saved,2026-06-05T18:14:00Z,u_0143_s01,ins_u_0143_003,{},v2.2.0-healthy +evt_002497,u_0469,session_abandoned,2026-06-05T18:16:00Z,u_0469_s01,ins_u_0469_002,{},v2.2.0-healthy +evt_002498,u_0072,onboarding_completed,2026-06-05T18:17:00Z,u_0072_s01,ins_u_0072_006,"{""completed_at"": ""2026-06-05T18:12:00Z""}",v2.2.0-healthy +evt_002499,u_0486,signup_completed,2026-06-05T18:17:00Z,u_0486_s01,ins_u_0486_002,{},v2.2.0-healthy +evt_002500,u_0726,activation_completed,2026-06-05T18:17:00Z,u_0726_s01,ins_u_0726_007,{},v2.2.0-healthy +evt_002501,u_0143,onboarding_step_viewed,2026-06-05T18:18:00Z,u_0143_s01,ins_u_0143_004,{},v2.2.0-healthy +evt_002502,u_0486,session_abandoned,2026-06-05T18:25:00Z,u_0486_s01,ins_u_0486_003,{},v2.2.0-healthy +evt_002503,u_0134,signup_started,2026-06-05T18:28:00Z,u_0134_s01,ins_u_0134_001,{},v2.2.0-healthy +evt_002504,u_0134,signup_completed,2026-06-05T18:32:00Z,u_0134_s01,ins_u_0134_002,{},v2.2.0-healthy +evt_002505,u_0134,profile_saved,2026-06-05T18:36:00Z,u_0134_s01,ins_u_0134_003,{},v2.2.0-healthy +evt_002506,u_0119,onboarding_completed,2026-06-05T18:37:00Z,u_0119_s01,ins_u_0119_006,"{""completed_at"": ""2026-06-05T18:22:00Z""}",v2.2.0-healthy +evt_002507,u_0587,signup_started,2026-06-05T18:38:00Z,u_0587_s01,ins_u_0587_001,{},v2.2.0-healthy +evt_002508,u_0636,signup_started,2026-06-05T18:39:00Z,u_0636_s01,ins_u_0636_001,{},v2.2.0-healthy +evt_002509,u_0587,signup_completed,2026-06-05T18:41:00Z,u_0587_s01,ins_u_0587_002,{},v2.2.0-healthy +evt_002510,u_0134,onboarding_step_viewed,2026-06-05T18:42:00Z,u_0134_s01,ins_u_0134_004,{},v2.2.0-healthy +evt_002511,u_0134,feature_used,2026-06-05T18:44:00Z,u_0134_s01,ins_u_0134_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002512,u_0587,profile_saved,2026-06-05T18:46:00Z,u_0587_s01,ins_u_0587_003,{},v2.2.0-healthy +evt_002513,u_0636,signup_completed,2026-06-05T18:47:00Z,u_0636_s01,ins_u_0636_002,{},v2.2.0-healthy +evt_002514,u_0022,signup_started,2026-06-05T18:49:00Z,u_0022_s01,ins_u_0022_001,{},v2.2.0-healthy +evt_002515,u_0088,signup_started,2026-06-05T18:50:00Z,u_0088_s01,ins_u_0088_001,{},v2.2.0-healthy +evt_002516,u_0143,onboarding_completed,2026-06-05T18:50:00Z,u_0143_s01,ins_u_0143_005,"{""completed_at"": ""2026-06-05T18:47:00Z""}",v2.2.0-healthy +evt_002517,u_0088,signup_completed,2026-06-05T18:51:00Z,u_0088_s01,ins_u_0088_002,{},v2.2.0-healthy +evt_002518,u_0022,signup_completed,2026-06-05T18:57:00Z,u_0022_s01,ins_u_0022_002,{},v2.2.0-healthy +evt_002519,u_0636,profile_saved,2026-06-05T18:57:00Z,u_0636_s01,ins_u_0636_003,{},v2.2.0-healthy +evt_002520,u_0406,signup_started,2026-06-05T19:00:00Z,u_0406_s01,ins_u_0406_001,{},v2.2.0-healthy +evt_002521,u_0022,session_abandoned,2026-06-05T19:01:00Z,u_0022_s01,ins_u_0022_003,{},v2.2.0-healthy +evt_002522,u_0088,profile_saved,2026-06-05T19:01:00Z,u_0088_s01,ins_u_0088_003,{},v2.2.0-healthy +evt_002523,u_0636,onboarding_step_viewed,2026-06-05T19:02:00Z,u_0636_s01,ins_u_0636_004,{},v2.2.0-healthy +evt_002524,u_0406,signup_completed,2026-06-05T19:03:00Z,u_0406_s01,ins_u_0406_002,{},v2.2.0-healthy +evt_002525,u_0640,signup_started,2026-06-05T19:04:00Z,u_0640_s01,ins_u_0640_001,{},v2.2.0-healthy +evt_002526,u_0088,onboarding_step_viewed,2026-06-05T19:06:00Z,u_0088_s01,ins_u_0088_004,{},v2.2.0-healthy +evt_002527,u_0406,profile_saved,2026-06-05T19:06:00Z,u_0406_s01,ins_u_0406_003,{},v2.2.0-healthy +evt_002528,u_0640,session_abandoned,2026-06-05T19:06:00Z,u_0640_s01,ins_u_0640_002,{},v2.2.0-healthy +evt_002529,u_0134,onboarding_completed,2026-06-05T19:07:00Z,u_0134_s01,ins_u_0134_006,"{""completed_at"": ""2026-06-05T19:13:00Z""}",v2.2.0-healthy +evt_002530,u_0587,feature_used,2026-06-05T19:08:00Z,u_0587_s01,ins_u_0587_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002531,u_0406,onboarding_step_viewed,2026-06-05T19:10:00Z,u_0406_s01,ins_u_0406_004,{},v2.2.0-healthy +evt_002532,u_0636,feature_used,2026-06-05T19:17:00Z,u_0636_s01,ins_u_0636_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002533,u_0070,signup_started,2026-06-05T19:18:00Z,u_0070_s01,ins_u_0070_001,{},v2.2.0-healthy +evt_002534,u_0070,signup_completed,2026-06-05T19:19:00Z,u_0070_s01,ins_u_0070_002,{},v2.2.0-healthy +evt_002535,u_0053,signup_started,2026-06-05T19:22:00Z,u_0053_s01,ins_u_0053_001,{},v2.2.0-healthy +evt_002536,u_0406,feature_used,2026-06-05T19:24:00Z,u_0406_s01,ins_u_0406_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002537,u_0152,signup_started,2026-06-05T19:28:00Z,u_0152_s01,ins_u_0152_001,{},v2.2.0-healthy +evt_002538,u_0070,profile_saved,2026-06-05T19:29:00Z,u_0070_s01,ins_u_0070_003,{},v2.2.0-healthy +evt_002539,u_0053,signup_completed,2026-06-05T19:30:00Z,u_0053_s01,ins_u_0053_002,{},v2.2.0-healthy +evt_002540,u_0587,onboarding_completed,2026-06-05T19:30:00Z,u_0587_s01,ins_u_0587_005,"{""completed_at"": ""2026-06-05T19:17:00Z""}",v2.2.0-healthy +evt_002541,u_0636,onboarding_completed,2026-06-05T19:31:00Z,u_0636_s01,ins_u_0636_006,"{""completed_at"": ""2026-06-05T19:35:00Z""}",v2.2.0-healthy +evt_002542,u_0070,onboarding_step_viewed,2026-06-05T19:33:00Z,u_0070_s01,ins_u_0070_004,{},v2.2.0-healthy +evt_002543,u_0152,signup_completed,2026-06-05T19:36:00Z,u_0152_s01,ins_u_0152_002,{},v2.2.0-healthy +evt_002544,u_0720,signup_started,2026-06-05T19:36:00Z,u_0720_s01,ins_u_0720_001,{},v2.2.0-healthy +evt_002545,u_0720,signup_completed,2026-06-05T19:37:00Z,u_0720_s01,ins_u_0720_002,{},v2.2.0-healthy +evt_002546,u_0053,profile_saved,2026-06-05T19:40:00Z,u_0053_s01,ins_u_0053_003,{},v2.2.0-healthy +evt_002547,u_0152,profile_saved,2026-06-05T19:40:00Z,u_0152_s01,ins_u_0152_003,{},v2.2.0-healthy +evt_002548,u_0088,onboarding_completed,2026-06-05T19:41:00Z,u_0088_s01,ins_u_0088_005,"{""completed_at"": ""2026-06-05T19:28:00Z""}",v2.2.0-healthy +evt_002549,u_0152,onboarding_step_viewed,2026-06-05T19:42:00Z,u_0152_s01,ins_u_0152_004,{},v2.2.0-healthy +evt_002550,u_0526,signup_started,2026-06-05T19:43:00Z,u_0526_s01,ins_u_0526_001,{},v2.2.0-healthy +evt_002551,u_0053,onboarding_step_viewed,2026-06-05T19:44:00Z,u_0053_s01,ins_u_0053_004,{},v2.2.0-healthy +evt_002552,u_0526,signup_completed,2026-06-05T19:45:00Z,u_0526_s01,ins_u_0526_002,{},v2.2.0-healthy +evt_002553,u_0720,session_abandoned,2026-06-05T19:46:00Z,u_0720_s01,ins_u_0720_003,{},v2.2.0-healthy +evt_002554,u_0070,feature_used,2026-06-05T19:48:00Z,u_0070_s01,ins_u_0070_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002555,u_0448,signup_started,2026-06-05T19:48:00Z,u_0448_s01,ins_u_0448_001,{},v2.2.0-healthy +evt_002556,u_0526,profile_saved,2026-06-05T19:50:00Z,u_0526_s01,ins_u_0526_003,{},v2.2.0-healthy +evt_002557,u_0406,onboarding_completed,2026-06-05T19:51:00Z,u_0406_s01,ins_u_0406_006,"{""completed_at"": ""2026-06-05T19:42:00Z""}",v2.2.0-healthy +evt_002558,u_0124,signup_started,2026-06-05T19:52:00Z,u_0124_s01,ins_u_0124_001,{},v2.2.0-healthy +evt_002559,u_0406,activation_completed,2026-06-05T19:52:00Z,u_0406_s01,ins_u_0406_007,{},v2.2.0-healthy +evt_002560,u_0526,onboarding_step_viewed,2026-06-05T19:54:00Z,u_0526_s01,ins_u_0526_004,{},v2.2.0-healthy +evt_002561,u_0448,signup_completed,2026-06-05T19:56:00Z,u_0448_s01,ins_u_0448_002,{},v2.2.0-healthy +evt_002562,u_0070,onboarding_completed,2026-06-05T19:57:00Z,u_0070_s01,ins_u_0070_006,"{""completed_at"": ""2026-06-05T20:02:00Z""}",v2.2.0-healthy +evt_002563,u_0124,signup_completed,2026-06-05T19:57:00Z,u_0124_s01,ins_u_0124_002,{},v2.2.0-healthy +evt_002564,u_0053,feature_used,2026-06-05T19:58:00Z,u_0053_s01,ins_u_0053_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002565,u_0152,feature_used,2026-06-05T19:58:00Z,u_0152_s01,ins_u_0152_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002566,u_0448,profile_saved,2026-06-05T20:00:00Z,u_0448_s01,ins_u_0448_003,{},v2.2.0-healthy +evt_002567,u_0448,onboarding_step_viewed,2026-06-05T20:02:00Z,u_0448_s01,ins_u_0448_004,{},v2.2.0-healthy +evt_002568,u_0124,profile_saved,2026-06-05T20:04:00Z,u_0124_s01,ins_u_0124_003,{},v2.2.0-healthy +evt_002569,u_0587,activation_completed,2026-06-05T20:04:00Z,u_0587_s01,ins_u_0587_006,{},v2.2.0-healthy +evt_002570,u_0152,onboarding_completed,2026-06-05T20:07:00Z,u_0152_s01,ins_u_0152_006,"{""completed_at"": ""2026-06-05T20:09:00Z""}",v2.2.0-healthy +evt_002571,u_0526,feature_used,2026-06-05T20:07:00Z,u_0526_s01,ins_u_0526_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002572,u_0124,onboarding_step_viewed,2026-06-05T20:08:00Z,u_0124_s01,ins_u_0124_004,{},v2.2.0-healthy +evt_002573,u_0053,onboarding_completed,2026-06-05T20:13:00Z,u_0053_s01,ins_u_0053_006,"{""completed_at"": ""2026-06-05T20:15:00Z""}",v2.2.0-healthy +evt_002574,u_0317,signup_started,2026-06-05T20:16:00Z,u_0317_s01,ins_u_0317_001,{},v2.2.0-healthy +evt_002575,u_0159,return_visit,2026-06-05T20:17:00Z,u_0159_s02,ins_u_0159_008,{},v2.2.0-healthy +evt_002576,u_0448,feature_used,2026-06-05T20:18:00Z,u_0448_s01,ins_u_0448_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002577,u_0526,onboarding_completed,2026-06-05T20:18:00Z,u_0526_s01,ins_u_0526_006,"{""completed_at"": ""2026-06-05T20:22:00Z""}",v2.2.0-healthy +evt_002578,u_0102,signup_started,2026-06-05T20:19:00Z,u_0102_s01,ins_u_0102_001,{},v2.2.0-healthy +evt_002579,u_0317,signup_completed,2026-06-05T20:19:00Z,u_0317_s01,ins_u_0317_002,{},v2.2.0-healthy +evt_002580,u_0102,signup_completed,2026-06-05T20:24:00Z,u_0102_s01,ins_u_0102_002,{},v2.2.0-healthy +evt_002581,u_0124,feature_used,2026-06-05T20:28:00Z,u_0124_s01,ins_u_0124_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002582,u_0317,session_abandoned,2026-06-05T20:28:00Z,u_0317_s01,ins_u_0317_003,{},v2.2.0-healthy +evt_002583,u_0053,activation_completed,2026-06-05T20:29:00Z,u_0053_s01,ins_u_0053_007,{},v2.2.0-healthy +evt_002584,u_0102,profile_saved,2026-06-05T20:29:00Z,u_0102_s01,ins_u_0102_003,{},v2.2.0-healthy +evt_002585,u_0102,onboarding_step_viewed,2026-06-05T20:31:00Z,u_0102_s01,ins_u_0102_004,{},v2.2.0-healthy +evt_002586,u_0070,activation_completed,2026-06-05T20:34:00Z,u_0070_s01,ins_u_0070_007,{},v2.2.0-healthy +evt_002587,u_0124,onboarding_completed,2026-06-05T20:34:00Z,u_0124_s01,ins_u_0124_006,"{""completed_at"": ""2026-06-05T20:33:00Z""}",v2.2.0-healthy +evt_002588,u_0152,activation_completed,2026-06-05T20:36:00Z,u_0152_s01,ins_u_0152_007,{},v2.2.0-healthy +evt_002589,u_0102,feature_used,2026-06-05T20:39:00Z,u_0102_s01,ins_u_0102_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002590,u_0526,activation_completed,2026-06-05T20:44:00Z,u_0526_s01,ins_u_0526_007,{},v2.2.0-healthy +evt_002591,u_0791,signup_started,2026-06-05T20:44:00Z,u_0791_s01,ins_u_0791_001,{},v2.2.0-healthy +evt_002592,u_0791,signup_completed,2026-06-05T20:52:00Z,u_0791_s01,ins_u_0791_002,{},v2.2.0-healthy +evt_002593,u_0277,signup_started,2026-06-05T20:55:00Z,u_0277_s01,ins_u_0277_001,{},v2.2.0-healthy +evt_002594,u_0277,signup_completed,2026-06-05T20:56:00Z,u_0277_s01,ins_u_0277_002,{},v2.2.0-healthy +evt_002595,u_0416,signup_started,2026-06-05T20:57:00Z,u_0416_s01,ins_u_0416_001,{},v2.2.0-healthy +evt_002596,u_0791,profile_saved,2026-06-05T20:57:00Z,u_0791_s01,ins_u_0791_003,{},v2.2.0-healthy +evt_002597,u_0448,activation_completed,2026-06-05T20:58:00Z,u_0448_s01,ins_u_0448_006,{},v2.2.0-healthy +evt_002598,u_0139,signup_started,2026-06-05T20:59:00Z,u_0139_s01,ins_u_0139_001,{},v2.2.0-healthy +evt_002599,u_0589,signup_started,2026-06-05T20:59:00Z,u_0589_s01,ins_u_0589_001,{},v2.2.0-healthy +evt_002600,u_0416,signup_completed,2026-06-05T21:00:00Z,u_0416_s01,ins_u_0416_002,{},v2.2.0-healthy +evt_002601,u_0589,session_abandoned,2026-06-05T21:02:00Z,u_0589_s01,ins_u_0589_002,{},v2.2.0-healthy +evt_002602,u_0791,onboarding_step_viewed,2026-06-05T21:03:00Z,u_0791_s01,ins_u_0791_004,{},v2.2.0-healthy +evt_002603,u_0102,onboarding_completed,2026-06-05T21:04:00Z,u_0102_s01,ins_u_0102_006,"{""completed_at"": ""2026-06-05T20:56:00Z""}",v2.2.0-healthy +evt_002604,u_0277,profile_saved,2026-06-05T21:04:00Z,u_0277_s01,ins_u_0277_003,{},v2.2.0-healthy +evt_002605,u_0139,signup_completed,2026-06-05T21:05:00Z,u_0139_s01,ins_u_0139_002,{},v2.2.0-healthy +evt_002606,u_0416,session_abandoned,2026-06-05T21:05:00Z,u_0416_s01,ins_u_0416_003,{},v2.2.0-healthy +evt_002607,u_0277,onboarding_step_viewed,2026-06-05T21:09:00Z,u_0277_s01,ins_u_0277_004,{},v2.2.0-healthy +evt_002608,u_0139,profile_saved,2026-06-05T21:10:00Z,u_0139_s01,ins_u_0139_003,{},v2.2.0-healthy +evt_002609,u_0139,onboarding_step_viewed,2026-06-05T21:12:00Z,u_0139_s01,ins_u_0139_004,{},v2.2.0-healthy +evt_002610,u_0277,feature_used,2026-06-05T21:16:00Z,u_0277_s01,ins_u_0277_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002611,u_0277,onboarding_completed,2026-06-05T21:40:00Z,u_0277_s01,ins_u_0277_006,"{""completed_at"": ""2026-06-05T21:39:00Z""}",v2.2.0-healthy +evt_002612,u_0791,onboarding_completed,2026-06-05T21:40:00Z,u_0791_s01,ins_u_0791_005,"{""completed_at"": ""2026-06-05T21:36:00Z""}",v2.2.0-healthy +evt_002613,u_0139,onboarding_completed,2026-06-05T21:41:00Z,u_0139_s01,ins_u_0139_005,"{""completed_at"": ""2026-06-05T21:49:00Z""}",v2.2.0-healthy +evt_002614,u_0791,activation_completed,2026-06-05T22:13:00Z,u_0791_s01,ins_u_0791_006,{},v2.2.0-healthy +evt_002615,u_0605,return_visit,2026-06-06T01:12:00Z,u_0605_s02,ins_u_0605_008,{},v2.2.0-healthy +evt_002616,u_0605,feature_used,2026-06-06T01:17:00Z,u_0605_s02,ins_u_0605_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002617,u_0538,return_visit,2026-06-06T02:18:00Z,u_0538_s02,ins_u_0538_008,{},v2.2.0-healthy +evt_002618,u_0538,feature_used,2026-06-06T02:23:00Z,u_0538_s02,ins_u_0538_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002619,u_0202,return_visit,2026-06-06T02:42:00Z,u_0202_s02,ins_u_0202_006,{},v2.2.0-healthy +evt_002620,u_0540,return_visit,2026-06-06T05:02:00Z,u_0540_s02,ins_u_0540_006,{},v2.2.0-healthy +evt_002621,u_0540,feature_used,2026-06-06T05:07:00Z,u_0540_s02,ins_u_0540_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002622,u_0237,return_visit,2026-06-06T05:20:00Z,u_0237_s02,ins_u_0237_007,{},v2.2.0-healthy +evt_002623,u_0237,feature_used,2026-06-06T05:25:00Z,u_0237_s02,ins_u_0237_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002624,u_0395,return_visit,2026-06-06T07:00:00Z,u_0395_s02,ins_u_0395_008,{},v2.2.0-healthy +evt_002625,u_0395,feature_used,2026-06-06T07:05:00Z,u_0395_s02,ins_u_0395_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002626,u_0323,return_visit,2026-06-06T07:37:00Z,u_0323_s02,ins_u_0323_006,{},v2.2.0-healthy +evt_002627,u_0199,return_visit,2026-06-06T07:58:00Z,u_0199_s02,ins_u_0199_007,{},v2.2.0-healthy +evt_002628,u_0223,signup_started,2026-06-06T08:02:00Z,u_0223_s01,ins_u_0223_001,{},v2.2.0-healthy +evt_002629,u_0223,signup_completed,2026-06-06T08:06:00Z,u_0223_s01,ins_u_0223_002,{},v2.2.0-healthy +evt_002630,u_0693,signup_started,2026-06-06T08:09:00Z,u_0693_s01,ins_u_0693_001,{},v2.2.0-healthy +evt_002631,u_0331,signup_started,2026-06-06T08:10:00Z,u_0331_s01,ins_u_0331_001,{},v2.2.0-healthy +evt_002632,u_0693,signup_completed,2026-06-06T08:10:00Z,u_0693_s01,ins_u_0693_002,{},v2.2.0-healthy +evt_002633,u_0331,signup_completed,2026-06-06T08:12:00Z,u_0331_s01,ins_u_0331_002,{},v2.2.0-healthy +evt_002634,u_0223,session_abandoned,2026-06-06T08:13:00Z,u_0223_s01,ins_u_0223_003,{},v2.2.0-healthy +evt_002635,u_0693,profile_saved,2026-06-06T08:13:00Z,u_0693_s01,ins_u_0693_003,{},v2.2.0-healthy +evt_002636,u_0440,signup_started,2026-06-06T08:14:00Z,u_0440_s01,ins_u_0440_001,{},v2.2.0-healthy +evt_002637,u_0331,profile_saved,2026-06-06T08:17:00Z,u_0331_s01,ins_u_0331_003,{},v2.2.0-healthy +evt_002638,u_0440,signup_completed,2026-06-06T08:17:00Z,u_0440_s01,ins_u_0440_002,{},v2.2.0-healthy +evt_002639,u_0693,onboarding_step_viewed,2026-06-06T08:17:00Z,u_0693_s01,ins_u_0693_004,{},v2.2.0-healthy +evt_002640,u_0440,profile_saved,2026-06-06T08:21:00Z,u_0440_s01,ins_u_0440_003,{},v2.2.0-healthy +evt_002641,u_0331,onboarding_step_viewed,2026-06-06T08:22:00Z,u_0331_s01,ins_u_0331_004,{},v2.2.0-healthy +evt_002642,u_0440,onboarding_step_viewed,2026-06-06T08:26:00Z,u_0440_s01,ins_u_0440_004,{},v2.2.0-healthy +evt_002643,u_0693,feature_used,2026-06-06T08:27:00Z,u_0693_s01,ins_u_0693_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002644,u_0683,signup_started,2026-06-06T08:30:00Z,u_0683_s01,ins_u_0683_001,{},v2.2.0-healthy +evt_002645,u_0012,signup_started,2026-06-06T08:33:00Z,u_0012_s01,ins_u_0012_001,{},v2.2.0-healthy +evt_002646,u_0333,signup_started,2026-06-06T08:33:00Z,u_0333_s01,ins_u_0333_001,{},v2.2.0-healthy +evt_002647,u_0012,signup_completed,2026-06-06T08:35:00Z,u_0012_s01,ins_u_0012_002,{},v2.2.0-healthy +evt_002648,u_0683,signup_completed,2026-06-06T08:36:00Z,u_0683_s01,ins_u_0683_002,{},v2.2.0-healthy +evt_002649,u_0333,signup_completed,2026-06-06T08:40:00Z,u_0333_s01,ins_u_0333_002,{},v2.2.0-healthy +evt_002650,u_0204,signup_started,2026-06-06T08:41:00Z,u_0204_s01,ins_u_0204_001,{},v2.2.0-healthy +evt_002651,u_0012,profile_saved,2026-06-06T08:42:00Z,u_0012_s01,ins_u_0012_003,{},v2.2.0-healthy +evt_002652,u_0012,onboarding_step_viewed,2026-06-06T08:45:00Z,u_0012_s01,ins_u_0012_004,{},v2.2.0-healthy +evt_002653,u_0683,profile_saved,2026-06-06T08:45:00Z,u_0683_s01,ins_u_0683_003,{},v2.2.0-healthy +evt_002654,u_0333,profile_saved,2026-06-06T08:46:00Z,u_0333_s01,ins_u_0333_003,{},v2.2.0-healthy +evt_002655,u_0204,signup_completed,2026-06-06T08:47:00Z,u_0204_s01,ins_u_0204_002,{},v2.2.0-healthy +evt_002656,u_0683,onboarding_step_viewed,2026-06-06T08:50:00Z,u_0683_s01,ins_u_0683_004,{},v2.2.0-healthy +evt_002657,u_0333,onboarding_step_viewed,2026-06-06T08:51:00Z,u_0333_s01,ins_u_0333_004,{},v2.2.0-healthy +evt_002658,u_0693,onboarding_completed,2026-06-06T08:51:00Z,u_0693_s01,ins_u_0693_006,"{""completed_at"": ""2026-06-06T08:48:00Z""}",v2.2.0-healthy +evt_002659,u_0331,onboarding_completed,2026-06-06T08:52:00Z,u_0331_s01,ins_u_0331_005,"{""completed_at"": ""2026-06-06T08:46:00Z""}",v2.2.0-healthy +evt_002660,u_0683,feature_used,2026-06-06T08:52:00Z,u_0683_s01,ins_u_0683_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002661,u_0275,signup_started,2026-06-06T08:53:00Z,u_0275_s01,ins_u_0275_001,{},v2.2.0-healthy +evt_002662,u_0440,onboarding_completed,2026-06-06T08:54:00Z,u_0440_s01,ins_u_0440_005,"{""completed_at"": ""2026-06-06T08:48:00Z""}",v2.2.0-healthy +evt_002663,u_0204,profile_saved,2026-06-06T08:55:00Z,u_0204_s01,ins_u_0204_003,{},v2.2.0-healthy +evt_002664,u_0275,signup_completed,2026-06-06T08:56:00Z,u_0275_s01,ins_u_0275_002,{},v2.2.0-healthy +evt_002665,u_0012,feature_used,2026-06-06T08:57:00Z,u_0012_s01,ins_u_0012_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002666,u_0204,onboarding_step_viewed,2026-06-06T08:57:00Z,u_0204_s01,ins_u_0204_004,{},v2.2.0-healthy +evt_002667,u_0494,return_visit,2026-06-06T08:57:00Z,u_0494_s02,ins_u_0494_008,{},v2.2.0-healthy +evt_002668,u_0738,signup_started,2026-06-06T08:58:00Z,u_0738_s01,ins_u_0738_001,{},v2.2.0-healthy +evt_002669,u_0379,signup_started,2026-06-06T08:59:00Z,u_0379_s01,ins_u_0379_001,{},v2.2.0-healthy +evt_002670,u_0116,signup_started,2026-06-06T09:00:00Z,u_0116_s01,ins_u_0116_001,{},v2.2.0-healthy +evt_002671,u_0379,signup_completed,2026-06-06T09:01:00Z,u_0379_s01,ins_u_0379_002,{},v2.2.0-healthy +evt_002672,u_0494,feature_used,2026-06-06T09:02:00Z,u_0494_s02,ins_u_0494_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002673,u_0116,signup_completed,2026-06-06T09:04:00Z,u_0116_s01,ins_u_0116_002,{},v2.2.0-healthy +evt_002674,u_0275,profile_saved,2026-06-06T09:04:00Z,u_0275_s01,ins_u_0275_003,{},v2.2.0-healthy +evt_002675,u_0738,signup_completed,2026-06-06T09:04:00Z,u_0738_s01,ins_u_0738_002,{},v2.2.0-healthy +evt_002676,u_0750,signup_started,2026-06-06T09:04:00Z,u_0750_s01,ins_u_0750_001,{},v2.2.0-healthy +evt_002677,u_0739,signup_started,2026-06-06T09:06:00Z,u_0739_s01,ins_u_0739_001,{},v2.2.0-healthy +evt_002678,u_0275,onboarding_step_viewed,2026-06-06T09:08:00Z,u_0275_s01,ins_u_0275_004,{},v2.2.0-healthy +evt_002679,u_0333,feature_used,2026-06-06T09:08:00Z,u_0333_s01,ins_u_0333_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002680,u_0750,signup_completed,2026-06-06T09:08:00Z,u_0750_s01,ins_u_0750_002,{},v2.2.0-healthy +evt_002681,u_0379,profile_saved,2026-06-06T09:10:00Z,u_0379_s01,ins_u_0379_003,{},v2.2.0-healthy +evt_002682,u_0739,signup_completed,2026-06-06T09:10:00Z,u_0739_s01,ins_u_0739_002,{},v2.2.0-healthy +evt_002683,u_0116,profile_saved,2026-06-06T09:12:00Z,u_0116_s01,ins_u_0116_003,{},v2.2.0-healthy +evt_002684,u_0333,onboarding_completed,2026-06-06T09:12:00Z,u_0333_s01,ins_u_0333_006,"{""completed_at"": ""2026-06-06T09:14:00Z""}",v2.2.0-healthy +evt_002685,u_0066,signup_started,2026-06-06T09:13:00Z,u_0066_s01,ins_u_0066_001,{},v2.2.0-healthy +evt_002686,u_0738,profile_saved,2026-06-06T09:13:00Z,u_0738_s01,ins_u_0738_003,{},v2.2.0-healthy +evt_002687,u_0012,onboarding_completed,2026-06-06T09:14:00Z,u_0012_s01,ins_u_0012_006,"{""completed_at"": ""2026-06-06T09:12:00Z""}",v2.2.0-healthy +evt_002688,u_0379,onboarding_step_viewed,2026-06-06T09:16:00Z,u_0379_s01,ins_u_0379_004,{},v2.2.0-healthy +evt_002689,u_0116,onboarding_step_viewed,2026-06-06T09:17:00Z,u_0116_s01,ins_u_0116_004,{},v2.2.0-healthy +evt_002690,u_0739,profile_saved,2026-06-06T09:17:00Z,u_0739_s01,ins_u_0739_003,{},v2.2.0-healthy +evt_002691,u_0066,signup_completed,2026-06-06T09:18:00Z,u_0066_s01,ins_u_0066_002,{},v2.2.0-healthy +evt_002692,u_0750,profile_saved,2026-06-06T09:18:00Z,u_0750_s01,ins_u_0750_003,{},v2.2.0-healthy +evt_002693,u_0738,onboarding_step_viewed,2026-06-06T09:19:00Z,u_0738_s01,ins_u_0738_004,{},v2.2.0-healthy +evt_002694,u_0275,feature_used,2026-06-06T09:21:00Z,u_0275_s01,ins_u_0275_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002695,u_0498,signup_started,2026-06-06T09:24:00Z,u_0498_s01,ins_u_0498_001,{},v2.2.0-healthy +evt_002696,u_0750,onboarding_step_viewed,2026-06-06T09:24:00Z,u_0750_s01,ins_u_0750_004,{},v2.2.0-healthy +evt_002697,u_0379,feature_used,2026-06-06T09:25:00Z,u_0379_s01,ins_u_0379_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002698,u_0750,feature_used,2026-06-06T09:25:00Z,u_0750_s01,ins_u_0750_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002699,u_0066,session_abandoned,2026-06-06T09:26:00Z,u_0066_s01,ins_u_0066_003,{},v2.2.0-healthy +evt_002700,u_0204,onboarding_completed,2026-06-06T09:30:00Z,u_0204_s01,ins_u_0204_005,"{""completed_at"": ""2026-06-06T09:32:00Z""}",v2.2.0-healthy +evt_002701,u_0498,signup_completed,2026-06-06T09:30:00Z,u_0498_s01,ins_u_0498_002,{},v2.2.0-healthy +evt_002702,u_0331,activation_completed,2026-06-06T09:32:00Z,u_0331_s01,ins_u_0331_006,{},v2.2.0-healthy +evt_002703,u_0012,activation_completed,2026-06-06T09:34:00Z,u_0012_s01,ins_u_0012_007,{},v2.2.0-healthy +evt_002704,u_0275,onboarding_completed,2026-06-06T09:37:00Z,u_0275_s01,ins_u_0275_006,"{""completed_at"": ""2026-06-06T09:33:00Z""}",v2.2.0-healthy +evt_002705,u_0498,session_abandoned,2026-06-06T09:37:00Z,u_0498_s01,ins_u_0498_003,{},v2.2.0-healthy +evt_002706,u_0333,activation_completed,2026-06-06T09:38:00Z,u_0333_s01,ins_u_0333_007,{},v2.2.0-healthy +evt_002707,u_0797,signup_started,2026-06-06T09:44:00Z,u_0797_s01,ins_u_0797_001,{},v2.2.0-healthy +evt_002708,u_0683,activation_completed,2026-06-06T09:46:00Z,u_0683_s01,ins_u_0683_006,{},v2.2.0-healthy +evt_002709,u_0624,signup_started,2026-06-06T09:47:00Z,u_0624_s01,ins_u_0624_001,{},v2.2.0-healthy +evt_002710,u_0531,signup_started,2026-06-06T09:49:00Z,u_0531_s01,ins_u_0531_001,{},v2.2.0-healthy +evt_002711,u_0797,session_abandoned,2026-06-06T09:50:00Z,u_0797_s01,ins_u_0797_002,{},v2.2.0-healthy +evt_002712,u_0738,onboarding_completed,2026-06-06T09:51:00Z,u_0738_s01,ins_u_0738_005,"{""completed_at"": ""2026-06-06T09:51:00Z""}",v2.2.0-healthy +evt_002713,u_0531,session_abandoned,2026-06-06T09:52:00Z,u_0531_s01,ins_u_0531_002,{},v2.2.0-healthy +evt_002714,u_0116,onboarding_completed,2026-06-06T09:53:00Z,u_0116_s01,ins_u_0116_005,"{""completed_at"": ""2026-06-06T09:38:00Z""}",v2.2.0-healthy +evt_002715,u_0624,signup_completed,2026-06-06T09:53:00Z,u_0624_s01,ins_u_0624_002,{},v2.2.0-healthy +evt_002716,u_0671,signup_started,2026-06-06T09:54:00Z,u_0671_s01,ins_u_0671_001,{},v2.2.0-healthy +evt_002717,u_0750,onboarding_completed,2026-06-06T09:56:00Z,u_0750_s01,ins_u_0750_006,"{""completed_at"": ""2026-06-06T09:54:00Z""}",v2.2.0-healthy +evt_002718,u_0624,profile_saved,2026-06-06T09:57:00Z,u_0624_s01,ins_u_0624_003,{},v2.2.0-healthy +evt_002719,u_0671,signup_completed,2026-06-06T09:58:00Z,u_0671_s01,ins_u_0671_002,{},v2.2.0-healthy +evt_002720,u_0739,onboarding_completed,2026-06-06T09:59:00Z,u_0739_s01,ins_u_0739_004,"{""completed_at"": ""2026-06-06T09:54:00Z""}",v2.2.0-healthy +evt_002721,u_0624,onboarding_step_viewed,2026-06-06T10:01:00Z,u_0624_s01,ins_u_0624_004,{},v2.2.0-healthy +evt_002722,u_0385,signup_started,2026-06-06T10:03:00Z,u_0385_s01,ins_u_0385_001,{},v2.2.0-healthy +evt_002723,u_0671,profile_saved,2026-06-06T10:03:00Z,u_0671_s01,ins_u_0671_003,{},v2.2.0-healthy +evt_002724,u_0784,signup_started,2026-06-06T10:04:00Z,u_0784_s01,ins_u_0784_001,{},v2.2.0-healthy +evt_002725,u_0385,signup_completed,2026-06-06T10:05:00Z,u_0385_s01,ins_u_0385_002,{},v2.2.0-healthy +evt_002726,u_0671,onboarding_step_viewed,2026-06-06T10:07:00Z,u_0671_s01,ins_u_0671_004,{},v2.2.0-healthy +evt_002727,u_0784,session_abandoned,2026-06-06T10:09:00Z,u_0784_s01,ins_u_0784_002,{},v2.2.0-healthy +evt_002728,u_0624,feature_used,2026-06-06T10:10:00Z,u_0624_s01,ins_u_0624_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002729,u_0385,session_abandoned,2026-06-06T10:11:00Z,u_0385_s01,ins_u_0385_003,{},v2.2.0-healthy +evt_002730,u_0116,activation_completed,2026-06-06T10:24:00Z,u_0116_s01,ins_u_0116_006,{},v2.2.0-healthy +evt_002731,u_0397,signup_started,2026-06-06T10:28:00Z,u_0397_s01,ins_u_0397_001,{},v2.2.0-healthy +evt_002732,u_0750,activation_completed,2026-06-06T10:30:00Z,u_0750_s01,ins_u_0750_007,{},v2.2.0-healthy +evt_002733,u_0327,signup_started,2026-06-06T10:31:00Z,u_0327_s01,ins_u_0327_001,{},v2.2.0-healthy +evt_002734,u_0397,session_abandoned,2026-06-06T10:31:00Z,u_0397_s01,ins_u_0397_002,{},v2.2.0-healthy +evt_002735,u_0482,signup_started,2026-06-06T10:31:00Z,u_0482_s01,ins_u_0482_001,{},v2.2.0-healthy +evt_002736,u_0327,session_abandoned,2026-06-06T10:33:00Z,u_0327_s01,ins_u_0327_002,{},v2.2.0-healthy +evt_002737,u_0482,session_abandoned,2026-06-06T10:36:00Z,u_0482_s01,ins_u_0482_002,{},v2.2.0-healthy +evt_002738,u_0624,onboarding_completed,2026-06-06T10:37:00Z,u_0624_s01,ins_u_0624_006,"{""completed_at"": ""2026-06-06T10:23:00Z""}",v2.2.0-healthy +evt_002739,u_0519,signup_started,2026-06-06T10:42:00Z,u_0519_s01,ins_u_0519_001,{},v2.2.0-healthy +evt_002740,u_0671,onboarding_completed,2026-06-06T10:44:00Z,u_0671_s01,ins_u_0671_005,"{""completed_at"": ""2026-06-06T10:39:00Z""}",v2.2.0-healthy +evt_002741,u_0519,signup_completed,2026-06-06T10:49:00Z,u_0519_s01,ins_u_0519_002,{},v2.2.0-healthy +evt_002742,u_0092,signup_started,2026-06-06T10:54:00Z,u_0092_s01,ins_u_0092_001,{},v2.2.0-healthy +evt_002743,u_0519,session_abandoned,2026-06-06T10:58:00Z,u_0519_s01,ins_u_0519_003,{},v2.2.0-healthy +evt_002744,u_0092,signup_completed,2026-06-06T11:00:00Z,u_0092_s01,ins_u_0092_002,{},v2.2.0-healthy +evt_002745,u_0092,session_abandoned,2026-06-06T11:08:00Z,u_0092_s01,ins_u_0092_003,{},v2.2.0-healthy +evt_002746,u_0671,activation_completed,2026-06-06T11:15:00Z,u_0671_s01,ins_u_0671_006,{},v2.2.0-healthy +evt_002747,u_0624,activation_completed,2026-06-06T11:17:00Z,u_0624_s01,ins_u_0624_007,{},v2.2.0-healthy +evt_002748,u_0146,signup_started,2026-06-06T11:27:00Z,u_0146_s01,ins_u_0146_001,{},v2.2.0-healthy +evt_002749,u_0146,signup_completed,2026-06-06T11:33:00Z,u_0146_s01,ins_u_0146_002,{},v2.2.0-healthy +evt_002750,u_0146,profile_saved,2026-06-06T11:36:00Z,u_0146_s01,ins_u_0146_003,{},v2.2.0-healthy +evt_002751,u_0146,onboarding_step_viewed,2026-06-06T11:39:00Z,u_0146_s01,ins_u_0146_004,{},v2.2.0-healthy +evt_002752,u_0082,signup_started,2026-06-06T11:46:00Z,u_0082_s01,ins_u_0082_001,{},v2.2.0-healthy +evt_002753,u_0765,signup_started,2026-06-06T11:50:00Z,u_0765_s01,ins_u_0765_001,{},v2.2.0-healthy +evt_002754,u_0082,session_abandoned,2026-06-06T11:51:00Z,u_0082_s01,ins_u_0082_002,{},v2.2.0-healthy +evt_002755,u_0654,signup_started,2026-06-06T11:55:00Z,u_0654_s01,ins_u_0654_001,{},v2.2.0-healthy +evt_002756,u_0742,signup_started,2026-06-06T11:55:00Z,u_0742_s01,ins_u_0742_001,{},v2.2.0-healthy +evt_002757,u_0777,signup_started,2026-06-06T11:55:00Z,u_0777_s01,ins_u_0777_001,{},v2.2.0-healthy +evt_002758,u_0146,feature_used,2026-06-06T11:57:00Z,u_0146_s01,ins_u_0146_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002759,u_0655,signup_started,2026-06-06T11:57:00Z,u_0655_s01,ins_u_0655_001,{},v2.2.0-healthy +evt_002760,u_0742,signup_completed,2026-06-06T11:57:00Z,u_0742_s01,ins_u_0742_002,{},v2.2.0-healthy +evt_002761,u_0765,signup_completed,2026-06-06T11:58:00Z,u_0765_s01,ins_u_0765_002,{},v2.2.0-healthy +evt_002762,u_0655,session_abandoned,2026-06-06T12:00:00Z,u_0655_s01,ins_u_0655_002,{},v2.2.0-healthy +evt_002763,u_0777,signup_completed,2026-06-06T12:00:00Z,u_0777_s01,ins_u_0777_002,{},v2.2.0-healthy +evt_002764,u_0654,signup_completed,2026-06-06T12:03:00Z,u_0654_s01,ins_u_0654_002,{},v2.2.0-healthy +evt_002765,u_0742,profile_saved,2026-06-06T12:03:00Z,u_0742_s01,ins_u_0742_003,{},v2.2.0-healthy +evt_002766,u_0516,signup_started,2026-06-06T12:04:00Z,u_0516_s01,ins_u_0516_001,{},v2.2.0-healthy +evt_002767,u_0742,error_shown,2026-06-06T12:04:00Z,u_0742_s01,ins_u_0742_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002768,u_0146,onboarding_completed,2026-06-06T12:05:00Z,u_0146_s01,ins_u_0146_006,"{""completed_at"": ""2026-06-06T12:05:00Z""}",v2.2.0-healthy +evt_002769,u_0742,onboarding_step_viewed,2026-06-06T12:06:00Z,u_0742_s01,ins_u_0742_005,{},v2.2.0-healthy +evt_002770,u_0765,session_abandoned,2026-06-06T12:06:00Z,u_0765_s01,ins_u_0765_003,{},v2.2.0-healthy +evt_002771,u_0777,profile_saved,2026-06-06T12:07:00Z,u_0777_s01,ins_u_0777_003,{},v2.2.0-healthy +evt_002772,u_0654,profile_saved,2026-06-06T12:08:00Z,u_0654_s01,ins_u_0654_003,{},v2.2.0-healthy +evt_002773,u_0777,onboarding_step_viewed,2026-06-06T12:09:00Z,u_0777_s01,ins_u_0777_004,{},v2.2.0-healthy +evt_002774,u_0516,signup_completed,2026-06-06T12:11:00Z,u_0516_s01,ins_u_0516_002,{},v2.2.0-healthy +evt_002775,u_0654,onboarding_step_viewed,2026-06-06T12:11:00Z,u_0654_s01,ins_u_0654_004,{},v2.2.0-healthy +evt_002776,u_0516,session_abandoned,2026-06-06T12:19:00Z,u_0516_s01,ins_u_0516_003,{},v2.2.0-healthy +evt_002777,u_0324,signup_started,2026-06-06T12:28:00Z,u_0324_s01,ins_u_0324_001,{},v2.2.0-healthy +evt_002778,u_0324,signup_completed,2026-06-06T12:29:00Z,u_0324_s01,ins_u_0324_002,{},v2.2.0-healthy +evt_002779,u_0654,onboarding_completed,2026-06-06T12:34:00Z,u_0654_s01,ins_u_0654_005,"{""completed_at"": ""2026-06-06T12:35:00Z""}",v2.2.0-healthy +evt_002780,u_0324,session_abandoned,2026-06-06T12:35:00Z,u_0324_s01,ins_u_0324_003,{},v2.2.0-healthy +evt_002781,u_0742,onboarding_completed,2026-06-06T12:36:00Z,u_0742_s01,ins_u_0742_006,"{""completed_at"": ""2026-06-06T12:40:00Z""}",v2.2.0-healthy +evt_002782,u_0146,activation_completed,2026-06-06T12:37:00Z,u_0146_s01,ins_u_0146_007,{},v2.2.0-healthy +evt_002783,u_0777,onboarding_completed,2026-06-06T12:47:00Z,u_0777_s01,ins_u_0777_005,"{""completed_at"": ""2026-06-06T12:35:00Z""}",v2.2.0-healthy +evt_002784,u_0558,signup_started,2026-06-06T12:49:00Z,u_0558_s01,ins_u_0558_001,{},v2.2.0-healthy +evt_002785,u_0558,signup_completed,2026-06-06T12:52:00Z,u_0558_s01,ins_u_0558_002,{},v2.2.0-healthy +evt_002786,u_0510,signup_started,2026-06-06T12:53:00Z,u_0510_s01,ins_u_0510_001,{},v2.2.0-healthy +evt_002787,u_0240,signup_started,2026-06-06T12:55:00Z,u_0240_s01,ins_u_0240_001,{},v2.2.0-healthy +evt_002788,u_0742,activation_completed,2026-06-06T12:57:00Z,u_0742_s01,ins_u_0742_007,{},v2.2.0-healthy +evt_002789,u_0558,profile_saved,2026-06-06T12:59:00Z,u_0558_s01,ins_u_0558_003,{},v2.2.0-healthy +evt_002790,u_0510,signup_completed,2026-06-06T13:00:00Z,u_0510_s01,ins_u_0510_002,{},v2.2.0-healthy +evt_002791,u_0240,signup_completed,2026-06-06T13:01:00Z,u_0240_s01,ins_u_0240_002,{},v2.2.0-healthy +evt_002792,u_0558,onboarding_step_viewed,2026-06-06T13:02:00Z,u_0558_s01,ins_u_0558_004,{},v2.2.0-healthy +evt_002793,u_0656,signup_started,2026-06-06T13:02:00Z,u_0656_s01,ins_u_0656_001,{},v2.2.0-healthy +evt_002794,u_0510,profile_saved,2026-06-06T13:03:00Z,u_0510_s01,ins_u_0510_003,{},v2.2.0-healthy +evt_002795,u_0656,signup_completed,2026-06-06T13:03:00Z,u_0656_s01,ins_u_0656_002,{},v2.2.0-healthy +evt_002796,u_0510,error_shown,2026-06-06T13:04:00Z,u_0510_s01,ins_u_0510_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002797,u_0656,profile_saved,2026-06-06T13:05:00Z,u_0656_s01,ins_u_0656_003,{},v2.2.0-healthy +evt_002798,u_0127,signup_started,2026-06-06T13:06:00Z,u_0127_s01,ins_u_0127_001,{},v2.2.0-healthy +evt_002799,u_0654,activation_completed,2026-06-06T13:07:00Z,u_0654_s01,ins_u_0654_006,{},v2.2.0-healthy +evt_002800,u_0240,session_abandoned,2026-06-06T13:08:00Z,u_0240_s01,ins_u_0240_003,{},v2.2.0-healthy +evt_002801,u_0656,onboarding_step_viewed,2026-06-06T13:11:00Z,u_0656_s01,ins_u_0656_004,{},v2.2.0-healthy +evt_002802,u_0127,signup_completed,2026-06-06T13:12:00Z,u_0127_s01,ins_u_0127_002,{},v2.2.0-healthy +evt_002803,u_0558,feature_used,2026-06-06T13:15:00Z,u_0558_s01,ins_u_0558_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002804,u_0222,signup_started,2026-06-06T13:16:00Z,u_0222_s01,ins_u_0222_001,{},v2.2.0-healthy +evt_002805,u_0314,signup_started,2026-06-06T13:17:00Z,u_0314_s01,ins_u_0314_001,{},v2.2.0-healthy +evt_002806,u_0127,profile_saved,2026-06-06T13:19:00Z,u_0127_s01,ins_u_0127_003,{},v2.2.0-healthy +evt_002807,u_0222,signup_completed,2026-06-06T13:21:00Z,u_0222_s01,ins_u_0222_002,{},v2.2.0-healthy +evt_002808,u_0745,signup_started,2026-06-06T13:21:00Z,u_0745_s01,ins_u_0745_001,{},v2.2.0-healthy +evt_002809,u_0314,signup_completed,2026-06-06T13:23:00Z,u_0314_s01,ins_u_0314_002,{},v2.2.0-healthy +evt_002810,u_0222,profile_saved,2026-06-06T13:28:00Z,u_0222_s01,ins_u_0222_003,{},v2.2.0-healthy +evt_002811,u_0381,signup_started,2026-06-06T13:28:00Z,u_0381_s01,ins_u_0381_001,{},v2.2.0-healthy +evt_002812,u_0222,error_shown,2026-06-06T13:29:00Z,u_0222_s01,ins_u_0222_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002813,u_0656,feature_used,2026-06-06T13:29:00Z,u_0656_s01,ins_u_0656_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002814,u_0745,signup_completed,2026-06-06T13:29:00Z,u_0745_s01,ins_u_0745_002,{},v2.2.0-healthy +evt_002815,u_0314,profile_saved,2026-06-06T13:33:00Z,u_0314_s01,ins_u_0314_003,{},v2.2.0-healthy +evt_002816,u_0381,session_abandoned,2026-06-06T13:33:00Z,u_0381_s01,ins_u_0381_002,{},v2.2.0-healthy +evt_002817,u_0314,onboarding_step_viewed,2026-06-06T13:35:00Z,u_0314_s01,ins_u_0314_004,{},v2.2.0-healthy +evt_002818,u_0745,profile_saved,2026-06-06T13:35:00Z,u_0745_s01,ins_u_0745_003,{},v2.2.0-healthy +evt_002819,u_0127,feature_used,2026-06-06T13:36:00Z,u_0127_s01,ins_u_0127_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002820,u_0558,onboarding_completed,2026-06-06T13:38:00Z,u_0558_s01,ins_u_0558_006,"{""completed_at"": ""2026-06-06T13:35:00Z""}",v2.2.0-healthy +evt_002821,u_0441,signup_started,2026-06-06T13:39:00Z,u_0441_s01,ins_u_0441_001,{},v2.2.0-healthy +evt_002822,u_0441,signup_completed,2026-06-06T13:41:00Z,u_0441_s01,ins_u_0441_002,{},v2.2.0-healthy +evt_002823,u_0745,onboarding_step_viewed,2026-06-06T13:41:00Z,u_0745_s01,ins_u_0745_004,{},v2.2.0-healthy +evt_002824,u_0210,signup_started,2026-06-06T13:42:00Z,u_0210_s01,ins_u_0210_001,{},v2.2.0-healthy +evt_002825,u_0210,signup_completed,2026-06-06T13:43:00Z,u_0210_s01,ins_u_0210_002,{},v2.2.0-healthy +evt_002826,u_0510,onboarding_completed,2026-06-06T13:45:00Z,u_0510_s01,ins_u_0510_005,"{""completed_at"": ""2026-06-06T13:32:00Z""}",v2.2.0-healthy +evt_002827,u_0127,onboarding_completed,2026-06-06T13:46:00Z,u_0127_s01,ins_u_0127_005,"{""completed_at"": ""2026-06-06T13:56:00Z""}",v2.2.0-healthy +evt_002828,u_0283,signup_started,2026-06-06T13:48:00Z,u_0283_s01,ins_u_0283_001,{},v2.2.0-healthy +evt_002829,u_0222,feature_used,2026-06-06T13:49:00Z,u_0222_s01,ins_u_0222_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002830,u_0283,session_abandoned,2026-06-06T13:49:00Z,u_0283_s01,ins_u_0283_002,{},v2.2.0-healthy +evt_002831,u_0210,session_abandoned,2026-06-06T13:50:00Z,u_0210_s01,ins_u_0210_003,{},v2.2.0-healthy +evt_002832,u_0441,session_abandoned,2026-06-06T13:50:00Z,u_0441_s01,ins_u_0441_003,{},v2.2.0-healthy +evt_002833,u_0524,signup_started,2026-06-06T13:55:00Z,u_0524_s01,ins_u_0524_001,{},v2.2.0-healthy +evt_002834,u_0524,signup_completed,2026-06-06T13:56:00Z,u_0524_s01,ins_u_0524_002,{},v2.2.0-healthy +evt_002835,u_0745,feature_used,2026-06-06T13:59:00Z,u_0745_s01,ins_u_0745_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002836,u_0524,profile_saved,2026-06-06T14:00:00Z,u_0524_s01,ins_u_0524_003,{},v2.2.0-healthy +evt_002837,u_0558,activation_completed,2026-06-06T14:00:00Z,u_0558_s01,ins_u_0558_007,{},v2.2.0-healthy +evt_002838,u_0656,activation_completed,2026-06-06T14:01:00Z,u_0656_s01,ins_u_0656_006,{},v2.2.0-healthy +evt_002839,u_0222,onboarding_completed,2026-06-06T14:02:00Z,u_0222_s01,ins_u_0222_006,"{""completed_at"": ""2026-06-06T14:02:00Z""}",v2.2.0-healthy +evt_002840,u_0186,signup_started,2026-06-06T14:04:00Z,u_0186_s01,ins_u_0186_001,{},v2.2.0-healthy +evt_002841,u_0524,onboarding_step_viewed,2026-06-06T14:06:00Z,u_0524_s01,ins_u_0524_004,{},v2.2.0-healthy +evt_002842,u_0362,signup_started,2026-06-06T14:08:00Z,u_0362_s01,ins_u_0362_001,{},v2.2.0-healthy +evt_002843,u_0186,signup_completed,2026-06-06T14:09:00Z,u_0186_s01,ins_u_0186_002,{},v2.2.0-healthy +evt_002844,u_0256,signup_started,2026-06-06T14:10:00Z,u_0256_s01,ins_u_0256_001,{},v2.2.0-healthy +evt_002845,u_0745,onboarding_completed,2026-06-06T14:10:00Z,u_0745_s01,ins_u_0745_006,"{""completed_at"": ""2026-06-06T14:10:00Z""}",v2.2.0-healthy +evt_002846,u_0314,onboarding_completed,2026-06-06T14:13:00Z,u_0314_s01,ins_u_0314_005,"{""completed_at"": ""2026-06-06T14:10:00Z""}",v2.2.0-healthy +evt_002847,u_0362,signup_completed,2026-06-06T14:14:00Z,u_0362_s01,ins_u_0362_002,{},v2.2.0-healthy +evt_002848,u_0362,profile_saved,2026-06-06T14:17:00Z,u_0362_s01,ins_u_0362_003,{},v2.2.0-healthy +evt_002849,u_0513,signup_started,2026-06-06T14:17:00Z,u_0513_s01,ins_u_0513_001,{},v2.2.0-healthy +evt_002850,u_0186,profile_saved,2026-06-06T14:18:00Z,u_0186_s01,ins_u_0186_003,{},v2.2.0-healthy +evt_002851,u_0256,signup_completed,2026-06-06T14:18:00Z,u_0256_s01,ins_u_0256_002,{},v2.2.0-healthy +evt_002852,u_0362,onboarding_step_viewed,2026-06-06T14:19:00Z,u_0362_s01,ins_u_0362_004,{},v2.2.0-healthy +evt_002853,u_0524,feature_used,2026-06-06T14:20:00Z,u_0524_s01,ins_u_0524_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002854,u_0513,signup_completed,2026-06-06T14:22:00Z,u_0513_s01,ins_u_0513_002,{},v2.2.0-healthy +evt_002855,u_0186,onboarding_step_viewed,2026-06-06T14:24:00Z,u_0186_s01,ins_u_0186_004,{},v2.2.0-healthy +evt_002856,u_0256,profile_saved,2026-06-06T14:25:00Z,u_0256_s01,ins_u_0256_003,{},v2.2.0-healthy +evt_002857,u_0798,signup_started,2026-06-06T14:25:00Z,u_0798_s01,ins_u_0798_001,{},v2.2.0-healthy +evt_002858,u_0798,signup_completed,2026-06-06T14:26:00Z,u_0798_s01,ins_u_0798_002,{},v2.2.0-healthy +evt_002859,u_0524,onboarding_completed,2026-06-06T14:27:00Z,u_0524_s01,ins_u_0524_006,"{""completed_at"": ""2026-06-06T14:38:00Z""}",v2.2.0-healthy +evt_002860,u_0513,profile_saved,2026-06-06T14:28:00Z,u_0513_s01,ins_u_0513_003,{},v2.2.0-healthy +evt_002861,u_0256,onboarding_step_viewed,2026-06-06T14:29:00Z,u_0256_s01,ins_u_0256_004,{},v2.2.0-healthy +evt_002862,u_0798,profile_saved,2026-06-06T14:31:00Z,u_0798_s01,ins_u_0798_003,{},v2.2.0-healthy +evt_002863,u_0746,signup_started,2026-06-06T14:33:00Z,u_0746_s01,ins_u_0746_001,{},v2.2.0-healthy +evt_002864,u_0256,feature_used,2026-06-06T14:35:00Z,u_0256_s01,ins_u_0256_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002865,u_0232,signup_started,2026-06-06T14:36:00Z,u_0232_s01,ins_u_0232_001,{},v2.2.0-healthy +evt_002866,u_0186,feature_used,2026-06-06T14:37:00Z,u_0186_s01,ins_u_0186_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002867,u_0648,signup_started,2026-06-06T14:37:00Z,u_0648_s01,ins_u_0648_001,{},v2.2.0-healthy +evt_002868,u_0798,onboarding_step_viewed,2026-06-06T14:37:00Z,u_0798_s01,ins_u_0798_004,{},v2.2.0-healthy +evt_002869,u_0038,signup_started,2026-06-06T14:39:00Z,u_0038_s01,ins_u_0038_001,{},v2.2.0-healthy +evt_002870,u_0232,session_abandoned,2026-06-06T14:39:00Z,u_0232_s01,ins_u_0232_002,{},v2.2.0-healthy +evt_002871,u_0222,activation_completed,2026-06-06T14:40:00Z,u_0222_s01,ins_u_0222_007,{},v2.2.0-healthy +evt_002872,u_0746,signup_completed,2026-06-06T14:41:00Z,u_0746_s01,ins_u_0746_002,{},v2.2.0-healthy +evt_002873,u_0418,signup_started,2026-06-06T14:42:00Z,u_0418_s01,ins_u_0418_001,{},v2.2.0-healthy +evt_002874,u_0418,signup_completed,2026-06-06T14:43:00Z,u_0418_s01,ins_u_0418_002,{},v2.2.0-healthy +evt_002875,u_0450,signup_started,2026-06-06T14:44:00Z,u_0450_s01,ins_u_0450_001,{},v2.2.0-healthy +evt_002876,u_0038,signup_completed,2026-06-06T14:45:00Z,u_0038_s01,ins_u_0038_002,{},v2.2.0-healthy +evt_002877,u_0648,signup_completed,2026-06-06T14:45:00Z,u_0648_s01,ins_u_0648_002,{},v2.2.0-healthy +evt_002878,u_0186,onboarding_completed,2026-06-06T14:47:00Z,u_0186_s01,ins_u_0186_006,"{""completed_at"": ""2026-06-06T14:58:00Z""}",v2.2.0-healthy +evt_002879,u_0513,feature_used,2026-06-06T14:47:00Z,u_0513_s01,ins_u_0513_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002880,u_0169,signup_started,2026-06-06T14:48:00Z,u_0169_s01,ins_u_0169_001,{},v2.2.0-healthy +evt_002881,u_0746,profile_saved,2026-06-06T14:48:00Z,u_0746_s01,ins_u_0746_003,{},v2.2.0-healthy +evt_002882,u_0038,profile_saved,2026-06-06T14:49:00Z,u_0038_s01,ins_u_0038_003,{},v2.2.0-healthy +evt_002883,u_0038,error_shown,2026-06-06T14:50:00Z,u_0038_s01,ins_u_0038_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002884,u_0418,profile_saved,2026-06-06T14:51:00Z,u_0418_s01,ins_u_0418_003,{},v2.2.0-healthy +evt_002885,u_0137,signup_started,2026-06-06T14:52:00Z,u_0137_s01,ins_u_0137_001,{},v2.2.0-healthy +evt_002886,u_0418,error_shown,2026-06-06T14:52:00Z,u_0418_s01,ins_u_0418_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002887,u_0450,signup_completed,2026-06-06T14:52:00Z,u_0450_s01,ins_u_0450_002,{},v2.2.0-healthy +evt_002888,u_0746,onboarding_step_viewed,2026-06-06T14:52:00Z,u_0746_s01,ins_u_0746_004,{},v2.2.0-healthy +evt_002889,u_0169,signup_completed,2026-06-06T14:54:00Z,u_0169_s01,ins_u_0169_002,{},v2.2.0-healthy +evt_002890,u_0450,profile_saved,2026-06-06T14:54:00Z,u_0450_s01,ins_u_0450_003,{},v2.2.0-healthy +evt_002891,u_0523,signup_started,2026-06-06T14:54:00Z,u_0523_s01,ins_u_0523_001,{},v2.2.0-healthy +evt_002892,u_0648,profile_saved,2026-06-06T14:54:00Z,u_0648_s01,ins_u_0648_003,{},v2.2.0-healthy +evt_002893,u_0450,error_shown,2026-06-06T14:55:00Z,u_0450_s01,ins_u_0450_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002894,u_0746,feature_used,2026-06-06T14:56:00Z,u_0746_s01,ins_u_0746_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002895,u_0137,signup_completed,2026-06-06T14:57:00Z,u_0137_s01,ins_u_0137_002,{},v2.2.0-healthy +evt_002896,u_0169,profile_saved,2026-06-06T14:58:00Z,u_0169_s01,ins_u_0169_003,{},v2.2.0-healthy +evt_002897,u_0523,signup_completed,2026-06-06T14:58:00Z,u_0523_s01,ins_u_0523_002,{},v2.2.0-healthy +evt_002898,u_0648,onboarding_step_viewed,2026-06-06T14:59:00Z,u_0648_s01,ins_u_0648_004,{},v2.2.0-healthy +evt_002899,u_0450,onboarding_step_viewed,2026-06-06T15:00:00Z,u_0450_s01,ins_u_0450_005,{},v2.2.0-healthy +evt_002900,u_0169,onboarding_step_viewed,2026-06-06T15:01:00Z,u_0169_s01,ins_u_0169_004,{},v2.2.0-healthy +evt_002901,u_0254,signup_started,2026-06-06T15:01:00Z,u_0254_s01,ins_u_0254_001,{},v2.2.0-healthy +evt_002902,u_0362,onboarding_completed,2026-06-06T15:01:00Z,u_0362_s01,ins_u_0362_005,"{""completed_at"": ""2026-06-06T14:56:00Z""}",v2.2.0-healthy +evt_002903,u_0525,signup_started,2026-06-06T15:01:00Z,u_0525_s01,ins_u_0525_001,{},v2.2.0-healthy +evt_002904,u_0362,activation_completed,2026-06-06T15:03:00Z,u_0362_s01,ins_u_0362_006,{},v2.2.0-healthy +evt_002905,u_0744,signup_started,2026-06-06T15:03:00Z,u_0744_s01,ins_u_0744_001,{},v2.2.0-healthy +evt_002906,u_0137,profile_saved,2026-06-06T15:04:00Z,u_0137_s01,ins_u_0137_003,{},v2.2.0-healthy +evt_002907,u_0137,error_shown,2026-06-06T15:05:00Z,u_0137_s01,ins_u_0137_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002908,u_0254,signup_completed,2026-06-06T15:05:00Z,u_0254_s01,ins_u_0254_002,{},v2.2.0-healthy +evt_002909,u_0256,onboarding_completed,2026-06-06T15:06:00Z,u_0256_s01,ins_u_0256_006,"{""completed_at"": ""2026-06-06T14:52:00Z""}",v2.2.0-healthy +evt_002910,u_0744,signup_completed,2026-06-06T15:06:00Z,u_0744_s01,ins_u_0744_002,{},v2.2.0-healthy +evt_002911,u_0525,signup_completed,2026-06-06T15:07:00Z,u_0525_s01,ins_u_0525_002,{},v2.2.0-healthy +evt_002912,u_0523,profile_saved,2026-06-06T15:08:00Z,u_0523_s01,ins_u_0523_003,{},v2.2.0-healthy +evt_002913,u_0648,feature_used,2026-06-06T15:08:00Z,u_0648_s01,ins_u_0648_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002914,u_0137,onboarding_step_viewed,2026-06-06T15:09:00Z,u_0137_s01,ins_u_0137_005,{},v2.2.0-healthy +evt_002915,u_0169,feature_used,2026-06-06T15:09:00Z,u_0169_s01,ins_u_0169_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002916,u_0254,session_abandoned,2026-06-06T15:09:00Z,u_0254_s01,ins_u_0254_003,{},v2.2.0-healthy +evt_002917,u_0513,onboarding_completed,2026-06-06T15:11:00Z,u_0513_s01,ins_u_0513_005,"{""completed_at"": ""2026-06-06T14:55:00Z""}",v2.2.0-healthy +evt_002918,u_0744,session_abandoned,2026-06-06T15:12:00Z,u_0744_s01,ins_u_0744_003,{},v2.2.0-healthy +evt_002919,u_0038,feature_used,2026-06-06T15:14:00Z,u_0038_s01,ins_u_0038_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_002920,u_0450,feature_used,2026-06-06T15:14:00Z,u_0450_s01,ins_u_0450_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_002921,u_0523,onboarding_step_viewed,2026-06-06T15:14:00Z,u_0523_s01,ins_u_0523_004,{},v2.2.0-healthy +evt_002922,u_0798,onboarding_completed,2026-06-06T15:15:00Z,u_0798_s01,ins_u_0798_005,"{""completed_at"": ""2026-06-06T14:57:00Z""}",v2.2.0-healthy +evt_002923,u_0525,profile_saved,2026-06-06T15:16:00Z,u_0525_s01,ins_u_0525_003,{},v2.2.0-healthy +evt_002924,u_0798,activation_completed,2026-06-06T15:20:00Z,u_0798_s01,ins_u_0798_006,{},v2.2.0-healthy +evt_002925,u_0038,onboarding_completed,2026-06-06T15:21:00Z,u_0038_s01,ins_u_0038_006,"{""completed_at"": ""2026-06-06T15:29:00Z""}",v2.2.0-healthy +evt_002926,u_0525,onboarding_step_viewed,2026-06-06T15:21:00Z,u_0525_s01,ins_u_0525_004,{},v2.2.0-healthy +evt_002927,u_0523,feature_used,2026-06-06T15:22:00Z,u_0523_s01,ins_u_0523_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002928,u_0163,signup_started,2026-06-06T15:24:00Z,u_0163_s01,ins_u_0163_001,{},v2.2.0-healthy +evt_002929,u_0648,onboarding_completed,2026-06-06T15:24:00Z,u_0648_s01,ins_u_0648_006,"{""completed_at"": ""2026-06-06T15:26:00Z""}",v2.2.0-healthy +evt_002930,u_0163,session_abandoned,2026-06-06T15:25:00Z,u_0163_s01,ins_u_0163_002,{},v2.2.0-healthy +evt_002931,u_0525,feature_used,2026-06-06T15:28:00Z,u_0525_s01,ins_u_0525_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002932,u_0418,onboarding_completed,2026-06-06T15:29:00Z,u_0418_s01,ins_u_0418_005,"{""completed_at"": ""2026-06-06T15:24:00Z""}",v2.2.0-healthy +evt_002933,u_0169,onboarding_completed,2026-06-06T15:31:00Z,u_0169_s01,ins_u_0169_006,"{""completed_at"": ""2026-06-06T15:34:00Z""}",v2.2.0-healthy +evt_002934,u_0724,signup_started,2026-06-06T15:36:00Z,u_0724_s01,ins_u_0724_001,{},v2.2.0-healthy +evt_002935,u_0450,onboarding_completed,2026-06-06T15:37:00Z,u_0450_s01,ins_u_0450_007,"{""completed_at"": ""2026-06-06T15:23:00Z""}",v2.2.0-healthy +evt_002936,u_0513,activation_completed,2026-06-06T15:37:00Z,u_0513_s01,ins_u_0513_006,{},v2.2.0-healthy +evt_002937,u_0724,signup_completed,2026-06-06T15:41:00Z,u_0724_s01,ins_u_0724_002,{},v2.2.0-healthy +evt_002938,u_0137,onboarding_completed,2026-06-06T15:44:00Z,u_0137_s01,ins_u_0137_006,"{""completed_at"": ""2026-06-06T15:41:00Z""}",v2.2.0-healthy +evt_002939,u_0724,session_abandoned,2026-06-06T15:47:00Z,u_0724_s01,ins_u_0724_003,{},v2.2.0-healthy +evt_002940,u_0525,onboarding_completed,2026-06-06T15:48:00Z,u_0525_s01,ins_u_0525_006,"{""completed_at"": ""2026-06-06T15:43:00Z""}",v2.2.0-healthy +evt_002941,u_0178,signup_started,2026-06-06T15:49:00Z,u_0178_s01,ins_u_0178_001,{},v2.2.0-healthy +evt_002942,u_0248,signup_started,2026-06-06T15:49:00Z,u_0248_s01,ins_u_0248_001,{},v2.2.0-healthy +evt_002943,u_0248,signup_completed,2026-06-06T15:51:00Z,u_0248_s01,ins_u_0248_002,{},v2.2.0-healthy +evt_002944,u_0523,onboarding_completed,2026-06-06T15:51:00Z,u_0523_s01,ins_u_0523_006,"{""completed_at"": ""2026-06-06T15:35:00Z""}",v2.2.0-healthy +evt_002945,u_0696,signup_started,2026-06-06T15:53:00Z,u_0696_s01,ins_u_0696_001,{},v2.2.0-healthy +evt_002946,u_0137,activation_completed,2026-06-06T15:54:00Z,u_0137_s01,ins_u_0137_007,{},v2.2.0-healthy +evt_002947,u_0375,signup_started,2026-06-06T15:54:00Z,u_0375_s01,ins_u_0375_001,{},v2.2.0-healthy +evt_002948,u_0178,signup_completed,2026-06-06T15:55:00Z,u_0178_s01,ins_u_0178_002,{},v2.2.0-healthy +evt_002949,u_0248,profile_saved,2026-06-06T15:55:00Z,u_0248_s01,ins_u_0248_003,{},v2.2.0-healthy +evt_002950,u_0248,error_shown,2026-06-06T15:56:00Z,u_0248_s01,ins_u_0248_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002951,u_0418,activation_completed,2026-06-06T15:57:00Z,u_0418_s01,ins_u_0418_006,{},v2.2.0-healthy +evt_002952,u_0696,signup_completed,2026-06-06T15:57:00Z,u_0696_s01,ins_u_0696_002,{},v2.2.0-healthy +evt_002953,u_0248,onboarding_step_viewed,2026-06-06T15:58:00Z,u_0248_s01,ins_u_0248_005,{},v2.2.0-healthy +evt_002954,u_0178,session_abandoned,2026-06-06T16:01:00Z,u_0178_s01,ins_u_0178_003,{},v2.2.0-healthy +evt_002955,u_0567,signup_started,2026-06-06T16:01:00Z,u_0567_s01,ins_u_0567_001,{},v2.2.0-healthy +evt_002956,u_0375,session_abandoned,2026-06-06T16:02:00Z,u_0375_s01,ins_u_0375_002,{},v2.2.0-healthy +evt_002957,u_0567,signup_completed,2026-06-06T16:03:00Z,u_0567_s01,ins_u_0567_002,{},v2.2.0-healthy +evt_002958,u_0696,profile_saved,2026-06-06T16:05:00Z,u_0696_s01,ins_u_0696_003,{},v2.2.0-healthy +evt_002959,u_0567,session_abandoned,2026-06-06T16:07:00Z,u_0567_s01,ins_u_0567_003,{},v2.2.0-healthy +evt_002960,u_0378,signup_started,2026-06-06T16:10:00Z,u_0378_s01,ins_u_0378_001,{},v2.2.0-healthy +evt_002961,u_0696,onboarding_step_viewed,2026-06-06T16:10:00Z,u_0696_s01,ins_u_0696_004,{},v2.2.0-healthy +evt_002962,u_0525,activation_completed,2026-06-06T16:11:00Z,u_0525_s01,ins_u_0525_007,{},v2.2.0-healthy +evt_002963,u_0225,signup_started,2026-06-06T16:16:00Z,u_0225_s01,ins_u_0225_001,{},v2.2.0-healthy +evt_002964,u_0225,signup_completed,2026-06-06T16:17:00Z,u_0225_s01,ins_u_0225_002,{},v2.2.0-healthy +evt_002965,u_0378,session_abandoned,2026-06-06T16:18:00Z,u_0378_s01,ins_u_0378_002,{},v2.2.0-healthy +evt_002966,u_0225,profile_saved,2026-06-06T16:19:00Z,u_0225_s01,ins_u_0225_003,{},v2.2.0-healthy +evt_002967,u_0225,onboarding_step_viewed,2026-06-06T16:24:00Z,u_0225_s01,ins_u_0225_004,{},v2.2.0-healthy +evt_002968,u_0580,signup_started,2026-06-06T16:24:00Z,u_0580_s01,ins_u_0580_001,{},v2.2.0-healthy +evt_002969,u_0373,signup_started,2026-06-06T16:27:00Z,u_0373_s01,ins_u_0373_001,{},v2.2.0-healthy +evt_002970,u_0580,signup_completed,2026-06-06T16:27:00Z,u_0580_s01,ins_u_0580_002,{},v2.2.0-healthy +evt_002971,u_0225,feature_used,2026-06-06T16:29:00Z,u_0225_s01,ins_u_0225_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002972,u_0566,signup_started,2026-06-06T16:33:00Z,u_0566_s01,ins_u_0566_001,{},v2.2.0-healthy +evt_002973,u_0580,session_abandoned,2026-06-06T16:33:00Z,u_0580_s01,ins_u_0580_003,{},v2.2.0-healthy +evt_002974,u_0067,signup_started,2026-06-06T16:34:00Z,u_0067_s01,ins_u_0067_001,{},v2.2.0-healthy +evt_002975,u_0373,signup_completed,2026-06-06T16:34:00Z,u_0373_s01,ins_u_0373_002,{},v2.2.0-healthy +evt_002976,u_0583,signup_started,2026-06-06T16:34:00Z,u_0583_s01,ins_u_0583_001,{},v2.2.0-healthy +evt_002977,u_0583,signup_completed,2026-06-06T16:35:00Z,u_0583_s01,ins_u_0583_002,{},v2.2.0-healthy +evt_002978,u_0320,signup_started,2026-06-06T16:39:00Z,u_0320_s01,ins_u_0320_001,{},v2.2.0-healthy +evt_002979,u_0566,signup_completed,2026-06-06T16:39:00Z,u_0566_s01,ins_u_0566_002,{},v2.2.0-healthy +evt_002980,u_0373,profile_saved,2026-06-06T16:40:00Z,u_0373_s01,ins_u_0373_003,{},v2.2.0-healthy +evt_002981,u_0373,error_shown,2026-06-06T16:41:00Z,u_0373_s01,ins_u_0373_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_002982,u_0067,signup_completed,2026-06-06T16:42:00Z,u_0067_s01,ins_u_0067_002,{},v2.2.0-healthy +evt_002983,u_0320,signup_completed,2026-06-06T16:42:00Z,u_0320_s01,ins_u_0320_002,{},v2.2.0-healthy +evt_002984,u_0566,profile_saved,2026-06-06T16:42:00Z,u_0566_s01,ins_u_0566_003,{},v2.2.0-healthy +evt_002985,u_0373,onboarding_step_viewed,2026-06-06T16:43:00Z,u_0373_s01,ins_u_0373_005,{},v2.2.0-healthy +evt_002986,u_0583,session_abandoned,2026-06-06T16:44:00Z,u_0583_s01,ins_u_0583_003,{},v2.2.0-healthy +evt_002987,u_0566,onboarding_step_viewed,2026-06-06T16:45:00Z,u_0566_s01,ins_u_0566_004,{},v2.2.0-healthy +evt_002988,u_0696,onboarding_completed,2026-06-06T16:45:00Z,u_0696_s01,ins_u_0696_005,"{""completed_at"": ""2026-06-06T16:45:00Z""}",v2.2.0-healthy +evt_002989,u_0067,profile_saved,2026-06-06T16:48:00Z,u_0067_s01,ins_u_0067_003,{},v2.2.0-healthy +evt_002990,u_0320,profile_saved,2026-06-06T16:49:00Z,u_0320_s01,ins_u_0320_003,{},v2.2.0-healthy +evt_002991,u_0304,signup_started,2026-06-06T16:51:00Z,u_0304_s01,ins_u_0304_001,{},v2.2.0-healthy +evt_002992,u_0067,onboarding_step_viewed,2026-06-06T16:52:00Z,u_0067_s01,ins_u_0067_004,{},v2.2.0-healthy +evt_002993,u_0320,onboarding_step_viewed,2026-06-06T16:53:00Z,u_0320_s01,ins_u_0320_004,{},v2.2.0-healthy +evt_002994,u_0602,signup_started,2026-06-06T16:55:00Z,u_0602_s01,ins_u_0602_001,{},v2.2.0-healthy +evt_002995,u_0093,signup_started,2026-06-06T16:58:00Z,u_0093_s01,ins_u_0093_001,{},v2.2.0-healthy +evt_002996,u_0067,feature_used,2026-06-06T16:59:00Z,u_0067_s01,ins_u_0067_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_002997,u_0304,session_abandoned,2026-06-06T16:59:00Z,u_0304_s01,ins_u_0304_002,{},v2.2.0-healthy +evt_002998,u_0602,signup_completed,2026-06-06T17:00:00Z,u_0602_s01,ins_u_0602_002,{},v2.2.0-healthy +evt_002999,u_0093,signup_completed,2026-06-06T17:01:00Z,u_0093_s01,ins_u_0093_002,{},v2.2.0-healthy +evt_003000,u_0197,signup_started,2026-06-06T17:03:00Z,u_0197_s01,ins_u_0197_001,{},v2.2.0-healthy +evt_003001,u_0602,profile_saved,2026-06-06T17:05:00Z,u_0602_s01,ins_u_0602_003,{},v2.2.0-healthy +evt_003002,u_0518,signup_started,2026-06-06T17:06:00Z,u_0518_s01,ins_u_0518_001,{},v2.2.0-healthy +evt_003003,u_0566,feature_used,2026-06-06T17:06:00Z,u_0566_s01,ins_u_0566_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003004,u_0771,signup_started,2026-06-06T17:08:00Z,u_0771_s01,ins_u_0771_001,{},v2.2.0-healthy +evt_003005,u_0197,signup_completed,2026-06-06T17:09:00Z,u_0197_s01,ins_u_0197_002,{},v2.2.0-healthy +evt_003006,u_0093,profile_saved,2026-06-06T17:10:00Z,u_0093_s01,ins_u_0093_003,{},v2.2.0-healthy +evt_003007,u_0518,signup_completed,2026-06-06T17:10:00Z,u_0518_s01,ins_u_0518_002,{},v2.2.0-healthy +evt_003008,u_0602,onboarding_step_viewed,2026-06-06T17:10:00Z,u_0602_s01,ins_u_0602_004,{},v2.2.0-healthy +evt_003009,u_0771,signup_completed,2026-06-06T17:10:00Z,u_0771_s01,ins_u_0771_002,{},v2.2.0-healthy +evt_003010,u_0093,onboarding_step_viewed,2026-06-06T17:13:00Z,u_0093_s01,ins_u_0093_004,{},v2.2.0-healthy +evt_003011,u_0771,session_abandoned,2026-06-06T17:15:00Z,u_0771_s01,ins_u_0771_003,{},v2.2.0-healthy +evt_003012,u_0518,profile_saved,2026-06-06T17:17:00Z,u_0518_s01,ins_u_0518_003,{},v2.2.0-healthy +evt_003013,u_0534,signup_started,2026-06-06T17:17:00Z,u_0534_s01,ins_u_0534_001,{},v2.2.0-healthy +evt_003014,u_0197,session_abandoned,2026-06-06T17:18:00Z,u_0197_s01,ins_u_0197_003,{},v2.2.0-healthy +evt_003015,u_0534,session_abandoned,2026-06-06T17:18:00Z,u_0534_s01,ins_u_0534_002,{},v2.2.0-healthy +evt_003016,u_0518,onboarding_step_viewed,2026-06-06T17:20:00Z,u_0518_s01,ins_u_0518_004,{},v2.2.0-healthy +evt_003017,u_0373,onboarding_completed,2026-06-06T17:21:00Z,u_0373_s01,ins_u_0373_006,"{""completed_at"": ""2026-06-06T17:13:00Z""}",v2.2.0-healthy +evt_003018,u_0696,activation_completed,2026-06-06T17:23:00Z,u_0696_s01,ins_u_0696_006,{},v2.2.0-healthy +evt_003019,u_0225,activation_completed,2026-06-06T17:24:00Z,u_0225_s01,ins_u_0225_006,{},v2.2.0-healthy +evt_003020,u_0566,onboarding_completed,2026-06-06T17:24:00Z,u_0566_s01,ins_u_0566_006,"{""completed_at"": ""2026-06-06T17:19:00Z""}",v2.2.0-healthy +evt_003021,u_0067,onboarding_completed,2026-06-06T17:25:00Z,u_0067_s01,ins_u_0067_006,"{""completed_at"": ""2026-06-06T17:22:00Z""}",v2.2.0-healthy +evt_003022,u_0621,signup_started,2026-06-06T17:27:00Z,u_0621_s01,ins_u_0621_001,{},v2.2.0-healthy +evt_003023,u_0566,activation_completed,2026-06-06T17:33:00Z,u_0566_s01,ins_u_0566_007,{},v2.2.0-healthy +evt_003024,u_0621,signup_completed,2026-06-06T17:33:00Z,u_0621_s01,ins_u_0621_002,{},v2.2.0-healthy +evt_003025,u_0621,profile_saved,2026-06-06T17:40:00Z,u_0621_s01,ins_u_0621_003,{},v2.2.0-healthy +evt_003026,u_0434,signup_started,2026-06-06T17:42:00Z,u_0434_s01,ins_u_0434_001,{},v2.2.0-healthy +evt_003027,u_0621,onboarding_step_viewed,2026-06-06T17:45:00Z,u_0621_s01,ins_u_0621_004,{},v2.2.0-healthy +evt_003028,u_0434,signup_completed,2026-06-06T17:49:00Z,u_0434_s01,ins_u_0434_002,{},v2.2.0-healthy +evt_003029,u_0602,onboarding_completed,2026-06-06T17:49:00Z,u_0602_s01,ins_u_0602_005,"{""completed_at"": ""2026-06-06T17:41:00Z""}",v2.2.0-healthy +evt_003030,u_0518,onboarding_completed,2026-06-06T17:50:00Z,u_0518_s01,ins_u_0518_005,"{""completed_at"": ""2026-06-06T17:48:00Z""}",v2.2.0-healthy +evt_003031,u_0234,signup_started,2026-06-06T17:51:00Z,u_0234_s01,ins_u_0234_001,{},v2.2.0-healthy +evt_003032,u_0093,onboarding_completed,2026-06-06T17:53:00Z,u_0093_s01,ins_u_0093_005,"{""completed_at"": ""2026-06-06T17:50:00Z""}",v2.2.0-healthy +evt_003033,u_0703,signup_started,2026-06-06T17:55:00Z,u_0703_s01,ins_u_0703_001,{},v2.2.0-healthy +evt_003034,u_0234,session_abandoned,2026-06-06T17:58:00Z,u_0234_s01,ins_u_0234_002,{},v2.2.0-healthy +evt_003035,u_0434,session_abandoned,2026-06-06T17:58:00Z,u_0434_s01,ins_u_0434_003,{},v2.2.0-healthy +evt_003036,u_0618,signup_started,2026-06-06T17:59:00Z,u_0618_s01,ins_u_0618_001,{},v2.2.0-healthy +evt_003037,u_0703,signup_completed,2026-06-06T18:01:00Z,u_0703_s01,ins_u_0703_002,{},v2.2.0-healthy +evt_003038,u_0320,activation_completed,2026-06-06T18:02:00Z,u_0320_s01,ins_u_0320_005,{},v2.2.0-healthy +evt_003039,u_0499,signup_started,2026-06-06T18:03:00Z,u_0499_s01,ins_u_0499_001,{},v2.2.0-healthy +evt_003040,u_0602,activation_completed,2026-06-06T18:03:00Z,u_0602_s01,ins_u_0602_006,{},v2.2.0-healthy +evt_003041,u_0499,signup_completed,2026-06-06T18:05:00Z,u_0499_s01,ins_u_0499_002,{},v2.2.0-healthy +evt_003042,u_0618,signup_completed,2026-06-06T18:05:00Z,u_0618_s01,ins_u_0618_002,{},v2.2.0-healthy +evt_003043,u_0336,signup_started,2026-06-06T18:08:00Z,u_0336_s01,ins_u_0336_001,{},v2.2.0-healthy +evt_003044,u_0312,signup_started,2026-06-06T18:11:00Z,u_0312_s01,ins_u_0312_001,{},v2.2.0-healthy +evt_003045,u_0614,signup_started,2026-06-06T18:11:00Z,u_0614_s01,ins_u_0614_001,{},v2.2.0-healthy +evt_003046,u_0618,profile_saved,2026-06-06T18:11:00Z,u_0618_s01,ins_u_0618_003,{},v2.2.0-healthy +evt_003047,u_0703,profile_saved,2026-06-06T18:11:00Z,u_0703_s01,ins_u_0703_003,{},v2.2.0-healthy +evt_003048,u_0073,signup_started,2026-06-06T18:13:00Z,u_0073_s01,ins_u_0073_001,{},v2.2.0-healthy +evt_003049,u_0336,signup_completed,2026-06-06T18:13:00Z,u_0336_s01,ins_u_0336_002,{},v2.2.0-healthy +evt_003050,u_0614,signup_completed,2026-06-06T18:13:00Z,u_0614_s01,ins_u_0614_002,{},v2.2.0-healthy +evt_003051,u_0312,signup_completed,2026-06-06T18:14:00Z,u_0312_s01,ins_u_0312_002,{},v2.2.0-healthy +evt_003052,u_0377,signup_started,2026-06-06T18:14:00Z,u_0377_s01,ins_u_0377_001,{},v2.2.0-healthy +evt_003053,u_0073,signup_completed,2026-06-06T18:15:00Z,u_0073_s01,ins_u_0073_002,{},v2.2.0-healthy +evt_003054,u_0245,signup_started,2026-06-06T18:15:00Z,u_0245_s01,ins_u_0245_001,{},v2.2.0-healthy +evt_003055,u_0499,profile_saved,2026-06-06T18:15:00Z,u_0499_s01,ins_u_0499_003,{},v2.2.0-healthy +evt_003056,u_0621,onboarding_completed,2026-06-06T18:15:00Z,u_0621_s01,ins_u_0621_005,"{""completed_at"": ""2026-06-06T18:13:00Z""}",v2.2.0-healthy +evt_003057,u_0295,signup_started,2026-06-06T18:16:00Z,u_0295_s01,ins_u_0295_001,{},v2.2.0-healthy +evt_003058,u_0618,onboarding_step_viewed,2026-06-06T18:16:00Z,u_0618_s01,ins_u_0618_004,{},v2.2.0-healthy +evt_003059,u_0703,onboarding_step_viewed,2026-06-06T18:16:00Z,u_0703_s01,ins_u_0703_004,{},v2.2.0-healthy +evt_003060,u_0245,session_abandoned,2026-06-06T18:17:00Z,u_0245_s01,ins_u_0245_002,{},v2.2.0-healthy +evt_003061,u_0312,profile_saved,2026-06-06T18:17:00Z,u_0312_s01,ins_u_0312_003,{},v2.2.0-healthy +evt_003062,u_0377,signup_completed,2026-06-06T18:19:00Z,u_0377_s01,ins_u_0377_002,{},v2.2.0-healthy +evt_003063,u_0336,session_abandoned,2026-06-06T18:20:00Z,u_0336_s01,ins_u_0336_003,{},v2.2.0-healthy +evt_003064,u_0614,profile_saved,2026-06-06T18:20:00Z,u_0614_s01,ins_u_0614_003,{},v2.2.0-healthy +evt_003065,u_0021,signup_started,2026-06-06T18:22:00Z,u_0021_s01,ins_u_0021_001,{},v2.2.0-healthy +evt_003066,u_0073,profile_saved,2026-06-06T18:22:00Z,u_0073_s01,ins_u_0073_003,{},v2.2.0-healthy +evt_003067,u_0295,signup_completed,2026-06-06T18:23:00Z,u_0295_s01,ins_u_0295_002,{},v2.2.0-healthy +evt_003068,u_0377,profile_saved,2026-06-06T18:24:00Z,u_0377_s01,ins_u_0377_003,{},v2.2.0-healthy +evt_003069,u_0073,onboarding_step_viewed,2026-06-06T18:25:00Z,u_0073_s01,ins_u_0073_004,{},v2.2.0-healthy +evt_003070,u_0021,signup_completed,2026-06-06T18:26:00Z,u_0021_s01,ins_u_0021_002,{},v2.2.0-healthy +evt_003071,u_0502,signup_started,2026-06-06T18:26:00Z,u_0502_s01,ins_u_0502_001,{},v2.2.0-healthy +evt_003072,u_0043,signup_started,2026-06-06T18:27:00Z,u_0043_s01,ins_u_0043_001,{},v2.2.0-healthy +evt_003073,u_0377,onboarding_step_viewed,2026-06-06T18:29:00Z,u_0377_s01,ins_u_0377_004,{},v2.2.0-healthy +evt_003074,u_0295,profile_saved,2026-06-06T18:30:00Z,u_0295_s01,ins_u_0295_003,{},v2.2.0-healthy +evt_003075,u_0329,signup_started,2026-06-06T18:30:00Z,u_0329_s01,ins_u_0329_001,{},v2.2.0-healthy +evt_003076,u_0502,signup_completed,2026-06-06T18:31:00Z,u_0502_s01,ins_u_0502_002,{},v2.2.0-healthy +evt_003077,u_0043,signup_completed,2026-06-06T18:34:00Z,u_0043_s01,ins_u_0043_002,{},v2.2.0-healthy +evt_003078,u_0295,onboarding_step_viewed,2026-06-06T18:34:00Z,u_0295_s01,ins_u_0295_004,{},v2.2.0-healthy +evt_003079,u_0021,profile_saved,2026-06-06T18:35:00Z,u_0021_s01,ins_u_0021_003,{},v2.2.0-healthy +evt_003080,u_0329,signup_completed,2026-06-06T18:35:00Z,u_0329_s01,ins_u_0329_002,{},v2.2.0-healthy +evt_003081,u_0508,signup_started,2026-06-06T18:36:00Z,u_0508_s01,ins_u_0508_001,{},v2.2.0-healthy +evt_003082,u_0645,signup_started,2026-06-06T18:36:00Z,u_0645_s01,ins_u_0645_001,{},v2.2.0-healthy +evt_003083,u_0043,profile_saved,2026-06-06T18:38:00Z,u_0043_s01,ins_u_0043_003,{},v2.2.0-healthy +evt_003084,u_0508,session_abandoned,2026-06-06T18:38:00Z,u_0508_s01,ins_u_0508_002,{},v2.2.0-healthy +evt_003085,u_0021,onboarding_step_viewed,2026-06-06T18:39:00Z,u_0021_s01,ins_u_0021_004,{},v2.2.0-healthy +evt_003086,u_0645,signup_completed,2026-06-06T18:39:00Z,u_0645_s01,ins_u_0645_002,{},v2.2.0-healthy +evt_003087,u_0329,session_abandoned,2026-06-06T18:40:00Z,u_0329_s01,ins_u_0329_003,{},v2.2.0-healthy +evt_003088,u_0502,profile_saved,2026-06-06T18:41:00Z,u_0502_s01,ins_u_0502_003,{},v2.2.0-healthy +evt_003089,u_0043,onboarding_step_viewed,2026-06-06T18:43:00Z,u_0043_s01,ins_u_0043_004,{},v2.2.0-healthy +evt_003090,u_0073,feature_used,2026-06-06T18:44:00Z,u_0073_s01,ins_u_0073_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003091,u_0312,onboarding_completed,2026-06-06T18:44:00Z,u_0312_s01,ins_u_0312_004,"{""completed_at"": ""2026-06-06T18:51:00Z""}",v2.2.0-healthy +evt_003092,u_0645,profile_saved,2026-06-06T18:45:00Z,u_0645_s01,ins_u_0645_003,{},v2.2.0-healthy +evt_003093,u_0502,onboarding_step_viewed,2026-06-06T18:46:00Z,u_0502_s01,ins_u_0502_004,{},v2.2.0-healthy +evt_003094,u_0621,activation_completed,2026-06-06T18:47:00Z,u_0621_s01,ins_u_0621_006,{},v2.2.0-healthy +evt_003095,u_0295,feature_used,2026-06-06T18:49:00Z,u_0295_s01,ins_u_0295_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003096,u_0021,feature_used,2026-06-06T18:50:00Z,u_0021_s01,ins_u_0021_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003097,u_0377,onboarding_completed,2026-06-06T18:52:00Z,u_0377_s01,ins_u_0377_005,"{""completed_at"": ""2026-06-06T18:59:00Z""}",v2.2.0-healthy +evt_003098,u_0703,onboarding_completed,2026-06-06T18:52:00Z,u_0703_s01,ins_u_0703_005,"{""completed_at"": ""2026-06-06T18:49:00Z""}",v2.2.0-healthy +evt_003099,u_0342,signup_started,2026-06-06T18:55:00Z,u_0342_s01,ins_u_0342_001,{},v2.2.0-healthy +evt_003100,u_0073,onboarding_completed,2026-06-06T19:00:00Z,u_0073_s01,ins_u_0073_006,"{""completed_at"": ""2026-06-06T19:02:00Z""}",v2.2.0-healthy +evt_003101,u_0342,signup_completed,2026-06-06T19:01:00Z,u_0342_s01,ins_u_0342_002,{},v2.2.0-healthy +evt_003102,u_0614,onboarding_completed,2026-06-06T19:05:00Z,u_0614_s01,ins_u_0614_004,"{""completed_at"": ""2026-06-06T18:50:00Z""}",v2.2.0-healthy +evt_003103,u_0342,profile_saved,2026-06-06T19:09:00Z,u_0342_s01,ins_u_0342_003,{},v2.2.0-healthy +evt_003104,u_0021,onboarding_completed,2026-06-06T19:10:00Z,u_0021_s01,ins_u_0021_006,"{""completed_at"": ""2026-06-06T19:07:00Z""}",v2.2.0-healthy +evt_003105,u_0502,onboarding_completed,2026-06-06T19:10:00Z,u_0502_s01,ins_u_0502_005,"{""completed_at"": ""2026-06-06T19:11:00Z""}",v2.2.0-healthy +evt_003106,u_0300,signup_started,2026-06-06T19:11:00Z,u_0300_s01,ins_u_0300_001,{},v2.2.0-healthy +evt_003107,u_0043,onboarding_completed,2026-06-06T19:14:00Z,u_0043_s01,ins_u_0043_005,"{""completed_at"": ""2026-06-06T19:10:00Z""}",v2.2.0-healthy +evt_003108,u_0645,onboarding_completed,2026-06-06T19:14:00Z,u_0645_s01,ins_u_0645_004,"{""completed_at"": ""2026-06-06T19:11:00Z""}",v2.2.0-healthy +evt_003109,u_0300,session_abandoned,2026-06-06T19:15:00Z,u_0300_s01,ins_u_0300_002,{},v2.2.0-healthy +evt_003110,u_0342,onboarding_step_viewed,2026-06-06T19:15:00Z,u_0342_s01,ins_u_0342_004,{},v2.2.0-healthy +evt_003111,u_0729,signup_started,2026-06-06T19:22:00Z,u_0729_s01,ins_u_0729_001,{},v2.2.0-healthy +evt_003112,u_0040,signup_started,2026-06-06T19:25:00Z,u_0040_s01,ins_u_0040_001,{},v2.2.0-healthy +evt_003113,u_0073,activation_completed,2026-06-06T19:27:00Z,u_0073_s01,ins_u_0073_007,{},v2.2.0-healthy +evt_003114,u_0729,session_abandoned,2026-06-06T19:28:00Z,u_0729_s01,ins_u_0729_002,{},v2.2.0-healthy +evt_003115,u_0342,feature_used,2026-06-06T19:29:00Z,u_0342_s01,ins_u_0342_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003116,u_0040,signup_completed,2026-06-06T19:30:00Z,u_0040_s01,ins_u_0040_002,{},v2.2.0-healthy +evt_003117,u_0130,signup_started,2026-06-06T19:33:00Z,u_0130_s01,ins_u_0130_001,{},v2.2.0-healthy +evt_003118,u_0325,signup_started,2026-06-06T19:34:00Z,u_0325_s01,ins_u_0325_001,{},v2.2.0-healthy +evt_003119,u_0040,profile_saved,2026-06-06T19:38:00Z,u_0040_s01,ins_u_0040_003,{},v2.2.0-healthy +evt_003120,u_0325,signup_completed,2026-06-06T19:39:00Z,u_0325_s01,ins_u_0325_002,{},v2.2.0-healthy +evt_003121,u_0130,session_abandoned,2026-06-06T19:41:00Z,u_0130_s01,ins_u_0130_002,{},v2.2.0-healthy +evt_003122,u_0800,signup_started,2026-06-06T19:41:00Z,u_0800_s01,ins_u_0800_001,{},v2.2.0-healthy +evt_003123,u_0417,signup_started,2026-06-06T19:42:00Z,u_0417_s01,ins_u_0417_001,{},v2.2.0-healthy +evt_003124,u_0645,activation_completed,2026-06-06T19:42:00Z,u_0645_s01,ins_u_0645_005,{},v2.2.0-healthy +evt_003125,u_0021,activation_completed,2026-06-06T19:43:00Z,u_0021_s01,ins_u_0021_007,{},v2.2.0-healthy +evt_003126,u_0126,signup_started,2026-06-06T19:43:00Z,u_0126_s01,ins_u_0126_001,{},v2.2.0-healthy +evt_003127,u_0417,signup_completed,2026-06-06T19:44:00Z,u_0417_s01,ins_u_0417_002,{},v2.2.0-healthy +evt_003128,u_0325,profile_saved,2026-06-06T19:45:00Z,u_0325_s01,ins_u_0325_003,{},v2.2.0-healthy +evt_003129,u_0126,signup_completed,2026-06-06T19:46:00Z,u_0126_s01,ins_u_0126_002,{},v2.2.0-healthy +evt_003130,u_0800,signup_completed,2026-06-06T19:46:00Z,u_0800_s01,ins_u_0800_002,{},v2.2.0-healthy +evt_003131,u_0025,return_visit,2026-06-06T19:47:00Z,u_0025_s02,ins_u_0025_005,{},v2.2.0-healthy +evt_003132,u_0417,profile_saved,2026-06-06T19:48:00Z,u_0417_s01,ins_u_0417_003,{},v2.2.0-healthy +evt_003133,u_0325,onboarding_step_viewed,2026-06-06T19:50:00Z,u_0325_s01,ins_u_0325_004,{},v2.2.0-healthy +evt_003134,u_0126,session_abandoned,2026-06-06T19:51:00Z,u_0126_s01,ins_u_0126_003,{},v2.2.0-healthy +evt_003135,u_0800,profile_saved,2026-06-06T19:52:00Z,u_0800_s01,ins_u_0800_003,{},v2.2.0-healthy +evt_003136,u_0342,onboarding_completed,2026-06-06T19:53:00Z,u_0342_s01,ins_u_0342_006,"{""completed_at"": ""2026-06-06T19:45:00Z""}",v2.2.0-healthy +evt_003137,u_0800,error_shown,2026-06-06T19:53:00Z,u_0800_s01,ins_u_0800_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003138,u_0040,feature_used,2026-06-06T19:54:00Z,u_0040_s01,ins_u_0040_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_003139,u_0417,onboarding_step_viewed,2026-06-06T19:54:00Z,u_0417_s01,ins_u_0417_004,{},v2.2.0-healthy +evt_003140,u_0502,activation_completed,2026-06-06T19:58:00Z,u_0502_s01,ins_u_0502_006,{},v2.2.0-healthy +evt_003141,u_0800,onboarding_step_viewed,2026-06-06T19:58:00Z,u_0800_s01,ins_u_0800_005,{},v2.2.0-healthy +evt_003142,u_0417,feature_used,2026-06-06T20:02:00Z,u_0417_s01,ins_u_0417_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003143,u_0188,signup_started,2026-06-06T20:04:00Z,u_0188_s01,ins_u_0188_001,{},v2.2.0-healthy +evt_003144,u_0040,onboarding_completed,2026-06-06T20:05:00Z,u_0040_s01,ins_u_0040_005,"{""completed_at"": ""2026-06-06T20:07:00Z""}",v2.2.0-healthy +evt_003145,u_0188,signup_completed,2026-06-06T20:10:00Z,u_0188_s01,ins_u_0188_002,{},v2.2.0-healthy +evt_003146,u_0342,activation_completed,2026-06-06T20:16:00Z,u_0342_s01,ins_u_0342_007,{},v2.2.0-healthy +evt_003147,u_0188,profile_saved,2026-06-06T20:20:00Z,u_0188_s01,ins_u_0188_003,{},v2.2.0-healthy +evt_003148,u_0188,onboarding_step_viewed,2026-06-06T20:26:00Z,u_0188_s01,ins_u_0188_004,{},v2.2.0-healthy +evt_003149,u_0417,onboarding_completed,2026-06-06T20:29:00Z,u_0417_s01,ins_u_0417_006,"{""completed_at"": ""2026-06-06T20:22:00Z""}",v2.2.0-healthy +evt_003150,u_0800,onboarding_completed,2026-06-06T20:30:00Z,u_0800_s01,ins_u_0800_006,"{""completed_at"": ""2026-06-06T20:32:00Z""}",v2.2.0-healthy +evt_003151,u_0542,signup_started,2026-06-06T20:32:00Z,u_0542_s01,ins_u_0542_001,{},v2.2.0-healthy +evt_003152,u_0251,signup_started,2026-06-06T20:33:00Z,u_0251_s01,ins_u_0251_001,{},v2.2.0-healthy +evt_003153,u_0267,return_visit,2026-06-06T20:33:00Z,u_0267_s02,ins_u_0267_007,{},v2.2.0-healthy +evt_003154,u_0188,feature_used,2026-06-06T20:35:00Z,u_0188_s01,ins_u_0188_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003155,u_0527,signup_started,2026-06-06T20:37:00Z,u_0527_s01,ins_u_0527_001,{},v2.2.0-healthy +evt_003156,u_0646,signup_started,2026-06-06T20:37:00Z,u_0646_s01,ins_u_0646_001,{},v2.2.0-healthy +evt_003157,u_0267,feature_used,2026-06-06T20:38:00Z,u_0267_s02,ins_u_0267_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003158,u_0542,signup_completed,2026-06-06T20:38:00Z,u_0542_s01,ins_u_0542_002,{},v2.2.0-healthy +evt_003159,u_0646,signup_completed,2026-06-06T20:40:00Z,u_0646_s01,ins_u_0646_002,{},v2.2.0-healthy +evt_003160,u_0251,signup_completed,2026-06-06T20:41:00Z,u_0251_s01,ins_u_0251_002,{},v2.2.0-healthy +evt_003161,u_0527,signup_completed,2026-06-06T20:42:00Z,u_0527_s01,ins_u_0527_002,{},v2.2.0-healthy +evt_003162,u_0251,profile_saved,2026-06-06T20:45:00Z,u_0251_s01,ins_u_0251_003,{},v2.2.0-healthy +evt_003163,u_0542,profile_saved,2026-06-06T20:45:00Z,u_0542_s01,ins_u_0542_003,{},v2.2.0-healthy +evt_003164,u_0646,profile_saved,2026-06-06T20:46:00Z,u_0646_s01,ins_u_0646_003,{},v2.2.0-healthy +evt_003165,u_0251,onboarding_step_viewed,2026-06-06T20:47:00Z,u_0251_s01,ins_u_0251_004,{},v2.2.0-healthy +evt_003166,u_0527,session_abandoned,2026-06-06T20:48:00Z,u_0527_s01,ins_u_0527_003,{},v2.2.0-healthy +evt_003167,u_0542,onboarding_step_viewed,2026-06-06T20:48:00Z,u_0542_s01,ins_u_0542_004,{},v2.2.0-healthy +evt_003168,u_0646,onboarding_step_viewed,2026-06-06T20:50:00Z,u_0646_s01,ins_u_0646_004,{},v2.2.0-healthy +evt_003169,u_0265,signup_started,2026-06-06T20:52:00Z,u_0265_s01,ins_u_0265_001,{},v2.2.0-healthy +evt_003170,u_0355,signup_started,2026-06-06T20:53:00Z,u_0355_s01,ins_u_0355_001,{},v2.2.0-healthy +evt_003171,u_0251,feature_used,2026-06-06T20:54:00Z,u_0251_s01,ins_u_0251_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003172,u_0265,signup_completed,2026-06-06T20:55:00Z,u_0265_s01,ins_u_0265_002,{},v2.2.0-healthy +evt_003173,u_0188,onboarding_completed,2026-06-06T20:56:00Z,u_0188_s01,ins_u_0188_006,"{""completed_at"": ""2026-06-06T20:54:00Z""}",v2.2.0-healthy +evt_003174,u_0459,signup_started,2026-06-06T20:57:00Z,u_0459_s01,ins_u_0459_001,{},v2.2.0-healthy +evt_003175,u_0004,signup_started,2026-06-06T20:58:00Z,u_0004_s01,ins_u_0004_001,{},v2.2.0-healthy +evt_003176,u_0355,signup_completed,2026-06-06T20:59:00Z,u_0355_s01,ins_u_0355_002,{},v2.2.0-healthy +evt_003177,u_0459,signup_completed,2026-06-06T21:03:00Z,u_0459_s01,ins_u_0459_002,{},v2.2.0-healthy +evt_003178,u_0800,activation_completed,2026-06-06T21:03:00Z,u_0800_s01,ins_u_0800_007,{},v2.2.0-healthy +evt_003179,u_0004,signup_completed,2026-06-06T21:04:00Z,u_0004_s01,ins_u_0004_002,{},v2.2.0-healthy +evt_003180,u_0265,profile_saved,2026-06-06T21:04:00Z,u_0265_s01,ins_u_0265_003,{},v2.2.0-healthy +evt_003181,u_0355,profile_saved,2026-06-06T21:05:00Z,u_0355_s01,ins_u_0355_003,{},v2.2.0-healthy +evt_003182,u_0542,feature_used,2026-06-06T21:06:00Z,u_0542_s01,ins_u_0542_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003183,u_0646,feature_used,2026-06-06T21:06:00Z,u_0646_s01,ins_u_0646_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003184,u_0265,onboarding_step_viewed,2026-06-06T21:08:00Z,u_0265_s01,ins_u_0265_004,{},v2.2.0-healthy +evt_003185,u_0355,onboarding_step_viewed,2026-06-06T21:09:00Z,u_0355_s01,ins_u_0355_004,{},v2.2.0-healthy +evt_003186,u_0459,profile_saved,2026-06-06T21:09:00Z,u_0459_s01,ins_u_0459_003,{},v2.2.0-healthy +evt_003187,u_0459,onboarding_step_viewed,2026-06-06T21:12:00Z,u_0459_s01,ins_u_0459_004,{},v2.2.0-healthy +evt_003188,u_0004,profile_saved,2026-06-06T21:14:00Z,u_0004_s01,ins_u_0004_003,{},v2.2.0-healthy +evt_003189,u_0004,onboarding_step_viewed,2026-06-06T21:16:00Z,u_0004_s01,ins_u_0004_004,{},v2.2.0-healthy +evt_003190,u_0251,onboarding_completed,2026-06-06T21:20:00Z,u_0251_s01,ins_u_0251_006,"{""completed_at"": ""2026-06-06T21:22:00Z""}",v2.2.0-healthy +evt_003191,u_0459,feature_used,2026-06-06T21:21:00Z,u_0459_s01,ins_u_0459_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003192,u_0542,onboarding_completed,2026-06-06T21:24:00Z,u_0542_s01,ins_u_0542_006,"{""completed_at"": ""2026-06-06T21:19:00Z""}",v2.2.0-healthy +evt_003193,u_0265,feature_used,2026-06-06T21:25:00Z,u_0265_s01,ins_u_0265_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003194,u_0646,onboarding_completed,2026-06-06T21:25:00Z,u_0646_s01,ins_u_0646_006,"{""completed_at"": ""2026-06-06T21:23:00Z""}",v2.2.0-healthy +evt_003195,u_0542,activation_completed,2026-06-06T21:31:00Z,u_0542_s01,ins_u_0542_007,{},v2.2.0-healthy +evt_003196,u_0355,onboarding_completed,2026-06-06T21:32:00Z,u_0355_s01,ins_u_0355_005,"{""completed_at"": ""2026-06-06T21:44:00Z""}",v2.2.0-healthy +evt_003197,u_0459,onboarding_completed,2026-06-06T21:38:00Z,u_0459_s01,ins_u_0459_006,"{""completed_at"": ""2026-06-06T21:41:00Z""}",v2.2.0-healthy +evt_003198,u_0265,onboarding_completed,2026-06-06T21:42:00Z,u_0265_s01,ins_u_0265_006,"{""completed_at"": ""2026-06-06T21:44:00Z""}",v2.2.0-healthy +evt_003199,u_0004,onboarding_completed,2026-06-06T21:50:00Z,u_0004_s01,ins_u_0004_005,"{""completed_at"": ""2026-06-06T21:42:00Z""}",v2.2.0-healthy +evt_003200,u_0353,return_visit,2026-06-06T21:55:00Z,u_0353_s02,ins_u_0353_007,{},v2.2.0-healthy +evt_003201,u_0353,feature_used,2026-06-06T22:00:00Z,u_0353_s02,ins_u_0353_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003202,u_0004,activation_completed,2026-06-06T22:13:00Z,u_0004_s01,ins_u_0004_006,{},v2.2.0-healthy +evt_003203,u_0027,return_visit,2026-06-07T00:31:00Z,u_0027_s02,ins_u_0027_007,{},v2.2.0-healthy +evt_003204,u_0027,feature_used,2026-06-07T00:36:00Z,u_0027_s02,ins_u_0027_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003205,u_0783,return_visit,2026-06-07T02:14:00Z,u_0783_s02,ins_u_0783_008,{},v2.2.0-healthy +evt_003206,u_0184,return_visit,2026-06-07T02:36:00Z,u_0184_s02,ins_u_0184_008,{},v2.2.0-healthy +evt_003207,u_0630,return_visit,2026-06-07T03:06:00Z,u_0630_s02,ins_u_0630_005,{},v2.2.0-healthy +evt_003208,u_0241,return_visit,2026-06-07T03:08:00Z,u_0241_s02,ins_u_0241_008,{},v2.2.0-healthy +evt_003209,u_0609,return_visit,2026-06-07T03:12:00Z,u_0609_s02,ins_u_0609_008,{},v2.2.0-healthy +evt_003210,u_0019,return_visit,2026-06-07T03:35:00Z,u_0019_s02,ins_u_0019_005,{},v2.2.0-healthy +evt_003211,u_0167,return_visit,2026-06-07T04:24:00Z,u_0167_s02,ins_u_0167_006,{},v2.2.0-healthy +evt_003212,u_0167,feature_used,2026-06-07T04:29:00Z,u_0167_s02,ins_u_0167_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003213,u_0501,return_visit,2026-06-07T04:58:00Z,u_0501_s02,ins_u_0501_008,{},v2.2.0-healthy +evt_003214,u_0384,return_visit,2026-06-07T05:13:00Z,u_0384_s02,ins_u_0384_007,{},v2.2.0-healthy +evt_003215,u_0551,return_visit,2026-06-07T06:06:00Z,u_0551_s02,ins_u_0551_008,{},v2.2.0-healthy +evt_003216,u_0712,return_visit,2026-06-07T06:55:00Z,u_0712_s02,ins_u_0712_006,{},v2.2.0-healthy +evt_003217,u_0712,feature_used,2026-06-07T07:00:00Z,u_0712_s02,ins_u_0712_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003218,u_0007,signup_started,2026-06-07T08:06:00Z,u_0007_s01,ins_u_0007_001,{},v2.2.0-healthy +evt_003219,u_0007,signup_completed,2026-06-07T08:10:00Z,u_0007_s01,ins_u_0007_002,{},v2.2.0-healthy +evt_003220,u_0007,session_abandoned,2026-06-07T08:17:00Z,u_0007_s01,ins_u_0007_003,{},v2.2.0-healthy +evt_003221,u_0273,signup_started,2026-06-07T08:19:00Z,u_0273_s01,ins_u_0273_001,{},v2.2.0-healthy +evt_003222,u_0301,signup_started,2026-06-07T08:19:00Z,u_0301_s01,ins_u_0301_001,{},v2.2.0-healthy +evt_003223,u_0273,session_abandoned,2026-06-07T08:22:00Z,u_0273_s01,ins_u_0273_002,{},v2.2.0-healthy +evt_003224,u_0301,signup_completed,2026-06-07T08:26:00Z,u_0301_s01,ins_u_0301_002,{},v2.2.0-healthy +evt_003225,u_0301,profile_saved,2026-06-07T08:34:00Z,u_0301_s01,ins_u_0301_003,{},v2.2.0-healthy +evt_003226,u_0034,signup_started,2026-06-07T08:35:00Z,u_0034_s01,ins_u_0034_001,{},v2.2.0-healthy +evt_003227,u_0149,signup_started,2026-06-07T08:36:00Z,u_0149_s01,ins_u_0149_001,{},v2.2.0-healthy +evt_003228,u_0034,signup_completed,2026-06-07T08:37:00Z,u_0034_s01,ins_u_0034_002,{},v2.2.0-healthy +evt_003229,u_0149,signup_completed,2026-06-07T08:38:00Z,u_0149_s01,ins_u_0149_002,{},v2.2.0-healthy +evt_003230,u_0346,signup_started,2026-06-07T08:41:00Z,u_0346_s01,ins_u_0346_001,{},v2.2.0-healthy +evt_003231,u_0034,profile_saved,2026-06-07T08:42:00Z,u_0034_s01,ins_u_0034_003,{},v2.2.0-healthy +evt_003232,u_0341,signup_started,2026-06-07T08:42:00Z,u_0341_s01,ins_u_0341_001,{},v2.2.0-healthy +evt_003233,u_0346,session_abandoned,2026-06-07T08:43:00Z,u_0346_s01,ins_u_0346_002,{},v2.2.0-healthy +evt_003234,u_0341,session_abandoned,2026-06-07T08:44:00Z,u_0341_s01,ins_u_0341_002,{},v2.2.0-healthy +evt_003235,u_0149,profile_saved,2026-06-07T08:46:00Z,u_0149_s01,ins_u_0149_003,{},v2.2.0-healthy +evt_003236,u_0034,onboarding_step_viewed,2026-06-07T08:47:00Z,u_0034_s01,ins_u_0034_004,{},v2.2.0-healthy +evt_003237,u_0149,onboarding_step_viewed,2026-06-07T08:48:00Z,u_0149_s01,ins_u_0149_004,{},v2.2.0-healthy +evt_003238,u_0687,signup_started,2026-06-07T08:49:00Z,u_0687_s01,ins_u_0687_001,{},v2.2.0-healthy +evt_003239,u_0507,signup_started,2026-06-07T08:50:00Z,u_0507_s01,ins_u_0507_001,{},v2.2.0-healthy +evt_003240,u_0687,signup_completed,2026-06-07T08:51:00Z,u_0687_s01,ins_u_0687_002,{},v2.2.0-healthy +evt_003241,u_0301,feature_used,2026-06-07T08:52:00Z,u_0301_s01,ins_u_0301_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003242,u_0149,feature_used,2026-06-07T08:53:00Z,u_0149_s01,ins_u_0149_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003243,u_0034,feature_used,2026-06-07T08:54:00Z,u_0034_s01,ins_u_0034_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003244,u_0042,signup_started,2026-06-07T08:54:00Z,u_0042_s01,ins_u_0042_001,{},v2.2.0-healthy +evt_003245,u_0507,signup_completed,2026-06-07T08:54:00Z,u_0507_s01,ins_u_0507_002,{},v2.2.0-healthy +evt_003246,u_0042,signup_completed,2026-06-07T08:57:00Z,u_0042_s01,ins_u_0042_002,{},v2.2.0-healthy +evt_003247,u_0687,session_abandoned,2026-06-07T08:58:00Z,u_0687_s01,ins_u_0687_003,{},v2.2.0-healthy +evt_003248,u_0507,session_abandoned,2026-06-07T08:59:00Z,u_0507_s01,ins_u_0507_003,{},v2.2.0-healthy +evt_003249,u_0042,profile_saved,2026-06-07T09:02:00Z,u_0042_s01,ins_u_0042_003,{},v2.2.0-healthy +evt_003250,u_0041,signup_started,2026-06-07T09:06:00Z,u_0041_s01,ins_u_0041_001,{},v2.2.0-healthy +evt_003251,u_0041,signup_completed,2026-06-07T09:07:00Z,u_0041_s01,ins_u_0041_002,{},v2.2.0-healthy +evt_003252,u_0301,onboarding_completed,2026-06-07T09:14:00Z,u_0301_s01,ins_u_0301_005,"{""completed_at"": ""2026-06-07T09:08:00Z""}",v2.2.0-healthy +evt_003253,u_0005,signup_started,2026-06-07T09:16:00Z,u_0005_s01,ins_u_0005_001,{},v2.2.0-healthy +evt_003254,u_0041,profile_saved,2026-06-07T09:16:00Z,u_0041_s01,ins_u_0041_003,{},v2.2.0-healthy +evt_003255,u_0005,signup_completed,2026-06-07T09:17:00Z,u_0005_s01,ins_u_0005_002,{},v2.2.0-healthy +evt_003256,u_0005,profile_saved,2026-06-07T09:19:00Z,u_0005_s01,ins_u_0005_003,{},v2.2.0-healthy +evt_003257,u_0034,onboarding_completed,2026-06-07T09:19:00Z,u_0034_s01,ins_u_0034_006,"{""completed_at"": ""2026-06-07T09:14:00Z""}",v2.2.0-healthy +evt_003258,u_0041,onboarding_step_viewed,2026-06-07T09:22:00Z,u_0041_s01,ins_u_0041_004,{},v2.2.0-healthy +evt_003259,u_0511,signup_started,2026-06-07T09:22:00Z,u_0511_s01,ins_u_0511_001,{},v2.2.0-healthy +evt_003260,u_0511,signup_completed,2026-06-07T09:24:00Z,u_0511_s01,ins_u_0511_002,{},v2.2.0-healthy +evt_003261,u_0274,signup_started,2026-06-07T09:26:00Z,u_0274_s01,ins_u_0274_001,{},v2.2.0-healthy +evt_003262,u_0274,signup_completed,2026-06-07T09:27:00Z,u_0274_s01,ins_u_0274_002,{},v2.2.0-healthy +evt_003263,u_0301,activation_completed,2026-06-07T09:28:00Z,u_0301_s01,ins_u_0301_006,{},v2.2.0-healthy +evt_003264,u_0511,session_abandoned,2026-06-07T09:28:00Z,u_0511_s01,ins_u_0511_003,{},v2.2.0-healthy +evt_003265,u_0149,onboarding_completed,2026-06-07T09:30:00Z,u_0149_s01,ins_u_0149_006,"{""completed_at"": ""2026-06-07T09:14:00Z""}",v2.2.0-healthy +evt_003266,u_0196,signup_started,2026-06-07T09:31:00Z,u_0196_s01,ins_u_0196_001,{},v2.2.0-healthy +evt_003267,u_0274,profile_saved,2026-06-07T09:35:00Z,u_0274_s01,ins_u_0274_003,{},v2.2.0-healthy +evt_003268,u_0196,signup_completed,2026-06-07T09:36:00Z,u_0196_s01,ins_u_0196_002,{},v2.2.0-healthy +evt_003269,u_0313,signup_started,2026-06-07T09:38:00Z,u_0313_s01,ins_u_0313_001,{},v2.2.0-healthy +evt_003270,u_0042,onboarding_completed,2026-06-07T09:39:00Z,u_0042_s01,ins_u_0042_004,"{""completed_at"": ""2026-06-07T09:38:00Z""}",v2.2.0-healthy +evt_003271,u_0274,onboarding_step_viewed,2026-06-07T09:41:00Z,u_0274_s01,ins_u_0274_004,{},v2.2.0-healthy +evt_003272,u_0196,profile_saved,2026-06-07T09:42:00Z,u_0196_s01,ins_u_0196_003,{},v2.2.0-healthy +evt_003273,u_0313,signup_completed,2026-06-07T09:42:00Z,u_0313_s01,ins_u_0313_002,{},v2.2.0-healthy +evt_003274,u_0177,signup_started,2026-06-07T09:45:00Z,u_0177_s01,ins_u_0177_001,{},v2.2.0-healthy +evt_003275,u_0313,profile_saved,2026-06-07T09:45:00Z,u_0313_s01,ins_u_0313_003,{},v2.2.0-healthy +evt_003276,u_0196,onboarding_step_viewed,2026-06-07T09:46:00Z,u_0196_s01,ins_u_0196_004,{},v2.2.0-healthy +evt_003277,u_0177,session_abandoned,2026-06-07T09:47:00Z,u_0177_s01,ins_u_0177_002,{},v2.2.0-healthy +evt_003278,u_0313,onboarding_step_viewed,2026-06-07T09:49:00Z,u_0313_s01,ins_u_0313_004,{},v2.2.0-healthy +evt_003279,u_0041,onboarding_completed,2026-06-07T09:50:00Z,u_0041_s01,ins_u_0041_005,"{""completed_at"": ""2026-06-07T09:45:00Z""}",v2.2.0-healthy +evt_003280,u_0005,onboarding_completed,2026-06-07T09:52:00Z,u_0005_s01,ins_u_0005_004,"{""completed_at"": ""2026-06-07T09:45:00Z""}",v2.2.0-healthy +evt_003281,u_0149,activation_completed,2026-06-07T09:58:00Z,u_0149_s01,ins_u_0149_007,{},v2.2.0-healthy +evt_003282,u_0274,feature_used,2026-06-07T10:00:00Z,u_0274_s01,ins_u_0274_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003283,u_0500,signup_started,2026-06-07T10:01:00Z,u_0500_s01,ins_u_0500_001,{},v2.2.0-healthy +evt_003284,u_0790,signup_started,2026-06-07T10:01:00Z,u_0790_s01,ins_u_0790_001,{},v2.2.0-healthy +evt_003285,u_0196,feature_used,2026-06-07T10:06:00Z,u_0196_s01,ins_u_0196_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003286,u_0500,signup_completed,2026-06-07T10:07:00Z,u_0500_s01,ins_u_0500_002,{},v2.2.0-healthy +evt_003287,u_0790,session_abandoned,2026-06-07T10:07:00Z,u_0790_s01,ins_u_0790_002,{},v2.2.0-healthy +evt_003288,u_0055,signup_started,2026-06-07T10:08:00Z,u_0055_s01,ins_u_0055_001,{},v2.2.0-healthy +evt_003289,u_0060,signup_started,2026-06-07T10:08:00Z,u_0060_s01,ins_u_0060_001,{},v2.2.0-healthy +evt_003290,u_0055,signup_completed,2026-06-07T10:09:00Z,u_0055_s01,ins_u_0055_002,{},v2.2.0-healthy +evt_003291,u_0274,onboarding_completed,2026-06-07T10:09:00Z,u_0274_s01,ins_u_0274_006,"{""completed_at"": ""2026-06-07T10:01:00Z""}",v2.2.0-healthy +evt_003292,u_0313,onboarding_completed,2026-06-07T10:11:00Z,u_0313_s01,ins_u_0313_005,"{""completed_at"": ""2026-06-07T10:15:00Z""}",v2.2.0-healthy +evt_003293,u_0060,signup_completed,2026-06-07T10:13:00Z,u_0060_s01,ins_u_0060_002,{},v2.2.0-healthy +evt_003294,u_0060,profile_saved,2026-06-07T10:15:00Z,u_0060_s01,ins_u_0060_003,{},v2.2.0-healthy +evt_003295,u_0728,signup_started,2026-06-07T10:15:00Z,u_0728_s01,ins_u_0728_001,{},v2.2.0-healthy +evt_003296,u_0493,signup_started,2026-06-07T10:16:00Z,u_0493_s01,ins_u_0493_001,{},v2.2.0-healthy +evt_003297,u_0500,session_abandoned,2026-06-07T10:16:00Z,u_0500_s01,ins_u_0500_003,{},v2.2.0-healthy +evt_003298,u_0042,activation_completed,2026-06-07T10:17:00Z,u_0042_s01,ins_u_0042_005,{},v2.2.0-healthy +evt_003299,u_0493,signup_completed,2026-06-07T10:17:00Z,u_0493_s01,ins_u_0493_002,{},v2.2.0-healthy +evt_003300,u_0060,onboarding_step_viewed,2026-06-07T10:18:00Z,u_0060_s01,ins_u_0060_004,{},v2.2.0-healthy +evt_003301,u_0728,signup_completed,2026-06-07T10:18:00Z,u_0728_s01,ins_u_0728_002,{},v2.2.0-healthy +evt_003302,u_0055,profile_saved,2026-06-07T10:19:00Z,u_0055_s01,ins_u_0055_003,{},v2.2.0-healthy +evt_003303,u_0196,onboarding_completed,2026-06-07T10:19:00Z,u_0196_s01,ins_u_0196_006,"{""completed_at"": ""2026-06-07T10:09:00Z""}",v2.2.0-healthy +evt_003304,u_0055,onboarding_step_viewed,2026-06-07T10:22:00Z,u_0055_s01,ins_u_0055_004,{},v2.2.0-healthy +evt_003305,u_0493,session_abandoned,2026-06-07T10:23:00Z,u_0493_s01,ins_u_0493_003,{},v2.2.0-healthy +evt_003306,u_0728,session_abandoned,2026-06-07T10:23:00Z,u_0728_s01,ins_u_0728_003,{},v2.2.0-healthy +evt_003307,u_0274,activation_completed,2026-06-07T10:25:00Z,u_0274_s01,ins_u_0274_007,{},v2.2.0-healthy +evt_003308,u_0001,signup_started,2026-06-07T10:26:00Z,u_0001_s01,ins_u_0001_001,{},v2.2.0-healthy +evt_003309,u_0001,session_abandoned,2026-06-07T10:29:00Z,u_0001_s01,ins_u_0001_002,{},v2.2.0-healthy +evt_003310,u_0060,feature_used,2026-06-07T10:34:00Z,u_0060_s01,ins_u_0060_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003311,u_0060,onboarding_completed,2026-06-07T10:42:00Z,u_0060_s01,ins_u_0060_006,"{""completed_at"": ""2026-06-07T10:49:00Z""}",v2.2.0-healthy +evt_003312,u_0299,signup_started,2026-06-07T10:42:00Z,u_0299_s01,ins_u_0299_001,{},v2.2.0-healthy +evt_003313,u_0299,signup_completed,2026-06-07T10:45:00Z,u_0299_s01,ins_u_0299_002,{},v2.2.0-healthy +evt_003314,u_0313,activation_completed,2026-06-07T10:47:00Z,u_0313_s01,ins_u_0313_006,{},v2.2.0-healthy +evt_003315,u_0299,profile_saved,2026-06-07T10:48:00Z,u_0299_s01,ins_u_0299_003,{},v2.2.0-healthy +evt_003316,u_0246,signup_started,2026-06-07T10:50:00Z,u_0246_s01,ins_u_0246_001,{},v2.2.0-healthy +evt_003317,u_0196,activation_completed,2026-06-07T10:51:00Z,u_0196_s01,ins_u_0196_007,{},v2.2.0-healthy +evt_003318,u_0055,onboarding_completed,2026-06-07T10:53:00Z,u_0055_s01,ins_u_0055_005,"{""completed_at"": ""2026-06-07T10:56:00Z""}",v2.2.0-healthy +evt_003319,u_0246,signup_completed,2026-06-07T10:58:00Z,u_0246_s01,ins_u_0246_002,{},v2.2.0-healthy +evt_003320,u_0246,session_abandoned,2026-06-07T11:03:00Z,u_0246_s01,ins_u_0246_003,{},v2.2.0-healthy +evt_003321,u_0299,feature_used,2026-06-07T11:03:00Z,u_0299_s01,ins_u_0299_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003322,u_0168,signup_started,2026-06-07T11:17:00Z,u_0168_s01,ins_u_0168_001,{},v2.2.0-healthy +evt_003323,u_0299,onboarding_completed,2026-06-07T11:17:00Z,u_0299_s01,ins_u_0299_005,"{""completed_at"": ""2026-06-07T11:19:00Z""}",v2.2.0-healthy +evt_003324,u_0168,signup_completed,2026-06-07T11:18:00Z,u_0168_s01,ins_u_0168_002,{},v2.2.0-healthy +evt_003325,u_0168,session_abandoned,2026-06-07T11:23:00Z,u_0168_s01,ins_u_0168_003,{},v2.2.0-healthy +evt_003326,u_0672,signup_started,2026-06-07T11:29:00Z,u_0672_s01,ins_u_0672_001,{},v2.2.0-healthy +evt_003327,u_0060,activation_completed,2026-06-07T11:30:00Z,u_0060_s01,ins_u_0060_007,{},v2.2.0-healthy +evt_003328,u_0672,session_abandoned,2026-06-07T11:36:00Z,u_0672_s01,ins_u_0672_002,{},v2.2.0-healthy +evt_003329,u_0023,signup_started,2026-06-07T11:45:00Z,u_0023_s01,ins_u_0023_001,{},v2.2.0-healthy +evt_003330,u_0023,signup_completed,2026-06-07T11:52:00Z,u_0023_s01,ins_u_0023_002,{},v2.2.0-healthy +evt_003331,u_0595,signup_started,2026-06-07T11:57:00Z,u_0595_s01,ins_u_0595_001,{},v2.2.0-healthy +evt_003332,u_0023,profile_saved,2026-06-07T11:59:00Z,u_0023_s01,ins_u_0023_003,{},v2.2.0-healthy +evt_003333,u_0595,signup_completed,2026-06-07T12:01:00Z,u_0595_s01,ins_u_0595_002,{},v2.2.0-healthy +evt_003334,u_0023,onboarding_step_viewed,2026-06-07T12:05:00Z,u_0023_s01,ins_u_0023_004,{},v2.2.0-healthy +evt_003335,u_0595,profile_saved,2026-06-07T12:06:00Z,u_0595_s01,ins_u_0595_003,{},v2.2.0-healthy +evt_003336,u_0595,error_shown,2026-06-07T12:07:00Z,u_0595_s01,ins_u_0595_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003337,u_0364,signup_started,2026-06-07T12:08:00Z,u_0364_s01,ins_u_0364_001,{},v2.2.0-healthy +evt_003338,u_0595,onboarding_step_viewed,2026-06-07T12:08:00Z,u_0595_s01,ins_u_0595_005,{},v2.2.0-healthy +evt_003339,u_0364,signup_completed,2026-06-07T12:11:00Z,u_0364_s01,ins_u_0364_002,{},v2.2.0-healthy +evt_003340,u_0364,profile_saved,2026-06-07T12:13:00Z,u_0364_s01,ins_u_0364_003,{},v2.2.0-healthy +evt_003341,u_0364,onboarding_step_viewed,2026-06-07T12:19:00Z,u_0364_s01,ins_u_0364_004,{},v2.2.0-healthy +evt_003342,u_0160,signup_started,2026-06-07T12:21:00Z,u_0160_s01,ins_u_0160_001,{},v2.2.0-healthy +evt_003343,u_0364,feature_used,2026-06-07T12:24:00Z,u_0364_s01,ins_u_0364_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003344,u_0023,onboarding_completed,2026-06-07T12:27:00Z,u_0023_s01,ins_u_0023_005,"{""completed_at"": ""2026-06-07T12:29:00Z""}",v2.2.0-healthy +evt_003345,u_0160,signup_completed,2026-06-07T12:28:00Z,u_0160_s01,ins_u_0160_002,{},v2.2.0-healthy +evt_003346,u_0160,profile_saved,2026-06-07T12:35:00Z,u_0160_s01,ins_u_0160_003,{},v2.2.0-healthy +evt_003347,u_0160,onboarding_step_viewed,2026-06-07T12:37:00Z,u_0160_s01,ins_u_0160_004,{},v2.2.0-healthy +evt_003348,u_0364,onboarding_completed,2026-06-07T12:39:00Z,u_0364_s01,ins_u_0364_006,"{""completed_at"": ""2026-06-07T12:44:00Z""}",v2.2.0-healthy +evt_003349,u_0595,onboarding_completed,2026-06-07T12:48:00Z,u_0595_s01,ins_u_0595_006,"{""completed_at"": ""2026-06-07T12:40:00Z""}",v2.2.0-healthy +evt_003350,u_0348,signup_started,2026-06-07T12:49:00Z,u_0348_s01,ins_u_0348_001,{},v2.2.0-healthy +evt_003351,u_0023,activation_completed,2026-06-07T12:51:00Z,u_0023_s01,ins_u_0023_006,{},v2.2.0-healthy +evt_003352,u_0348,signup_completed,2026-06-07T12:56:00Z,u_0348_s01,ins_u_0348_002,{},v2.2.0-healthy +evt_003353,u_0454,signup_started,2026-06-07T12:59:00Z,u_0454_s01,ins_u_0454_001,{},v2.2.0-healthy +evt_003354,u_0748,return_visit,2026-06-07T12:59:00Z,u_0748_s02,ins_u_0748_006,{},v2.2.0-healthy +evt_003355,u_0348,session_abandoned,2026-06-07T13:00:00Z,u_0348_s01,ins_u_0348_003,{},v2.2.0-healthy +evt_003356,u_0176,signup_started,2026-06-07T13:02:00Z,u_0176_s01,ins_u_0176_001,{},v2.2.0-healthy +evt_003357,u_0454,signup_completed,2026-06-07T13:02:00Z,u_0454_s01,ins_u_0454_002,{},v2.2.0-healthy +evt_003358,u_0748,feature_used,2026-06-07T13:04:00Z,u_0748_s02,ins_u_0748_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003359,u_0433,signup_started,2026-06-07T13:05:00Z,u_0433_s01,ins_u_0433_001,{},v2.2.0-healthy +evt_003360,u_0013,signup_started,2026-06-07T13:06:00Z,u_0013_s01,ins_u_0013_001,{},v2.2.0-healthy +evt_003361,u_0176,signup_completed,2026-06-07T13:06:00Z,u_0176_s01,ins_u_0176_002,{},v2.2.0-healthy +evt_003362,u_0633,signup_started,2026-06-07T13:06:00Z,u_0633_s01,ins_u_0633_001,{},v2.2.0-healthy +evt_003363,u_0454,session_abandoned,2026-06-07T13:07:00Z,u_0454_s01,ins_u_0454_003,{},v2.2.0-healthy +evt_003364,u_0633,signup_completed,2026-06-07T13:09:00Z,u_0633_s01,ins_u_0633_002,{},v2.2.0-healthy +evt_003365,u_0433,signup_completed,2026-06-07T13:12:00Z,u_0433_s01,ins_u_0433_002,{},v2.2.0-healthy +evt_003366,u_0176,profile_saved,2026-06-07T13:13:00Z,u_0176_s01,ins_u_0176_003,{},v2.2.0-healthy +evt_003367,u_0013,signup_completed,2026-06-07T13:14:00Z,u_0013_s01,ins_u_0013_002,{},v2.2.0-healthy +evt_003368,u_0160,onboarding_completed,2026-06-07T13:14:00Z,u_0160_s01,ins_u_0160_005,"{""completed_at"": ""2026-06-07T13:03:00Z""}",v2.2.0-healthy +evt_003369,u_0475,signup_started,2026-06-07T13:15:00Z,u_0475_s01,ins_u_0475_001,{},v2.2.0-healthy +evt_003370,u_0633,session_abandoned,2026-06-07T13:16:00Z,u_0633_s01,ins_u_0633_003,{},v2.2.0-healthy +evt_003371,u_0774,signup_started,2026-06-07T13:16:00Z,u_0774_s01,ins_u_0774_001,{},v2.2.0-healthy +evt_003372,u_0176,onboarding_step_viewed,2026-06-07T13:17:00Z,u_0176_s01,ins_u_0176_004,{},v2.2.0-healthy +evt_003373,u_0013,profile_saved,2026-06-07T13:19:00Z,u_0013_s01,ins_u_0013_003,{},v2.2.0-healthy +evt_003374,u_0475,session_abandoned,2026-06-07T13:20:00Z,u_0475_s01,ins_u_0475_002,{},v2.2.0-healthy +evt_003375,u_0774,signup_completed,2026-06-07T13:20:00Z,u_0774_s01,ins_u_0774_002,{},v2.2.0-healthy +evt_003376,u_0433,profile_saved,2026-06-07T13:22:00Z,u_0433_s01,ins_u_0433_003,{},v2.2.0-healthy +evt_003377,u_0013,onboarding_step_viewed,2026-06-07T13:23:00Z,u_0013_s01,ins_u_0013_004,{},v2.2.0-healthy +evt_003378,u_0433,error_shown,2026-06-07T13:23:00Z,u_0433_s01,ins_u_0433_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003379,u_0364,activation_completed,2026-06-07T13:26:00Z,u_0364_s01,ins_u_0364_007,{},v2.2.0-healthy +evt_003380,u_0433,onboarding_step_viewed,2026-06-07T13:26:00Z,u_0433_s01,ins_u_0433_005,{},v2.2.0-healthy +evt_003381,u_0629,signup_started,2026-06-07T13:29:00Z,u_0629_s01,ins_u_0629_001,{},v2.2.0-healthy +evt_003382,u_0629,signup_completed,2026-06-07T13:30:00Z,u_0629_s01,ins_u_0629_002,{},v2.2.0-healthy +evt_003383,u_0774,profile_saved,2026-06-07T13:30:00Z,u_0774_s01,ins_u_0774_003,{},v2.2.0-healthy +evt_003384,u_0176,feature_used,2026-06-07T13:32:00Z,u_0176_s01,ins_u_0176_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003385,u_0774,onboarding_step_viewed,2026-06-07T13:32:00Z,u_0774_s01,ins_u_0774_004,{},v2.2.0-healthy +evt_003386,u_0700,signup_started,2026-06-07T13:34:00Z,u_0700_s01,ins_u_0700_001,{},v2.2.0-healthy +evt_003387,u_0629,profile_saved,2026-06-07T13:37:00Z,u_0629_s01,ins_u_0629_003,{},v2.2.0-healthy +evt_003388,u_0629,error_shown,2026-06-07T13:38:00Z,u_0629_s01,ins_u_0629_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003389,u_0600,signup_started,2026-06-07T13:41:00Z,u_0600_s01,ins_u_0600_001,{},v2.2.0-healthy +evt_003390,u_0700,signup_completed,2026-06-07T13:41:00Z,u_0700_s01,ins_u_0700_002,{},v2.2.0-healthy +evt_003391,u_0176,onboarding_completed,2026-06-07T13:42:00Z,u_0176_s01,ins_u_0176_006,"{""completed_at"": ""2026-06-07T13:39:00Z""}",v2.2.0-healthy +evt_003392,u_0629,onboarding_step_viewed,2026-06-07T13:42:00Z,u_0629_s01,ins_u_0629_005,{},v2.2.0-healthy +evt_003393,u_0600,signup_completed,2026-06-07T13:45:00Z,u_0600_s01,ins_u_0600_002,{},v2.2.0-healthy +evt_003394,u_0629,feature_used,2026-06-07T13:45:00Z,u_0629_s01,ins_u_0629_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003395,u_0215,signup_started,2026-06-07T13:48:00Z,u_0215_s01,ins_u_0215_001,{},v2.2.0-healthy +evt_003396,u_0013,onboarding_completed,2026-06-07T13:51:00Z,u_0013_s01,ins_u_0013_005,"{""completed_at"": ""2026-06-07T13:50:00Z""}",v2.2.0-healthy +evt_003397,u_0700,profile_saved,2026-06-07T13:51:00Z,u_0700_s01,ins_u_0700_003,{},v2.2.0-healthy +evt_003398,u_0700,error_shown,2026-06-07T13:52:00Z,u_0700_s01,ins_u_0700_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003399,u_0600,session_abandoned,2026-06-07T13:53:00Z,u_0600_s01,ins_u_0600_003,{},v2.2.0-healthy +evt_003400,u_0215,signup_completed,2026-06-07T13:55:00Z,u_0215_s01,ins_u_0215_002,{},v2.2.0-healthy +evt_003401,u_0215,profile_saved,2026-06-07T13:58:00Z,u_0215_s01,ins_u_0215_003,{},v2.2.0-healthy +evt_003402,u_0215,error_shown,2026-06-07T13:59:00Z,u_0215_s01,ins_u_0215_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003403,u_0215,onboarding_step_viewed,2026-06-07T14:02:00Z,u_0215_s01,ins_u_0215_005,{},v2.2.0-healthy +evt_003404,u_0662,signup_started,2026-06-07T14:07:00Z,u_0662_s01,ins_u_0662_001,{},v2.2.0-healthy +evt_003405,u_0076,signup_started,2026-06-07T14:08:00Z,u_0076_s01,ins_u_0076_001,{},v2.2.0-healthy +evt_003406,u_0732,signup_started,2026-06-07T14:08:00Z,u_0732_s01,ins_u_0732_001,{},v2.2.0-healthy +evt_003407,u_0732,signup_completed,2026-06-07T14:10:00Z,u_0732_s01,ins_u_0732_002,{},v2.2.0-healthy +evt_003408,u_0629,onboarding_completed,2026-06-07T14:11:00Z,u_0629_s01,ins_u_0629_007,"{""completed_at"": ""2026-06-07T14:04:00Z""}",v2.2.0-healthy +evt_003409,u_0662,signup_completed,2026-06-07T14:12:00Z,u_0662_s01,ins_u_0662_002,{},v2.2.0-healthy +evt_003410,u_0076,signup_completed,2026-06-07T14:13:00Z,u_0076_s01,ins_u_0076_002,{},v2.2.0-healthy +evt_003411,u_0433,activation_completed,2026-06-07T14:16:00Z,u_0433_s01,ins_u_0433_006,{},v2.2.0-healthy +evt_003412,u_0564,signup_started,2026-06-07T14:16:00Z,u_0564_s01,ins_u_0564_001,{},v2.2.0-healthy +evt_003413,u_0536,signup_started,2026-06-07T14:17:00Z,u_0536_s01,ins_u_0536_001,{},v2.2.0-healthy +evt_003414,u_0732,session_abandoned,2026-06-07T14:17:00Z,u_0732_s01,ins_u_0732_003,{},v2.2.0-healthy +evt_003415,u_0536,signup_completed,2026-06-07T14:18:00Z,u_0536_s01,ins_u_0536_002,{},v2.2.0-healthy +evt_003416,u_0076,session_abandoned,2026-06-07T14:19:00Z,u_0076_s01,ins_u_0076_003,{},v2.2.0-healthy +evt_003417,u_0013,activation_completed,2026-06-07T14:20:00Z,u_0013_s01,ins_u_0013_006,{},v2.2.0-healthy +evt_003418,u_0564,signup_completed,2026-06-07T14:21:00Z,u_0564_s01,ins_u_0564_002,{},v2.2.0-healthy +evt_003419,u_0574,signup_started,2026-06-07T14:21:00Z,u_0574_s01,ins_u_0574_001,{},v2.2.0-healthy +evt_003420,u_0536,session_abandoned,2026-06-07T14:22:00Z,u_0536_s01,ins_u_0536_003,{},v2.2.0-healthy +evt_003421,u_0662,profile_saved,2026-06-07T14:22:00Z,u_0662_s01,ins_u_0662_003,{},v2.2.0-healthy +evt_003422,u_0564,session_abandoned,2026-06-07T14:27:00Z,u_0564_s01,ins_u_0564_003,{},v2.2.0-healthy +evt_003423,u_0574,signup_completed,2026-06-07T14:27:00Z,u_0574_s01,ins_u_0574_002,{},v2.2.0-healthy +evt_003424,u_0662,onboarding_step_viewed,2026-06-07T14:27:00Z,u_0662_s01,ins_u_0662_004,{},v2.2.0-healthy +evt_003425,u_0611,signup_started,2026-06-07T14:28:00Z,u_0611_s01,ins_u_0611_001,{},v2.2.0-healthy +evt_003426,u_0592,signup_started,2026-06-07T14:29:00Z,u_0592_s01,ins_u_0592_001,{},v2.2.0-healthy +evt_003427,u_0611,session_abandoned,2026-06-07T14:29:00Z,u_0611_s01,ins_u_0611_002,{},v2.2.0-healthy +evt_003428,u_0592,signup_completed,2026-06-07T14:30:00Z,u_0592_s01,ins_u_0592_002,{},v2.2.0-healthy +evt_003429,u_0574,profile_saved,2026-06-07T14:31:00Z,u_0574_s01,ins_u_0574_003,{},v2.2.0-healthy +evt_003430,u_0056,signup_started,2026-06-07T14:32:00Z,u_0056_s01,ins_u_0056_001,{},v2.2.0-healthy +evt_003431,u_0574,onboarding_step_viewed,2026-06-07T14:34:00Z,u_0574_s01,ins_u_0574_004,{},v2.2.0-healthy +evt_003432,u_0774,activation_completed,2026-06-07T14:34:00Z,u_0774_s01,ins_u_0774_005,{},v2.2.0-healthy +evt_003433,u_0592,session_abandoned,2026-06-07T14:36:00Z,u_0592_s01,ins_u_0592_003,{},v2.2.0-healthy +evt_003434,u_0700,onboarding_completed,2026-06-07T14:36:00Z,u_0700_s01,ins_u_0700_005,"{""completed_at"": ""2026-06-07T14:17:00Z""}",v2.2.0-healthy +evt_003435,u_0215,onboarding_completed,2026-06-07T14:38:00Z,u_0215_s01,ins_u_0215_006,"{""completed_at"": ""2026-06-07T14:26:00Z""}",v2.2.0-healthy +evt_003436,u_0056,signup_completed,2026-06-07T14:40:00Z,u_0056_s01,ins_u_0056_002,{},v2.2.0-healthy +evt_003437,u_0619,signup_started,2026-06-07T14:41:00Z,u_0619_s01,ins_u_0619_001,{},v2.2.0-healthy +evt_003438,u_0619,session_abandoned,2026-06-07T14:44:00Z,u_0619_s01,ins_u_0619_002,{},v2.2.0-healthy +evt_003439,u_0662,feature_used,2026-06-07T14:46:00Z,u_0662_s01,ins_u_0662_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003440,u_0056,session_abandoned,2026-06-07T14:48:00Z,u_0056_s01,ins_u_0056_003,{},v2.2.0-healthy +evt_003441,u_0662,onboarding_completed,2026-06-07T14:52:00Z,u_0662_s01,ins_u_0662_006,"{""completed_at"": ""2026-06-07T14:52:00Z""}",v2.2.0-healthy +evt_003442,u_0574,feature_used,2026-06-07T14:53:00Z,u_0574_s01,ins_u_0574_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003443,u_0629,activation_completed,2026-06-07T14:55:00Z,u_0629_s01,ins_u_0629_008,{},v2.2.0-healthy +evt_003444,u_0796,signup_started,2026-06-07T14:57:00Z,u_0796_s01,ins_u_0796_001,{},v2.2.0-healthy +evt_003445,u_0700,activation_completed,2026-06-07T14:59:00Z,u_0700_s01,ins_u_0700_006,{},v2.2.0-healthy +evt_003446,u_0796,signup_completed,2026-06-07T14:59:00Z,u_0796_s01,ins_u_0796_002,{},v2.2.0-healthy +evt_003447,u_0140,signup_started,2026-06-07T15:01:00Z,u_0140_s01,ins_u_0140_001,{},v2.2.0-healthy +evt_003448,u_0615,signup_started,2026-06-07T15:02:00Z,u_0615_s01,ins_u_0615_001,{},v2.2.0-healthy +evt_003449,u_0140,signup_completed,2026-06-07T15:04:00Z,u_0140_s01,ins_u_0140_002,{},v2.2.0-healthy +evt_003450,u_0796,profile_saved,2026-06-07T15:04:00Z,u_0796_s01,ins_u_0796_003,{},v2.2.0-healthy +evt_003451,u_0615,signup_completed,2026-06-07T15:05:00Z,u_0615_s01,ins_u_0615_002,{},v2.2.0-healthy +evt_003452,u_0796,onboarding_step_viewed,2026-06-07T15:06:00Z,u_0796_s01,ins_u_0796_004,{},v2.2.0-healthy +evt_003453,u_0140,profile_saved,2026-06-07T15:10:00Z,u_0140_s01,ins_u_0140_003,{},v2.2.0-healthy +evt_003454,u_0224,signup_started,2026-06-07T15:12:00Z,u_0224_s01,ins_u_0224_001,{},v2.2.0-healthy +evt_003455,u_0574,onboarding_completed,2026-06-07T15:13:00Z,u_0574_s01,ins_u_0574_006,"{""completed_at"": ""2026-06-07T15:11:00Z""}",v2.2.0-healthy +evt_003456,u_0456,signup_started,2026-06-07T15:14:00Z,u_0456_s01,ins_u_0456_001,{},v2.2.0-healthy +evt_003457,u_0615,profile_saved,2026-06-07T15:14:00Z,u_0615_s01,ins_u_0615_003,{},v2.2.0-healthy +evt_003458,u_0117,signup_started,2026-06-07T15:16:00Z,u_0117_s01,ins_u_0117_001,{},v2.2.0-healthy +evt_003459,u_0140,onboarding_step_viewed,2026-06-07T15:16:00Z,u_0140_s01,ins_u_0140_004,{},v2.2.0-healthy +evt_003460,u_0756,signup_started,2026-06-07T15:17:00Z,u_0756_s01,ins_u_0756_001,{},v2.2.0-healthy +evt_003461,u_0191,signup_started,2026-06-07T15:18:00Z,u_0191_s01,ins_u_0191_001,{},v2.2.0-healthy +evt_003462,u_0456,session_abandoned,2026-06-07T15:18:00Z,u_0456_s01,ins_u_0456_002,{},v2.2.0-healthy +evt_003463,u_0224,signup_completed,2026-06-07T15:19:00Z,u_0224_s01,ins_u_0224_002,{},v2.2.0-healthy +evt_003464,u_0117,session_abandoned,2026-06-07T15:21:00Z,u_0117_s01,ins_u_0117_002,{},v2.2.0-healthy +evt_003465,u_0615,feature_used,2026-06-07T15:21:00Z,u_0615_s01,ins_u_0615_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003466,u_0224,profile_saved,2026-06-07T15:23:00Z,u_0224_s01,ins_u_0224_003,{},v2.2.0-healthy +evt_003467,u_0756,signup_completed,2026-06-07T15:23:00Z,u_0756_s01,ins_u_0756_002,{},v2.2.0-healthy +evt_003468,u_0796,feature_used,2026-06-07T15:24:00Z,u_0796_s01,ins_u_0796_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003469,u_0296,signup_started,2026-06-07T15:25:00Z,u_0296_s01,ins_u_0296_001,{},v2.2.0-healthy +evt_003470,u_0191,signup_completed,2026-06-07T15:26:00Z,u_0191_s01,ins_u_0191_002,{},v2.2.0-healthy +evt_003471,u_0224,onboarding_step_viewed,2026-06-07T15:27:00Z,u_0224_s01,ins_u_0224_004,{},v2.2.0-healthy +evt_003472,u_0296,signup_completed,2026-06-07T15:30:00Z,u_0296_s01,ins_u_0296_002,{},v2.2.0-healthy +evt_003473,u_0756,profile_saved,2026-06-07T15:30:00Z,u_0756_s01,ins_u_0756_003,{},v2.2.0-healthy +evt_003474,u_0122,signup_started,2026-06-07T15:31:00Z,u_0122_s01,ins_u_0122_001,{},v2.2.0-healthy +evt_003475,u_0191,session_abandoned,2026-06-07T15:31:00Z,u_0191_s01,ins_u_0191_003,{},v2.2.0-healthy +evt_003476,u_0756,onboarding_step_viewed,2026-06-07T15:36:00Z,u_0756_s01,ins_u_0756_004,{},v2.2.0-healthy +evt_003477,u_0122,signup_completed,2026-06-07T15:37:00Z,u_0122_s01,ins_u_0122_002,{},v2.2.0-healthy +evt_003478,u_0296,profile_saved,2026-06-07T15:37:00Z,u_0296_s01,ins_u_0296_003,{},v2.2.0-healthy +evt_003479,u_0122,profile_saved,2026-06-07T15:41:00Z,u_0122_s01,ins_u_0122_003,{},v2.2.0-healthy +evt_003480,u_0756,feature_used,2026-06-07T15:46:00Z,u_0756_s01,ins_u_0756_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003481,u_0796,onboarding_completed,2026-06-07T15:46:00Z,u_0796_s01,ins_u_0796_006,"{""completed_at"": ""2026-06-07T15:41:00Z""}",v2.2.0-healthy +evt_003482,u_0122,onboarding_step_viewed,2026-06-07T15:47:00Z,u_0122_s01,ins_u_0122_004,{},v2.2.0-healthy +evt_003483,u_0140,onboarding_completed,2026-06-07T15:52:00Z,u_0140_s01,ins_u_0140_005,"{""completed_at"": ""2026-06-07T15:49:00Z""}",v2.2.0-healthy +evt_003484,u_0615,onboarding_completed,2026-06-07T15:53:00Z,u_0615_s01,ins_u_0615_005,"{""completed_at"": ""2026-06-07T15:50:00Z""}",v2.2.0-healthy +evt_003485,u_0483,signup_started,2026-06-07T16:00:00Z,u_0483_s01,ins_u_0483_001,{},v2.2.0-healthy +evt_003486,u_0483,signup_completed,2026-06-07T16:01:00Z,u_0483_s01,ins_u_0483_002,{},v2.2.0-healthy +evt_003487,u_0296,feature_used,2026-06-07T16:02:00Z,u_0296_s01,ins_u_0296_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_003488,u_0399,signup_started,2026-06-07T16:02:00Z,u_0399_s01,ins_u_0399_001,{},v2.2.0-healthy +evt_003489,u_0122,feature_used,2026-06-07T16:03:00Z,u_0122_s01,ins_u_0122_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003490,u_0705,signup_started,2026-06-07T16:04:00Z,u_0705_s01,ins_u_0705_001,{},v2.2.0-healthy +evt_003491,u_0705,signup_completed,2026-06-07T16:05:00Z,u_0705_s01,ins_u_0705_002,{},v2.2.0-healthy +evt_003492,u_0296,onboarding_completed,2026-06-07T16:06:00Z,u_0296_s01,ins_u_0296_005,"{""completed_at"": ""2026-06-07T16:13:00Z""}",v2.2.0-healthy +evt_003493,u_0399,signup_completed,2026-06-07T16:07:00Z,u_0399_s01,ins_u_0399_002,{},v2.2.0-healthy +evt_003494,u_0483,session_abandoned,2026-06-07T16:08:00Z,u_0483_s01,ins_u_0483_003,{},v2.2.0-healthy +evt_003495,u_0399,profile_saved,2026-06-07T16:09:00Z,u_0399_s01,ins_u_0399_003,{},v2.2.0-healthy +evt_003496,u_0701,signup_started,2026-06-07T16:11:00Z,u_0701_s01,ins_u_0701_001,{},v2.2.0-healthy +evt_003497,u_0140,activation_completed,2026-06-07T16:13:00Z,u_0140_s01,ins_u_0140_006,{},v2.2.0-healthy +evt_003498,u_0705,profile_saved,2026-06-07T16:14:00Z,u_0705_s01,ins_u_0705_003,{},v2.2.0-healthy +evt_003499,u_0279,signup_started,2026-06-07T16:15:00Z,u_0279_s01,ins_u_0279_001,{},v2.2.0-healthy +evt_003500,u_0705,onboarding_step_viewed,2026-06-07T16:16:00Z,u_0705_s01,ins_u_0705_004,{},v2.2.0-healthy +evt_003501,u_0457,signup_started,2026-06-07T16:17:00Z,u_0457_s01,ins_u_0457_001,{},v2.2.0-healthy +evt_003502,u_0615,activation_completed,2026-06-07T16:17:00Z,u_0615_s01,ins_u_0615_006,{},v2.2.0-healthy +evt_003503,u_0757,signup_started,2026-06-07T16:17:00Z,u_0757_s01,ins_u_0757_001,{},v2.2.0-healthy +evt_003504,u_0279,signup_completed,2026-06-07T16:18:00Z,u_0279_s01,ins_u_0279_002,{},v2.2.0-healthy +evt_003505,u_0399,feature_used,2026-06-07T16:18:00Z,u_0399_s01,ins_u_0399_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003506,u_0457,signup_completed,2026-06-07T16:18:00Z,u_0457_s01,ins_u_0457_002,{},v2.2.0-healthy +evt_003507,u_0701,session_abandoned,2026-06-07T16:18:00Z,u_0701_s01,ins_u_0701_002,{},v2.2.0-healthy +evt_003508,u_0410,signup_started,2026-06-07T16:20:00Z,u_0410_s01,ins_u_0410_001,{},v2.2.0-healthy +evt_003509,u_0757,signup_completed,2026-06-07T16:21:00Z,u_0757_s01,ins_u_0757_002,{},v2.2.0-healthy +evt_003510,u_0598,signup_started,2026-06-07T16:23:00Z,u_0598_s01,ins_u_0598_001,{},v2.2.0-healthy +evt_003511,u_0122,onboarding_completed,2026-06-07T16:24:00Z,u_0122_s01,ins_u_0122_006,"{""completed_at"": ""2026-06-07T16:19:00Z""}",v2.2.0-healthy +evt_003512,u_0279,profile_saved,2026-06-07T16:24:00Z,u_0279_s01,ins_u_0279_003,{},v2.2.0-healthy +evt_003513,u_0641,signup_started,2026-06-07T16:24:00Z,u_0641_s01,ins_u_0641_001,{},v2.2.0-healthy +evt_003514,u_0598,signup_completed,2026-06-07T16:25:00Z,u_0598_s01,ins_u_0598_002,{},v2.2.0-healthy +evt_003515,u_0410,signup_completed,2026-06-07T16:26:00Z,u_0410_s01,ins_u_0410_002,{},v2.2.0-healthy +evt_003516,u_0457,profile_saved,2026-06-07T16:28:00Z,u_0457_s01,ins_u_0457_003,{},v2.2.0-healthy +evt_003517,u_0641,signup_completed,2026-06-07T16:28:00Z,u_0641_s01,ins_u_0641_002,{},v2.2.0-healthy +evt_003518,u_0757,session_abandoned,2026-06-07T16:28:00Z,u_0757_s01,ins_u_0757_003,{},v2.2.0-healthy +evt_003519,u_0763,signup_started,2026-06-07T16:29:00Z,u_0763_s01,ins_u_0763_001,{},v2.2.0-healthy +evt_003520,u_0279,onboarding_step_viewed,2026-06-07T16:30:00Z,u_0279_s01,ins_u_0279_004,{},v2.2.0-healthy +evt_003521,u_0598,session_abandoned,2026-06-07T16:31:00Z,u_0598_s01,ins_u_0598_003,{},v2.2.0-healthy +evt_003522,u_0641,profile_saved,2026-06-07T16:32:00Z,u_0641_s01,ins_u_0641_003,{},v2.2.0-healthy +evt_003523,u_0763,signup_completed,2026-06-07T16:32:00Z,u_0763_s01,ins_u_0763_002,{},v2.2.0-healthy +evt_003524,u_0410,session_abandoned,2026-06-07T16:33:00Z,u_0410_s01,ins_u_0410_003,{},v2.2.0-healthy +evt_003525,u_0457,onboarding_step_viewed,2026-06-07T16:34:00Z,u_0457_s01,ins_u_0457_004,{},v2.2.0-healthy +evt_003526,u_0694,signup_started,2026-06-07T16:35:00Z,u_0694_s01,ins_u_0694_001,{},v2.2.0-healthy +evt_003527,u_0641,onboarding_step_viewed,2026-06-07T16:36:00Z,u_0641_s01,ins_u_0641_004,{},v2.2.0-healthy +evt_003528,u_0457,feature_used,2026-06-07T16:40:00Z,u_0457_s01,ins_u_0457_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003529,u_0705,onboarding_completed,2026-06-07T16:40:00Z,u_0705_s01,ins_u_0705_005,"{""completed_at"": ""2026-06-07T16:49:00Z""}",v2.2.0-healthy +evt_003530,u_0652,signup_started,2026-06-07T16:41:00Z,u_0652_s01,ins_u_0652_001,{},v2.2.0-healthy +evt_003531,u_0763,session_abandoned,2026-06-07T16:41:00Z,u_0763_s01,ins_u_0763_003,{},v2.2.0-healthy +evt_003532,u_0652,session_abandoned,2026-06-07T16:42:00Z,u_0652_s01,ins_u_0652_002,{},v2.2.0-healthy +evt_003533,u_0694,signup_completed,2026-06-07T16:43:00Z,u_0694_s01,ins_u_0694_002,{},v2.2.0-healthy +evt_003534,u_0361,signup_started,2026-06-07T16:44:00Z,u_0361_s01,ins_u_0361_001,{},v2.2.0-healthy +evt_003535,u_0641,feature_used,2026-06-07T16:45:00Z,u_0641_s01,ins_u_0641_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003536,u_0279,feature_used,2026-06-07T16:48:00Z,u_0279_s01,ins_u_0279_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003537,u_0399,onboarding_completed,2026-06-07T16:48:00Z,u_0399_s01,ins_u_0399_005,"{""completed_at"": ""2026-06-07T16:41:00Z""}",v2.2.0-healthy +evt_003538,u_0694,session_abandoned,2026-06-07T16:48:00Z,u_0694_s01,ins_u_0694_003,{},v2.2.0-healthy +evt_003539,u_0340,signup_started,2026-06-07T16:50:00Z,u_0340_s01,ins_u_0340_001,{},v2.2.0-healthy +evt_003540,u_0361,signup_completed,2026-06-07T16:50:00Z,u_0361_s01,ins_u_0361_002,{},v2.2.0-healthy +evt_003541,u_0361,profile_saved,2026-06-07T16:52:00Z,u_0361_s01,ins_u_0361_003,{},v2.2.0-healthy +evt_003542,u_0340,signup_completed,2026-06-07T16:54:00Z,u_0340_s01,ins_u_0340_002,{},v2.2.0-healthy +evt_003543,u_0361,onboarding_step_viewed,2026-06-07T16:57:00Z,u_0361_s01,ins_u_0361_004,{},v2.2.0-healthy +evt_003544,u_0340,profile_saved,2026-06-07T17:01:00Z,u_0340_s01,ins_u_0340_003,{},v2.2.0-healthy +evt_003545,u_0340,error_shown,2026-06-07T17:02:00Z,u_0340_s01,ins_u_0340_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003546,u_0173,signup_started,2026-06-07T17:04:00Z,u_0173_s01,ins_u_0173_001,{},v2.2.0-healthy +evt_003547,u_0641,onboarding_completed,2026-06-07T17:04:00Z,u_0641_s01,ins_u_0641_006,"{""completed_at"": ""2026-06-07T17:00:00Z""}",v2.2.0-healthy +evt_003548,u_0279,onboarding_completed,2026-06-07T17:05:00Z,u_0279_s01,ins_u_0279_006,"{""completed_at"": ""2026-06-07T16:53:00Z""}",v2.2.0-healthy +evt_003549,u_0361,feature_used,2026-06-07T17:05:00Z,u_0361_s01,ins_u_0361_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003550,u_0173,signup_completed,2026-06-07T17:07:00Z,u_0173_s01,ins_u_0173_002,{},v2.2.0-healthy +evt_003551,u_0457,onboarding_completed,2026-06-07T17:11:00Z,u_0457_s01,ins_u_0457_006,"{""completed_at"": ""2026-06-07T17:08:00Z""}",v2.2.0-healthy +evt_003552,u_0057,signup_started,2026-06-07T17:12:00Z,u_0057_s01,ins_u_0057_001,{},v2.2.0-healthy +evt_003553,u_0173,profile_saved,2026-06-07T17:15:00Z,u_0173_s01,ins_u_0173_003,{},v2.2.0-healthy +evt_003554,u_0679,signup_started,2026-06-07T17:15:00Z,u_0679_s01,ins_u_0679_001,{},v2.2.0-healthy +evt_003555,u_0430,signup_started,2026-06-07T17:16:00Z,u_0430_s01,ins_u_0430_001,{},v2.2.0-healthy +evt_003556,u_0173,onboarding_step_viewed,2026-06-07T17:17:00Z,u_0173_s01,ins_u_0173_004,{},v2.2.0-healthy +evt_003557,u_0430,session_abandoned,2026-06-07T17:19:00Z,u_0430_s01,ins_u_0430_002,{},v2.2.0-healthy +evt_003558,u_0057,signup_completed,2026-06-07T17:20:00Z,u_0057_s01,ins_u_0057_002,{},v2.2.0-healthy +evt_003559,u_0173,feature_used,2026-06-07T17:22:00Z,u_0173_s01,ins_u_0173_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003560,u_0340,feature_used,2026-06-07T17:23:00Z,u_0340_s01,ins_u_0340_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003561,u_0679,signup_completed,2026-06-07T17:23:00Z,u_0679_s01,ins_u_0679_002,{},v2.2.0-healthy +evt_003562,u_0679,profile_saved,2026-06-07T17:25:00Z,u_0679_s01,ins_u_0679_003,{},v2.2.0-healthy +evt_003563,u_0057,session_abandoned,2026-06-07T17:29:00Z,u_0057_s01,ins_u_0057_003,{},v2.2.0-healthy +evt_003564,u_0207,signup_started,2026-06-07T17:30:00Z,u_0207_s01,ins_u_0207_001,{},v2.2.0-healthy +evt_003565,u_0679,onboarding_step_viewed,2026-06-07T17:30:00Z,u_0679_s01,ins_u_0679_004,{},v2.2.0-healthy +evt_003566,u_0679,feature_used,2026-06-07T17:32:00Z,u_0679_s01,ins_u_0679_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003567,u_0689,signup_started,2026-06-07T17:32:00Z,u_0689_s01,ins_u_0689_001,{},v2.2.0-healthy +evt_003568,u_0207,signup_completed,2026-06-07T17:34:00Z,u_0207_s01,ins_u_0207_002,{},v2.2.0-healthy +evt_003569,u_0144,signup_started,2026-06-07T17:36:00Z,u_0144_s01,ins_u_0144_001,{},v2.2.0-healthy +evt_003570,u_0361,onboarding_completed,2026-06-07T17:36:00Z,u_0361_s01,ins_u_0361_006,"{""completed_at"": ""2026-06-07T17:29:00Z""}",v2.2.0-healthy +evt_003571,u_0689,signup_completed,2026-06-07T17:37:00Z,u_0689_s01,ins_u_0689_002,{},v2.2.0-healthy +evt_003572,u_0340,onboarding_completed,2026-06-07T17:39:00Z,u_0340_s01,ins_u_0340_006,"{""completed_at"": ""2026-06-07T17:41:00Z""}",v2.2.0-healthy +evt_003573,u_0435,signup_started,2026-06-07T17:41:00Z,u_0435_s01,ins_u_0435_001,{},v2.2.0-healthy +evt_003574,u_0144,signup_completed,2026-06-07T17:42:00Z,u_0144_s01,ins_u_0144_002,{},v2.2.0-healthy +evt_003575,u_0641,activation_completed,2026-06-07T17:42:00Z,u_0641_s01,ins_u_0641_007,{},v2.2.0-healthy +evt_003576,u_0689,session_abandoned,2026-06-07T17:42:00Z,u_0689_s01,ins_u_0689_003,{},v2.2.0-healthy +evt_003577,u_0207,profile_saved,2026-06-07T17:44:00Z,u_0207_s01,ins_u_0207_003,{},v2.2.0-healthy +evt_003578,u_0435,signup_completed,2026-06-07T17:49:00Z,u_0435_s01,ins_u_0435_002,{},v2.2.0-healthy +evt_003579,u_0144,profile_saved,2026-06-07T17:51:00Z,u_0144_s01,ins_u_0144_003,{},v2.2.0-healthy +evt_003580,u_0144,error_shown,2026-06-07T17:52:00Z,u_0144_s01,ins_u_0144_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003581,u_0435,profile_saved,2026-06-07T17:52:00Z,u_0435_s01,ins_u_0435_003,{},v2.2.0-healthy +evt_003582,u_0173,onboarding_completed,2026-06-07T17:56:00Z,u_0173_s01,ins_u_0173_006,"{""completed_at"": ""2026-06-07T17:53:00Z""}",v2.2.0-healthy +evt_003583,u_0435,onboarding_step_viewed,2026-06-07T17:56:00Z,u_0435_s01,ins_u_0435_004,{},v2.2.0-healthy +evt_003584,u_0207,feature_used,2026-06-07T18:02:00Z,u_0207_s01,ins_u_0207_004,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003585,u_0144,feature_used,2026-06-07T18:06:00Z,u_0144_s01,ins_u_0144_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003586,u_0173,activation_completed,2026-06-07T18:07:00Z,u_0173_s01,ins_u_0173_007,{},v2.2.0-healthy +evt_003587,u_0390,signup_started,2026-06-07T18:07:00Z,u_0390_s01,ins_u_0390_001,{},v2.2.0-healthy +evt_003588,u_0679,onboarding_completed,2026-06-07T18:07:00Z,u_0679_s01,ins_u_0679_006,"{""completed_at"": ""2026-06-07T17:57:00Z""}",v2.2.0-healthy +evt_003589,u_0297,signup_started,2026-06-07T18:12:00Z,u_0297_s01,ins_u_0297_001,{},v2.2.0-healthy +evt_003590,u_0361,activation_completed,2026-06-07T18:12:00Z,u_0361_s01,ins_u_0361_007,{},v2.2.0-healthy +evt_003591,u_0390,signup_completed,2026-06-07T18:12:00Z,u_0390_s01,ins_u_0390_002,{},v2.2.0-healthy +evt_003592,u_0297,signup_completed,2026-06-07T18:14:00Z,u_0297_s01,ins_u_0297_002,{},v2.2.0-healthy +evt_003593,u_0207,onboarding_completed,2026-06-07T18:16:00Z,u_0207_s01,ins_u_0207_005,"{""completed_at"": ""2026-06-07T18:15:00Z""}",v2.2.0-healthy +evt_003594,u_0390,session_abandoned,2026-06-07T18:16:00Z,u_0390_s01,ins_u_0390_003,{},v2.2.0-healthy +evt_003595,u_0141,signup_started,2026-06-07T18:18:00Z,u_0141_s01,ins_u_0141_001,{},v2.2.0-healthy +evt_003596,u_0297,profile_saved,2026-06-07T18:18:00Z,u_0297_s01,ins_u_0297_003,{},v2.2.0-healthy +evt_003597,u_0340,activation_completed,2026-06-07T18:20:00Z,u_0340_s01,ins_u_0340_007,{},v2.2.0-healthy +evt_003598,u_0435,onboarding_completed,2026-06-07T18:21:00Z,u_0435_s01,ins_u_0435_005,"{""completed_at"": ""2026-06-07T18:20:00Z""}",v2.2.0-healthy +evt_003599,u_0141,session_abandoned,2026-06-07T18:22:00Z,u_0141_s01,ins_u_0141_002,{},v2.2.0-healthy +evt_003600,u_0144,onboarding_completed,2026-06-07T18:22:00Z,u_0144_s01,ins_u_0144_006,"{""completed_at"": ""2026-06-07T18:24:00Z""}",v2.2.0-healthy +evt_003601,u_0297,onboarding_step_viewed,2026-06-07T18:22:00Z,u_0297_s01,ins_u_0297_004,{},v2.2.0-healthy +evt_003602,u_0679,activation_completed,2026-06-07T18:23:00Z,u_0679_s01,ins_u_0679_007,{},v2.2.0-healthy +evt_003603,u_0477,signup_started,2026-06-07T18:27:00Z,u_0477_s01,ins_u_0477_001,{},v2.2.0-healthy +evt_003604,u_0405,signup_started,2026-06-07T18:29:00Z,u_0405_s01,ins_u_0405_001,{},v2.2.0-healthy +evt_003605,u_0297,feature_used,2026-06-07T18:34:00Z,u_0297_s01,ins_u_0297_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003606,u_0405,signup_completed,2026-06-07T18:35:00Z,u_0405_s01,ins_u_0405_002,{},v2.2.0-healthy +evt_003607,u_0477,signup_completed,2026-06-07T18:35:00Z,u_0477_s01,ins_u_0477_002,{},v2.2.0-healthy +evt_003608,u_0080,signup_started,2026-06-07T18:37:00Z,u_0080_s01,ins_u_0080_001,{},v2.2.0-healthy +evt_003609,u_0405,session_abandoned,2026-06-07T18:39:00Z,u_0405_s01,ins_u_0405_003,{},v2.2.0-healthy +evt_003610,u_0435,activation_completed,2026-06-07T18:39:00Z,u_0435_s01,ins_u_0435_006,{},v2.2.0-healthy +evt_003611,u_0207,activation_completed,2026-06-07T18:41:00Z,u_0207_s01,ins_u_0207_006,{},v2.2.0-healthy +evt_003612,u_0575,signup_started,2026-06-07T18:41:00Z,u_0575_s01,ins_u_0575_001,{},v2.2.0-healthy +evt_003613,u_0477,session_abandoned,2026-06-07T18:42:00Z,u_0477_s01,ins_u_0477_003,{},v2.2.0-healthy +evt_003614,u_0080,signup_completed,2026-06-07T18:44:00Z,u_0080_s01,ins_u_0080_002,{},v2.2.0-healthy +evt_003615,u_0575,signup_completed,2026-06-07T18:45:00Z,u_0575_s01,ins_u_0575_002,{},v2.2.0-healthy +evt_003616,u_0297,onboarding_completed,2026-06-07T18:48:00Z,u_0297_s01,ins_u_0297_006,"{""completed_at"": ""2026-06-07T18:44:00Z""}",v2.2.0-healthy +evt_003617,u_0338,signup_started,2026-06-07T18:52:00Z,u_0338_s01,ins_u_0338_001,{},v2.2.0-healthy +evt_003618,u_0575,session_abandoned,2026-06-07T18:52:00Z,u_0575_s01,ins_u_0575_003,{},v2.2.0-healthy +evt_003619,u_0080,profile_saved,2026-06-07T18:54:00Z,u_0080_s01,ins_u_0080_003,{},v2.2.0-healthy +evt_003620,u_0338,session_abandoned,2026-06-07T18:56:00Z,u_0338_s01,ins_u_0338_002,{},v2.2.0-healthy +evt_003621,u_0546,signup_started,2026-06-07T18:56:00Z,u_0546_s01,ins_u_0546_001,{},v2.2.0-healthy +evt_003622,u_0546,signup_completed,2026-06-07T18:57:00Z,u_0546_s01,ins_u_0546_002,{},v2.2.0-healthy +evt_003623,u_0080,onboarding_step_viewed,2026-06-07T18:58:00Z,u_0080_s01,ins_u_0080_004,{},v2.2.0-healthy +evt_003624,u_0276,signup_started,2026-06-07T19:01:00Z,u_0276_s01,ins_u_0276_001,{},v2.2.0-healthy +evt_003625,u_0080,feature_used,2026-06-07T19:03:00Z,u_0080_s01,ins_u_0080_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003626,u_0276,signup_completed,2026-06-07T19:04:00Z,u_0276_s01,ins_u_0276_002,{},v2.2.0-healthy +evt_003627,u_0546,profile_saved,2026-06-07T19:04:00Z,u_0546_s01,ins_u_0546_003,{},v2.2.0-healthy +evt_003628,u_0221,signup_started,2026-06-07T19:06:00Z,u_0221_s01,ins_u_0221_001,{},v2.2.0-healthy +evt_003629,u_0424,signup_started,2026-06-07T19:06:00Z,u_0424_s01,ins_u_0424_001,{},v2.2.0-healthy +evt_003630,u_0276,profile_saved,2026-06-07T19:07:00Z,u_0276_s01,ins_u_0276_003,{},v2.2.0-healthy +evt_003631,u_0424,session_abandoned,2026-06-07T19:08:00Z,u_0424_s01,ins_u_0424_002,{},v2.2.0-healthy +evt_003632,u_0221,signup_completed,2026-06-07T19:10:00Z,u_0221_s01,ins_u_0221_002,{},v2.2.0-healthy +evt_003633,u_0276,onboarding_step_viewed,2026-06-07T19:10:00Z,u_0276_s01,ins_u_0276_004,{},v2.2.0-healthy +evt_003634,u_0535,signup_started,2026-06-07T19:11:00Z,u_0535_s01,ins_u_0535_001,{},v2.2.0-healthy +evt_003635,u_0221,profile_saved,2026-06-07T19:12:00Z,u_0221_s01,ins_u_0221_003,{},v2.2.0-healthy +evt_003636,u_0221,error_shown,2026-06-07T19:13:00Z,u_0221_s01,ins_u_0221_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003637,u_0221,onboarding_step_viewed,2026-06-07T19:14:00Z,u_0221_s01,ins_u_0221_005,{},v2.2.0-healthy +evt_003638,u_0766,signup_started,2026-06-07T19:14:00Z,u_0766_s01,ins_u_0766_001,{},v2.2.0-healthy +evt_003639,u_0535,signup_completed,2026-06-07T19:15:00Z,u_0535_s01,ins_u_0535_002,{},v2.2.0-healthy +evt_003640,u_0722,signup_started,2026-06-07T19:17:00Z,u_0722_s01,ins_u_0722_001,{},v2.2.0-healthy +evt_003641,u_0766,signup_completed,2026-06-07T19:20:00Z,u_0766_s01,ins_u_0766_002,{},v2.2.0-healthy +evt_003642,u_0107,signup_started,2026-06-07T19:22:00Z,u_0107_s01,ins_u_0107_001,{},v2.2.0-healthy +evt_003643,u_0535,profile_saved,2026-06-07T19:22:00Z,u_0535_s01,ins_u_0535_003,{},v2.2.0-healthy +evt_003644,u_0722,signup_completed,2026-06-07T19:23:00Z,u_0722_s01,ins_u_0722_002,{},v2.2.0-healthy +evt_003645,u_0766,profile_saved,2026-06-07T19:23:00Z,u_0766_s01,ins_u_0766_003,{},v2.2.0-healthy +evt_003646,u_0535,onboarding_step_viewed,2026-06-07T19:24:00Z,u_0535_s01,ins_u_0535_004,{},v2.2.0-healthy +evt_003647,u_0281,signup_started,2026-06-07T19:27:00Z,u_0281_s01,ins_u_0281_001,{},v2.2.0-healthy +evt_003648,u_0722,profile_saved,2026-06-07T19:27:00Z,u_0722_s01,ins_u_0722_003,{},v2.2.0-healthy +evt_003649,u_0221,feature_used,2026-06-07T19:29:00Z,u_0221_s01,ins_u_0221_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003650,u_0281,session_abandoned,2026-06-07T19:29:00Z,u_0281_s01,ins_u_0281_002,{},v2.2.0-healthy +evt_003651,u_0107,signup_completed,2026-06-07T19:30:00Z,u_0107_s01,ins_u_0107_002,{},v2.2.0-healthy +evt_003652,u_0107,profile_saved,2026-06-07T19:32:00Z,u_0107_s01,ins_u_0107_003,{},v2.2.0-healthy +evt_003653,u_0107,onboarding_step_viewed,2026-06-07T19:38:00Z,u_0107_s01,ins_u_0107_004,{},v2.2.0-healthy +evt_003654,u_0766,feature_used,2026-06-07T19:44:00Z,u_0766_s01,ins_u_0766_004,"{""feature"": ""board""}",v2.2.0-healthy +evt_003655,u_0657,signup_started,2026-06-07T19:46:00Z,u_0657_s01,ins_u_0657_001,{},v2.2.0-healthy +evt_003656,u_0276,onboarding_completed,2026-06-07T19:47:00Z,u_0276_s01,ins_u_0276_005,"{""completed_at"": ""2026-06-07T19:38:00Z""}",v2.2.0-healthy +evt_003657,u_0657,signup_completed,2026-06-07T19:47:00Z,u_0657_s01,ins_u_0657_002,{},v2.2.0-healthy +evt_003658,u_0221,onboarding_completed,2026-06-07T19:49:00Z,u_0221_s01,ins_u_0221_007,"{""completed_at"": ""2026-06-07T19:48:00Z""}",v2.2.0-healthy +evt_003659,u_0535,onboarding_completed,2026-06-07T19:49:00Z,u_0535_s01,ins_u_0535_005,"{""completed_at"": ""2026-06-07T19:51:00Z""}",v2.2.0-healthy +evt_003660,u_0546,onboarding_completed,2026-06-07T19:49:00Z,u_0546_s01,ins_u_0546_004,"{""completed_at"": ""2026-06-07T19:37:00Z""}",v2.2.0-healthy +evt_003661,u_0546,activation_completed,2026-06-07T19:50:00Z,u_0546_s01,ins_u_0546_005,{},v2.2.0-healthy +evt_003662,u_0050,signup_started,2026-06-07T19:51:00Z,u_0050_s01,ins_u_0050_001,{},v2.2.0-healthy +evt_003663,u_0050,signup_completed,2026-06-07T19:54:00Z,u_0050_s01,ins_u_0050_002,{},v2.2.0-healthy +evt_003664,u_0497,signup_started,2026-06-07T19:54:00Z,u_0497_s01,ins_u_0497_001,{},v2.2.0-healthy +evt_003665,u_0657,session_abandoned,2026-06-07T19:54:00Z,u_0657_s01,ins_u_0657_003,{},v2.2.0-healthy +evt_003666,u_0722,onboarding_completed,2026-06-07T19:55:00Z,u_0722_s01,ins_u_0722_004,"{""completed_at"": ""2026-06-07T19:57:00Z""}",v2.2.0-healthy +evt_003667,u_0020,signup_started,2026-06-07T19:56:00Z,u_0020_s01,ins_u_0020_001,{},v2.2.0-healthy +evt_003668,u_0506,signup_started,2026-06-07T19:56:00Z,u_0506_s01,ins_u_0506_001,{},v2.2.0-healthy +evt_003669,u_0766,onboarding_completed,2026-06-07T19:57:00Z,u_0766_s01,ins_u_0766_005,"{""completed_at"": ""2026-06-07T20:01:00Z""}",v2.2.0-healthy +evt_003670,u_0050,session_abandoned,2026-06-07T19:59:00Z,u_0050_s01,ins_u_0050_003,{},v2.2.0-healthy +evt_003671,u_0497,signup_completed,2026-06-07T19:59:00Z,u_0497_s01,ins_u_0497_002,{},v2.2.0-healthy +evt_003672,u_0506,signup_completed,2026-06-07T19:59:00Z,u_0506_s01,ins_u_0506_002,{},v2.2.0-healthy +evt_003673,u_0020,signup_completed,2026-06-07T20:01:00Z,u_0020_s01,ins_u_0020_002,{},v2.2.0-healthy +evt_003674,u_0658,signup_started,2026-06-07T20:02:00Z,u_0658_s01,ins_u_0658_001,{},v2.2.0-healthy +evt_003675,u_0107,onboarding_completed,2026-06-07T20:03:00Z,u_0107_s01,ins_u_0107_005,"{""completed_at"": ""2026-06-07T20:09:00Z""}",v2.2.0-healthy +evt_003676,u_0506,profile_saved,2026-06-07T20:04:00Z,u_0506_s01,ins_u_0506_003,{},v2.2.0-healthy +evt_003677,u_0506,error_shown,2026-06-07T20:05:00Z,u_0506_s01,ins_u_0506_004,"{""code"": ""onboarding_timeout""}",v2.2.0-healthy +evt_003678,u_0497,profile_saved,2026-06-07T20:06:00Z,u_0497_s01,ins_u_0497_003,{},v2.2.0-healthy +evt_003679,u_0506,onboarding_step_viewed,2026-06-07T20:07:00Z,u_0506_s01,ins_u_0506_005,{},v2.2.0-healthy +evt_003680,u_0658,signup_completed,2026-06-07T20:09:00Z,u_0658_s01,ins_u_0658_002,{},v2.2.0-healthy +evt_003681,u_0020,profile_saved,2026-06-07T20:10:00Z,u_0020_s01,ins_u_0020_003,{},v2.2.0-healthy +evt_003682,u_0497,onboarding_step_viewed,2026-06-07T20:10:00Z,u_0497_s01,ins_u_0497_004,{},v2.2.0-healthy +evt_003683,u_0497,feature_used,2026-06-07T20:13:00Z,u_0497_s01,ins_u_0497_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003684,u_0071,signup_started,2026-06-07T20:14:00Z,u_0071_s01,ins_u_0071_001,{},v2.2.0-healthy +evt_003685,u_0276,activation_completed,2026-06-07T20:15:00Z,u_0276_s01,ins_u_0276_006,{},v2.2.0-healthy +evt_003686,u_0020,onboarding_step_viewed,2026-06-07T20:16:00Z,u_0020_s01,ins_u_0020_004,{},v2.2.0-healthy +evt_003687,u_0658,profile_saved,2026-06-07T20:17:00Z,u_0658_s01,ins_u_0658_003,{},v2.2.0-healthy +evt_003688,u_0071,signup_completed,2026-06-07T20:19:00Z,u_0071_s01,ins_u_0071_002,{},v2.2.0-healthy +evt_003689,u_0293,signup_started,2026-06-07T20:19:00Z,u_0293_s01,ins_u_0293_001,{},v2.2.0-healthy +evt_003690,u_0506,feature_used,2026-06-07T20:21:00Z,u_0506_s01,ins_u_0506_006,"{""feature"": ""board""}",v2.2.0-healthy +evt_003691,u_0020,feature_used,2026-06-07T20:22:00Z,u_0020_s01,ins_u_0020_005,"{""feature"": ""board""}",v2.2.0-healthy +evt_003692,u_0658,onboarding_step_viewed,2026-06-07T20:23:00Z,u_0658_s01,ins_u_0658_004,{},v2.2.0-healthy +evt_003693,u_0107,activation_completed,2026-06-07T20:25:00Z,u_0107_s01,ins_u_0107_006,{},v2.2.0-healthy +evt_003694,u_0071,profile_saved,2026-06-07T20:26:00Z,u_0071_s01,ins_u_0071_003,{},v2.2.0-healthy +evt_003695,u_0293,signup_completed,2026-06-07T20:26:00Z,u_0293_s01,ins_u_0293_002,{},v2.2.0-healthy +evt_003696,u_0766,activation_completed,2026-06-07T20:27:00Z,u_0766_s01,ins_u_0766_006,{},v2.2.0-healthy +evt_003697,u_0162,signup_started,2026-06-07T20:29:00Z,u_0162_s01,ins_u_0162_001,{},v2.2.0-healthy +evt_003698,u_0428,return_visit,2026-06-07T20:29:00Z,u_0428_s02,ins_u_0428_007,{},v2.2.0-healthy +evt_003699,u_0071,onboarding_step_viewed,2026-06-07T20:30:00Z,u_0071_s01,ins_u_0071_004,{},v2.2.0-healthy +evt_003700,u_0269,signup_started,2026-06-07T20:30:00Z,u_0269_s01,ins_u_0269_001,{},v2.2.0-healthy +evt_003701,u_0497,onboarding_completed,2026-06-07T20:32:00Z,u_0497_s01,ins_u_0497_006,"{""completed_at"": ""2026-06-07T20:38:00Z""}",v2.2.0-healthy +evt_003702,u_0428,feature_used,2026-06-07T20:34:00Z,u_0428_s02,ins_u_0428_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003703,u_0269,signup_completed,2026-06-07T20:35:00Z,u_0269_s01,ins_u_0269_002,{},v2.2.0-healthy +evt_003704,u_0293,profile_saved,2026-06-07T20:36:00Z,u_0293_s01,ins_u_0293_003,{},v2.2.0-healthy +evt_003705,u_0162,signup_completed,2026-06-07T20:37:00Z,u_0162_s01,ins_u_0162_002,{},v2.2.0-healthy +evt_003706,u_0071,feature_used,2026-06-07T20:39:00Z,u_0071_s01,ins_u_0071_005,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003707,u_0293,onboarding_step_viewed,2026-06-07T20:41:00Z,u_0293_s01,ins_u_0293_004,{},v2.2.0-healthy +evt_003708,u_0162,session_abandoned,2026-06-07T20:42:00Z,u_0162_s01,ins_u_0162_003,{},v2.2.0-healthy +evt_003709,u_0269,session_abandoned,2026-06-07T20:43:00Z,u_0269_s01,ins_u_0269_003,{},v2.2.0-healthy +evt_003710,u_0599,signup_started,2026-06-07T20:46:00Z,u_0599_s01,ins_u_0599_001,{},v2.2.0-healthy +evt_003711,u_0020,onboarding_completed,2026-06-07T20:47:00Z,u_0020_s01,ins_u_0020_006,"{""completed_at"": ""2026-06-07T20:40:00Z""}",v2.2.0-healthy +evt_003712,u_0453,return_visit,2026-06-07T20:48:00Z,u_0453_s02,ins_u_0453_007,{},v2.2.0-healthy +evt_003713,u_0599,session_abandoned,2026-06-07T20:48:00Z,u_0599_s01,ins_u_0599_002,{},v2.2.0-healthy +evt_003714,u_0506,onboarding_completed,2026-06-07T20:49:00Z,u_0506_s01,ins_u_0506_007,"{""completed_at"": ""2026-06-07T20:38:00Z""}",v2.2.0-healthy +evt_003715,u_0764,signup_started,2026-06-07T20:59:00Z,u_0764_s01,ins_u_0764_001,{},v2.2.0-healthy +evt_003716,u_0658,onboarding_completed,2026-06-07T21:02:00Z,u_0658_s01,ins_u_0658_005,"{""completed_at"": ""2026-06-07T20:56:00Z""}",v2.2.0-healthy +evt_003717,u_0764,signup_completed,2026-06-07T21:06:00Z,u_0764_s01,ins_u_0764_002,{},v2.2.0-healthy +evt_003718,u_0293,onboarding_completed,2026-06-07T21:09:00Z,u_0293_s01,ins_u_0293_005,"{""completed_at"": ""2026-06-07T21:08:00Z""}",v2.2.0-healthy +evt_003719,u_0497,activation_completed,2026-06-07T21:10:00Z,u_0497_s01,ins_u_0497_007,{},v2.2.0-healthy +evt_003720,u_0764,session_abandoned,2026-06-07T21:11:00Z,u_0764_s01,ins_u_0764_003,{},v2.2.0-healthy +evt_003721,u_0071,activation_completed,2026-06-07T21:17:00Z,u_0071_s01,ins_u_0071_006,{},v2.2.0-healthy +evt_003722,u_0020,activation_completed,2026-06-07T21:26:00Z,u_0020_s01,ins_u_0020_007,{},v2.2.0-healthy +evt_003723,u_0709,return_visit,2026-06-07T23:19:00Z,u_0709_s02,ins_u_0709_006,{},v2.2.0-healthy +evt_003724,u_0112,return_visit,2026-06-08T02:02:00Z,u_0112_s02,ins_u_0112_008,{},v2.2.0-healthy +evt_003725,u_0112,feature_used,2026-06-08T02:07:00Z,u_0112_s02,ins_u_0112_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003726,u_0136,return_visit,2026-06-08T02:55:00Z,u_0136_s02,ins_u_0136_008,{},v2.2.0-healthy +evt_003727,u_0136,feature_used,2026-06-08T03:00:00Z,u_0136_s02,ins_u_0136_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003728,u_0015,return_visit,2026-06-08T03:02:00Z,u_0015_s02,ins_u_0015_006,{},v2.2.0-healthy +evt_003729,u_0308,return_visit,2026-06-08T03:59:00Z,u_0308_s02,ins_u_0308_009,{},v2.2.0-healthy +evt_003730,u_0707,return_visit,2026-06-08T04:02:00Z,u_0707_s02,ins_u_0707_007,{},v2.2.0-healthy +evt_003731,u_0707,feature_used,2026-06-08T04:07:00Z,u_0707_s02,ins_u_0707_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003732,u_0124,return_visit,2026-06-08T06:52:00Z,u_0124_s02,ins_u_0124_007,{},v2.2.0-healthy +evt_003733,u_0083,return_visit,2026-06-08T07:47:00Z,u_0083_s02,ins_u_0083_008,{},v2.2.0-healthy +evt_003734,u_0009,return_visit,2026-06-08T08:34:00Z,u_0009_s02,ins_u_0009_005,{},v2.2.0-healthy +evt_003735,u_0165,return_visit,2026-06-08T09:37:00Z,u_0165_s02,ins_u_0165_007,{},v2.2.0-healthy +evt_003736,u_0414,return_visit,2026-06-08T10:30:00Z,u_0414_s02,ins_u_0414_007,{},v2.2.0-healthy +evt_003737,u_0638,return_visit,2026-06-08T11:47:00Z,u_0638_s02,ins_u_0638_006,{},v2.2.0-healthy +evt_003738,u_0638,feature_used,2026-06-08T11:52:00Z,u_0638_s02,ins_u_0638_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003739,u_0212,return_visit,2026-06-08T18:25:00Z,u_0212_s02,ins_u_0212_009,{},v2.2.0-healthy +evt_003740,u_0131,return_visit,2026-06-08T22:07:00Z,u_0131_s02,ins_u_0131_007,{},v2.2.0-healthy +evt_003741,u_0131,feature_used,2026-06-08T22:12:00Z,u_0131_s02,ins_u_0131_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003742,u_0529,return_visit,2026-06-08T22:34:00Z,u_0529_s02,ins_u_0529_007,{},v2.2.0-healthy +evt_003743,u_0319,return_visit,2026-06-08T22:38:00Z,u_0319_s02,ins_u_0319_007,{},v2.2.0-healthy +evt_003744,u_0529,feature_used,2026-06-08T22:39:00Z,u_0529_s02,ins_u_0529_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003745,u_0264,return_visit,2026-06-08T23:30:00Z,u_0264_s02,ins_u_0264_007,{},v2.2.0-healthy +evt_003746,u_0204,return_visit,2026-06-08T23:41:00Z,u_0204_s02,ins_u_0204_006,{},v2.2.0-healthy +evt_003747,u_0370,return_visit,2026-06-08T23:43:00Z,u_0370_s02,ins_u_0370_006,{},v2.2.0-healthy +evt_003748,u_0370,feature_used,2026-06-08T23:48:00Z,u_0370_s02,ins_u_0370_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003749,u_0309,return_visit,2026-06-09T00:16:00Z,u_0309_s02,ins_u_0309_008,{},v2.2.0-healthy +evt_003750,u_0309,feature_used,2026-06-09T00:21:00Z,u_0309_s02,ins_u_0309_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003751,u_0684,return_visit,2026-06-09T01:27:00Z,u_0684_s02,ins_u_0684_007,{},v2.2.0-healthy +evt_003752,u_0111,return_visit,2026-06-09T01:37:00Z,u_0111_s02,ins_u_0111_007,{},v2.2.0-healthy +evt_003753,u_0111,feature_used,2026-06-09T01:42:00Z,u_0111_s02,ins_u_0111_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003754,u_0505,return_visit,2026-06-09T01:48:00Z,u_0505_s02,ins_u_0505_008,{},v2.2.0-healthy +evt_003755,u_0505,feature_used,2026-06-09T01:53:00Z,u_0505_s02,ins_u_0505_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003756,u_0208,return_visit,2026-06-09T03:55:00Z,u_0208_s02,ins_u_0208_008,{},v2.2.0-healthy +evt_003757,u_0208,feature_used,2026-06-09T04:00:00Z,u_0208_s02,ins_u_0208_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003758,u_0773,return_visit,2026-06-09T04:04:00Z,u_0773_s02,ins_u_0773_006,{},v2.2.0-healthy +evt_003759,u_0706,return_visit,2026-06-09T04:07:00Z,u_0706_s02,ins_u_0706_007,{},v2.2.0-healthy +evt_003760,u_0773,feature_used,2026-06-09T04:09:00Z,u_0773_s02,ins_u_0773_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003761,u_0706,feature_used,2026-06-09T04:12:00Z,u_0706_s02,ins_u_0706_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003762,u_0278,return_visit,2026-06-09T04:23:00Z,u_0278_s02,ins_u_0278_007,{},v2.2.0-healthy +evt_003763,u_0278,feature_used,2026-06-09T04:28:00Z,u_0278_s02,ins_u_0278_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003764,u_0392,return_visit,2026-06-09T05:57:00Z,u_0392_s02,ins_u_0392_006,{},v2.2.0-healthy +evt_003765,u_0557,return_visit,2026-06-09T07:40:00Z,u_0557_s02,ins_u_0557_008,{},v2.2.0-healthy +evt_003766,u_0558,return_visit,2026-06-09T07:49:00Z,u_0558_s02,ins_u_0558_008,{},v2.2.0-healthy +evt_003767,u_0558,feature_used,2026-06-09T07:54:00Z,u_0558_s02,ins_u_0558_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003768,u_0621,return_visit,2026-06-09T08:27:00Z,u_0621_s02,ins_u_0621_007,{},v2.2.0-healthy +evt_003769,u_0621,feature_used,2026-06-09T08:32:00Z,u_0621_s02,ins_u_0621_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003770,u_0206,return_visit,2026-06-09T09:12:00Z,u_0206_s02,ins_u_0206_008,{},v2.2.0-healthy +evt_003771,u_0206,feature_used,2026-06-09T09:17:00Z,u_0206_s02,ins_u_0206_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003772,u_0539,return_visit,2026-06-09T13:53:00Z,u_0539_s02,ins_u_0539_008,{},v2.2.0-healthy +evt_003773,u_0539,feature_used,2026-06-09T13:58:00Z,u_0539_s02,ins_u_0539_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003774,u_0004,return_visit,2026-06-09T14:58:00Z,u_0004_s02,ins_u_0004_007,{},v2.2.0-healthy +evt_003775,u_0004,feature_used,2026-06-09T15:03:00Z,u_0004_s02,ins_u_0004_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003776,u_0282,return_visit,2026-06-09T18:45:00Z,u_0282_s02,ins_u_0282_006,{},v2.2.0-healthy +evt_003777,u_0282,feature_used,2026-06-09T18:50:00Z,u_0282_s02,ins_u_0282_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003778,u_0175,return_visit,2026-06-09T20:21:00Z,u_0175_s02,ins_u_0175_008,{},v2.2.0-healthy +evt_003779,u_0230,return_visit,2026-06-09T22:09:00Z,u_0230_s02,ins_u_0230_007,{},v2.2.0-healthy +evt_003780,u_0230,feature_used,2026-06-09T22:14:00Z,u_0230_s02,ins_u_0230_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003781,u_0547,return_visit,2026-06-09T22:37:00Z,u_0547_s02,ins_u_0547_008,{},v2.2.0-healthy +evt_003782,u_0299,return_visit,2026-06-09T22:42:00Z,u_0299_s02,ins_u_0299_006,{},v2.2.0-healthy +evt_003783,u_0547,feature_used,2026-06-09T22:42:00Z,u_0547_s02,ins_u_0547_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003784,u_0623,return_visit,2026-06-09T23:31:00Z,u_0623_s02,ins_u_0623_007,{},v2.2.0-healthy +evt_003785,u_0623,feature_used,2026-06-09T23:36:00Z,u_0623_s02,ins_u_0623_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003786,u_0255,return_visit,2026-06-09T23:50:00Z,u_0255_s02,ins_u_0255_005,{},v2.2.0-healthy +evt_003787,u_0635,return_visit,2026-06-10T00:07:00Z,u_0635_s02,ins_u_0635_007,{},v2.2.0-healthy +evt_003788,u_0680,return_visit,2026-06-10T00:27:00Z,u_0680_s02,ins_u_0680_006,{},v2.2.0-healthy +evt_003789,u_0705,return_visit,2026-06-10T01:04:00Z,u_0705_s02,ins_u_0705_006,{},v2.2.0-healthy +evt_003790,u_0372,return_visit,2026-06-10T01:17:00Z,u_0372_s02,ins_u_0372_006,{},v2.2.0-healthy +evt_003791,u_0372,feature_used,2026-06-10T01:22:00Z,u_0372_s02,ins_u_0372_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003792,u_0779,return_visit,2026-06-10T01:38:00Z,u_0779_s02,ins_u_0779_007,{},v2.2.0-healthy +evt_003793,u_0069,return_visit,2026-06-10T01:55:00Z,u_0069_s02,ins_u_0069_007,{},v2.2.0-healthy +evt_003794,u_0528,return_visit,2026-06-10T02:11:00Z,u_0528_s02,ins_u_0528_008,{},v2.2.0-healthy +evt_003795,u_0286,return_visit,2026-06-10T02:40:00Z,u_0286_s02,ins_u_0286_006,{},v2.2.0-healthy +evt_003796,u_0286,feature_used,2026-06-10T02:45:00Z,u_0286_s02,ins_u_0286_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003797,u_0332,return_visit,2026-06-10T02:46:00Z,u_0332_s02,ins_u_0332_006,{},v2.2.0-healthy +evt_003798,u_0077,return_visit,2026-06-10T03:42:00Z,u_0077_s02,ins_u_0077_007,{},v2.2.0-healthy +evt_003799,u_0077,feature_used,2026-06-10T03:47:00Z,u_0077_s02,ins_u_0077_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003800,u_0399,return_visit,2026-06-10T04:02:00Z,u_0399_s02,ins_u_0399_006,{},v2.2.0-healthy +evt_003801,u_0502,return_visit,2026-06-10T05:26:00Z,u_0502_s02,ins_u_0502_007,{},v2.2.0-healthy +evt_003802,u_0502,feature_used,2026-06-10T05:31:00Z,u_0502_s02,ins_u_0502_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003803,u_0644,return_visit,2026-06-10T06:10:00Z,u_0644_s02,ins_u_0644_005,{},v2.2.0-healthy +evt_003804,u_0180,return_visit,2026-06-10T06:24:00Z,u_0180_s02,ins_u_0180_007,{},v2.2.0-healthy +evt_003805,u_0211,return_visit,2026-06-10T06:29:00Z,u_0211_s02,ins_u_0211_007,{},v2.2.0-healthy +evt_003806,u_0448,return_visit,2026-06-10T07:48:00Z,u_0448_s02,ins_u_0448_007,{},v2.2.0-healthy +evt_003807,u_0448,feature_used,2026-06-10T07:53:00Z,u_0448_s02,ins_u_0448_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003808,u_0758,return_visit,2026-06-10T08:14:00Z,u_0758_s02,ins_u_0758_008,{},v2.2.0-healthy +evt_003809,u_0203,return_visit,2026-06-10T08:17:00Z,u_0203_s02,ins_u_0203_007,{},v2.2.0-healthy +evt_003810,u_0203,feature_used,2026-06-10T08:22:00Z,u_0203_s02,ins_u_0203_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003811,u_0685,return_visit,2026-06-10T08:35:00Z,u_0685_s02,ins_u_0685_008,{},v2.2.0-healthy +evt_003812,u_0318,return_visit,2026-06-10T09:28:00Z,u_0318_s02,ins_u_0318_007,{},v2.2.0-healthy +evt_003813,u_0318,feature_used,2026-06-10T09:33:00Z,u_0318_s02,ins_u_0318_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003814,u_0016,return_visit,2026-06-10T10:28:00Z,u_0016_s02,ins_u_0016_008,{},v2.2.0-healthy +evt_003815,u_0016,feature_used,2026-06-10T10:33:00Z,u_0016_s02,ins_u_0016_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003816,u_0417,return_visit,2026-06-10T10:42:00Z,u_0417_s02,ins_u_0417_007,{},v2.2.0-healthy +evt_003817,u_0277,return_visit,2026-06-10T10:55:00Z,u_0277_s02,ins_u_0277_007,{},v2.2.0-healthy +evt_003818,u_0277,feature_used,2026-06-10T11:00:00Z,u_0277_s02,ins_u_0277_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003819,u_0347,return_visit,2026-06-10T11:17:00Z,u_0347_s02,ins_u_0347_006,{},v2.2.0-healthy +evt_003820,u_0080,return_visit,2026-06-10T11:37:00Z,u_0080_s02,ins_u_0080_006,{},v2.2.0-healthy +evt_003821,u_0133,return_visit,2026-06-10T12:15:00Z,u_0133_s02,ins_u_0133_007,{},v2.2.0-healthy +evt_003822,u_0121,return_visit,2026-06-10T12:42:00Z,u_0121_s02,ins_u_0121_007,{},v2.2.0-healthy +evt_003823,u_0471,return_visit,2026-06-10T14:59:00Z,u_0471_s02,ins_u_0471_007,{},v2.2.0-healthy +evt_003824,u_0584,return_visit,2026-06-10T19:36:00Z,u_0584_s02,ins_u_0584_006,{},v2.2.0-healthy +evt_003825,u_0584,feature_used,2026-06-10T19:41:00Z,u_0584_s02,ins_u_0584_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003826,u_0157,return_visit,2026-06-10T21:52:00Z,u_0157_s02,ins_u_0157_006,{},v2.2.0-healthy +evt_003827,u_0157,feature_used,2026-06-10T21:57:00Z,u_0157_s02,ins_u_0157_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003828,u_0544,return_visit,2026-06-10T22:17:00Z,u_0544_s02,ins_u_0544_007,{},v2.2.0-healthy +evt_003829,u_0544,feature_used,2026-06-10T22:22:00Z,u_0544_s02,ins_u_0544_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003830,u_0568,return_visit,2026-06-10T23:00:00Z,u_0568_s02,ins_u_0568_007,{},v2.2.0-healthy +evt_003831,u_0568,feature_used,2026-06-10T23:05:00Z,u_0568_s02,ins_u_0568_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003832,u_0041,return_visit,2026-06-11T00:06:00Z,u_0041_s02,ins_u_0041_006,{},v2.2.0-healthy +evt_003833,u_0041,feature_used,2026-06-11T00:11:00Z,u_0041_s02,ins_u_0041_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003834,u_0075,return_visit,2026-06-11T00:33:00Z,u_0075_s02,ins_u_0075_007,{},v2.2.0-healthy +evt_003835,u_0185,return_visit,2026-06-11T00:53:00Z,u_0185_s02,ins_u_0185_007,{},v2.2.0-healthy +evt_003836,u_0615,return_visit,2026-06-11T01:02:00Z,u_0615_s02,ins_u_0615_007,{},v2.2.0-healthy +evt_003837,u_0362,return_visit,2026-06-11T01:08:00Z,u_0362_s02,ins_u_0362_007,{},v2.2.0-healthy +evt_003838,u_0716,return_visit,2026-06-11T01:09:00Z,u_0716_s02,ins_u_0716_007,{},v2.2.0-healthy +evt_003839,u_0716,feature_used,2026-06-11T01:14:00Z,u_0716_s02,ins_u_0716_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003840,u_0160,return_visit,2026-06-11T01:21:00Z,u_0160_s02,ins_u_0160_006,{},v2.2.0-healthy +evt_003841,u_0048,return_visit,2026-06-11T01:23:00Z,u_0048_s02,ins_u_0048_007,{},v2.2.0-healthy +evt_003842,u_0373,return_visit,2026-06-11T01:27:00Z,u_0373_s02,ins_u_0373_007,{},v2.2.0-healthy +evt_003843,u_0037,return_visit,2026-06-11T02:23:00Z,u_0037_s02,ins_u_0037_005,{},v2.2.0-healthy +evt_003844,u_0086,return_visit,2026-06-11T03:29:00Z,u_0086_s02,ins_u_0086_008,{},v2.2.0-healthy +evt_003845,u_0086,feature_used,2026-06-11T03:34:00Z,u_0086_s02,ins_u_0086_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003846,u_0460,return_visit,2026-06-11T05:19:00Z,u_0460_s02,ins_u_0460_006,{},v2.2.0-healthy +evt_003847,u_0460,feature_used,2026-06-11T05:24:00Z,u_0460_s02,ins_u_0460_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003848,u_0088,return_visit,2026-06-11T06:50:00Z,u_0088_s02,ins_u_0088_006,{},v2.2.0-healthy +evt_003849,u_0229,return_visit,2026-06-11T07:50:00Z,u_0229_s02,ins_u_0229_008,{},v2.2.0-healthy +evt_003850,u_0229,feature_used,2026-06-11T07:55:00Z,u_0229_s02,ins_u_0229_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003851,u_0250,return_visit,2026-06-11T08:16:00Z,u_0250_s02,ins_u_0250_008,{},v2.2.0-healthy +evt_003852,u_0250,feature_used,2026-06-11T08:21:00Z,u_0250_s02,ins_u_0250_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003853,u_0100,return_visit,2026-06-11T09:22:00Z,u_0100_s02,ins_u_0100_007,{},v2.2.0-healthy +evt_003854,u_0134,return_visit,2026-06-11T09:28:00Z,u_0134_s02,ins_u_0134_007,{},v2.2.0-healthy +evt_003855,u_0072,return_visit,2026-06-11T09:31:00Z,u_0072_s02,ins_u_0072_007,{},v2.2.0-healthy +evt_003856,u_0134,feature_used,2026-06-11T09:33:00Z,u_0134_s02,ins_u_0134_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003857,u_0072,feature_used,2026-06-11T09:36:00Z,u_0072_s02,ins_u_0072_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003858,u_0549,return_visit,2026-06-11T11:50:00Z,u_0549_s02,ins_u_0549_007,{},v2.2.0-healthy +evt_003859,u_0068,return_visit,2026-06-11T21:37:00Z,u_0068_s02,ins_u_0068_008,{},v2.2.0-healthy +evt_003860,u_0068,feature_used,2026-06-11T21:42:00Z,u_0068_s02,ins_u_0068_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003861,u_0155,return_visit,2026-06-12T02:32:00Z,u_0155_s02,ins_u_0155_008,{},v2.2.0-healthy +evt_003862,u_0155,feature_used,2026-06-12T02:37:00Z,u_0155_s02,ins_u_0155_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003863,u_0667,return_visit,2026-06-12T02:48:00Z,u_0667_s02,ins_u_0667_007,{},v2.2.0-healthy +evt_003864,u_0733,return_visit,2026-06-12T02:54:00Z,u_0733_s02,ins_u_0733_007,{},v2.2.0-healthy +evt_003865,u_0268,return_visit,2026-06-12T03:03:00Z,u_0268_s02,ins_u_0268_007,{},v2.2.0-healthy +evt_003866,u_0396,return_visit,2026-06-12T03:08:00Z,u_0396_s02,ins_u_0396_007,{},v2.2.0-healthy +evt_003867,u_0396,feature_used,2026-06-12T03:13:00Z,u_0396_s02,ins_u_0396_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003868,u_0108,return_visit,2026-06-12T03:16:00Z,u_0108_s02,ins_u_0108_006,{},v2.2.0-healthy +evt_003869,u_0108,feature_used,2026-06-12T03:21:00Z,u_0108_s02,ins_u_0108_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003870,u_0521,return_visit,2026-06-12T04:12:00Z,u_0521_s02,ins_u_0521_007,{},v2.2.0-healthy +evt_003871,u_0146,return_visit,2026-06-12T04:27:00Z,u_0146_s02,ins_u_0146_008,{},v2.2.0-healthy +evt_003872,u_0775,return_visit,2026-06-12T05:11:00Z,u_0775_s02,ins_u_0775_008,{},v2.2.0-healthy +evt_003873,u_0775,feature_used,2026-06-12T05:16:00Z,u_0775_s02,ins_u_0775_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003874,u_0698,return_visit,2026-06-12T05:19:00Z,u_0698_s02,ins_u_0698_006,{},v2.2.0-healthy +evt_003875,u_0194,return_visit,2026-06-12T05:49:00Z,u_0194_s02,ins_u_0194_007,{},v2.2.0-healthy +evt_003876,u_0656,return_visit,2026-06-12T06:02:00Z,u_0656_s02,ins_u_0656_007,{},v2.2.0-healthy +evt_003877,u_0487,return_visit,2026-06-12T06:24:00Z,u_0487_s02,ins_u_0487_008,{},v2.2.0-healthy +evt_003878,u_0426,return_visit,2026-06-12T07:29:00Z,u_0426_s02,ins_u_0426_007,{},v2.2.0-healthy +evt_003879,u_0648,return_visit,2026-06-12T07:37:00Z,u_0648_s02,ins_u_0648_007,{},v2.2.0-healthy +evt_003880,u_0648,feature_used,2026-06-12T07:42:00Z,u_0648_s02,ins_u_0648_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003881,u_0548,return_visit,2026-06-12T07:43:00Z,u_0548_s02,ins_u_0548_006,{},v2.2.0-healthy +evt_003882,u_0169,return_visit,2026-06-12T07:48:00Z,u_0169_s02,ins_u_0169_007,{},v2.2.0-healthy +evt_003883,u_0548,feature_used,2026-06-12T07:48:00Z,u_0548_s02,ins_u_0548_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003884,u_0169,feature_used,2026-06-12T07:53:00Z,u_0169_s02,ins_u_0169_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003885,u_0582,return_visit,2026-06-12T08:04:00Z,u_0582_s02,ins_u_0582_008,{},v2.2.0-healthy +evt_003886,u_0582,feature_used,2026-06-12T08:09:00Z,u_0582_s02,ins_u_0582_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003887,u_0182,return_visit,2026-06-12T09:11:00Z,u_0182_s02,ins_u_0182_007,{},v2.2.0-healthy +evt_003888,u_0182,feature_used,2026-06-12T09:16:00Z,u_0182_s02,ins_u_0182_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003889,u_0351,return_visit,2026-06-12T14:16:00Z,u_0351_s02,ins_u_0351_006,{},v2.2.0-healthy +evt_003890,u_0293,return_visit,2026-06-12T14:19:00Z,u_0293_s02,ins_u_0293_006,{},v2.2.0-healthy +evt_003891,u_0351,feature_used,2026-06-12T14:21:00Z,u_0351_s02,ins_u_0351_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003892,u_0293,feature_used,2026-06-12T14:24:00Z,u_0293_s02,ins_u_0293_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003893,u_0693,return_visit,2026-06-12T17:09:00Z,u_0693_s02,ins_u_0693_007,{},v2.2.0-healthy +evt_003894,u_0149,return_visit,2026-06-12T19:36:00Z,u_0149_s02,ins_u_0149_008,{},v2.2.0-healthy +evt_003895,u_0149,feature_used,2026-06-12T19:41:00Z,u_0149_s02,ins_u_0149_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003896,u_0024,return_visit,2026-06-12T21:25:00Z,u_0024_s02,ins_u_0024_008,{},v2.2.0-healthy +evt_003897,u_0440,return_visit,2026-06-12T22:14:00Z,u_0440_s02,ins_u_0440_006,{},v2.2.0-healthy +evt_003898,u_0440,feature_used,2026-06-12T22:19:00Z,u_0440_s02,ins_u_0440_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003899,u_0735,return_visit,2026-06-12T23:57:00Z,u_0735_s02,ins_u_0735_005,{},v2.2.0-healthy +evt_003900,u_0641,return_visit,2026-06-13T04:24:00Z,u_0641_s02,ins_u_0641_008,{},v2.2.0-healthy +evt_003901,u_0641,feature_used,2026-06-13T04:29:00Z,u_0641_s02,ins_u_0641_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003902,u_0681,return_visit,2026-06-13T04:36:00Z,u_0681_s02,ins_u_0681_005,{},v2.2.0-healthy +evt_003903,u_0681,feature_used,2026-06-13T04:41:00Z,u_0681_s02,ins_u_0681_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003904,u_0377,return_visit,2026-06-13T05:14:00Z,u_0377_s02,ins_u_0377_006,{},v2.2.0-healthy +evt_003905,u_0044,return_visit,2026-06-13T06:32:00Z,u_0044_s02,ins_u_0044_007,{},v2.2.0-healthy +evt_003906,u_0251,return_visit,2026-06-13T06:33:00Z,u_0251_s02,ins_u_0251_007,{},v2.2.0-healthy +evt_003907,u_0645,return_visit,2026-06-13T06:36:00Z,u_0645_s02,ins_u_0645_006,{},v2.2.0-healthy +evt_003908,u_0587,return_visit,2026-06-13T06:38:00Z,u_0587_s02,ins_u_0587_007,{},v2.2.0-healthy +evt_003909,u_0587,feature_used,2026-06-13T06:43:00Z,u_0587_s02,ins_u_0587_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003910,u_0438,return_visit,2026-06-13T07:15:00Z,u_0438_s02,ins_u_0438_009,{},v2.2.0-healthy +evt_003911,u_0438,feature_used,2026-06-13T07:20:00Z,u_0438_s02,ins_u_0438_010,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003912,u_0154,return_visit,2026-06-13T07:42:00Z,u_0154_s02,ins_u_0154_006,{},v2.2.0-healthy +evt_003913,u_0154,feature_used,2026-06-13T07:47:00Z,u_0154_s02,ins_u_0154_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003914,u_0140,return_visit,2026-06-13T08:01:00Z,u_0140_s02,ins_u_0140_007,{},v2.2.0-healthy +evt_003915,u_0525,return_visit,2026-06-13T08:01:00Z,u_0525_s02,ins_u_0525_008,{},v2.2.0-healthy +evt_003916,u_0525,feature_used,2026-06-13T08:06:00Z,u_0525_s02,ins_u_0525_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003917,u_0101,return_visit,2026-06-13T09:17:00Z,u_0101_s02,ins_u_0101_006,{},v2.2.0-healthy +evt_003918,u_0188,return_visit,2026-06-13T12:04:00Z,u_0188_s02,ins_u_0188_007,{},v2.2.0-healthy +evt_003919,u_0053,return_visit,2026-06-13T12:22:00Z,u_0053_s02,ins_u_0053_008,{},v2.2.0-healthy +evt_003920,u_0717,return_visit,2026-06-13T20:28:00Z,u_0717_s02,ins_u_0717_007,{},v2.2.0-healthy +evt_003921,u_0717,feature_used,2026-06-13T20:33:00Z,u_0717_s02,ins_u_0717_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003922,u_0510,return_visit,2026-06-13T22:53:00Z,u_0510_s02,ins_u_0510_006,{},v2.2.0-healthy +evt_003923,u_0315,return_visit,2026-06-14T01:23:00Z,u_0315_s02,ins_u_0315_008,{},v2.2.0-healthy +evt_003924,u_0315,feature_used,2026-06-14T01:28:00Z,u_0315_s02,ins_u_0315_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003925,u_0602,return_visit,2026-06-14T01:55:00Z,u_0602_s02,ins_u_0602_007,{},v2.2.0-healthy +evt_003926,u_0602,feature_used,2026-06-14T02:00:00Z,u_0602_s02,ins_u_0602_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003927,u_0085,return_visit,2026-06-14T03:52:00Z,u_0085_s02,ins_u_0085_008,{},v2.2.0-healthy +evt_003928,u_0085,feature_used,2026-06-14T03:57:00Z,u_0085_s02,ins_u_0085_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003929,u_0591,return_visit,2026-06-14T04:05:00Z,u_0591_s02,ins_u_0591_006,{},v2.2.0-healthy +evt_003930,u_0591,feature_used,2026-06-14T04:10:00Z,u_0591_s02,ins_u_0591_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003931,u_0636,return_visit,2026-06-14T05:39:00Z,u_0636_s02,ins_u_0636_007,{},v2.2.0-healthy +evt_003932,u_0636,feature_used,2026-06-14T05:44:00Z,u_0636_s02,ins_u_0636_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003933,u_0103,return_visit,2026-06-14T05:45:00Z,u_0103_s02,ins_u_0103_006,{},v2.2.0-healthy +evt_003934,u_0103,feature_used,2026-06-14T05:50:00Z,u_0103_s02,ins_u_0103_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003935,u_0325,return_visit,2026-06-14T07:34:00Z,u_0325_s02,ins_u_0325_005,{},v2.2.0-healthy +evt_003936,u_0265,return_visit,2026-06-14T07:52:00Z,u_0265_s02,ins_u_0265_007,{},v2.2.0-healthy +evt_003937,u_0620,return_visit,2026-06-14T08:22:00Z,u_0620_s02,ins_u_0620_006,{},v2.2.0-healthy +evt_003938,u_0435,return_visit,2026-06-14T10:41:00Z,u_0435_s02,ins_u_0435_007,{},v2.2.0-healthy +evt_003939,u_0726,return_visit,2026-06-15T04:15:00Z,u_0726_s02,ins_u_0726_008,{},v2.2.0-healthy +evt_003940,u_0173,return_visit,2026-06-15T05:04:00Z,u_0173_s02,ins_u_0173_008,{},v2.2.0-healthy +evt_003941,u_0703,return_visit,2026-06-15T05:55:00Z,u_0703_s02,ins_u_0703_006,{},v2.2.0-healthy +evt_003942,u_0703,feature_used,2026-06-15T06:00:00Z,u_0703_s02,ins_u_0703_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003943,u_0122,return_visit,2026-06-15T06:31:00Z,u_0122_s02,ins_u_0122_007,{},v2.2.0-healthy +evt_003944,u_0518,return_visit,2026-06-15T10:06:00Z,u_0518_s02,ins_u_0518_006,{},v2.2.0-healthy +evt_003945,u_0518,feature_used,2026-06-15T10:11:00Z,u_0518_s02,ins_u_0518_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003946,u_0333,return_visit,2026-06-15T19:33:00Z,u_0333_s02,ins_u_0333_008,{},v2.2.0-healthy +evt_003947,u_0333,feature_used,2026-06-15T19:38:00Z,u_0333_s02,ins_u_0333_009,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003948,u_0798,return_visit,2026-06-16T01:25:00Z,u_0798_s02,ins_u_0798_007,{},v2.2.0-healthy +evt_003949,u_0144,return_visit,2026-06-16T02:36:00Z,u_0144_s02,ins_u_0144_007,{},v2.2.0-healthy +evt_003950,u_0614,return_visit,2026-06-16T03:11:00Z,u_0614_s02,ins_u_0614_005,{},v2.2.0-healthy +evt_003951,u_0614,feature_used,2026-06-16T03:16:00Z,u_0614_s02,ins_u_0614_006,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003952,u_0513,return_visit,2026-06-16T03:17:00Z,u_0513_s02,ins_u_0513_007,{},v2.2.0-healthy +evt_003953,u_0546,return_visit,2026-06-16T03:56:00Z,u_0546_s02,ins_u_0546_006,{},v2.2.0-healthy +evt_003954,u_0297,return_visit,2026-06-16T04:12:00Z,u_0297_s02,ins_u_0297_007,{},v2.2.0-healthy +evt_003955,u_0418,return_visit,2026-06-16T04:42:00Z,u_0418_s02,ins_u_0418_007,{},v2.2.0-healthy +evt_003956,u_0107,return_visit,2026-06-16T06:22:00Z,u_0107_s02,ins_u_0107_007,{},v2.2.0-healthy +evt_003957,u_0107,feature_used,2026-06-16T06:27:00Z,u_0107_s02,ins_u_0107_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003958,u_0248,return_visit,2026-06-16T07:49:00Z,u_0248_s02,ins_u_0248_006,{},v2.2.0-healthy +evt_003959,u_0450,return_visit,2026-06-16T08:44:00Z,u_0450_s02,ins_u_0450_008,{},v2.2.0-healthy +evt_003960,u_0256,return_visit,2026-06-16T09:10:00Z,u_0256_s02,ins_u_0256_007,{},v2.2.0-healthy +evt_003961,u_0658,return_visit,2026-06-16T15:02:00Z,u_0658_s02,ins_u_0658_006,{},v2.2.0-healthy +evt_003962,u_0658,feature_used,2026-06-16T15:07:00Z,u_0658_s02,ins_u_0658_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003963,u_0685,return_visit,2026-06-17T02:35:00Z,u_0685_s03,ins_u_0685_009,{},v2.2.0-healthy +evt_003964,u_0685,feature_used,2026-06-17T02:39:00Z,u_0685_s03,ins_u_0685_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_003965,u_0661,return_visit,2026-06-17T03:12:00Z,u_0661_s03,ins_u_0661_007,{},v2.2.0-healthy +evt_003966,u_0661,feature_used,2026-06-17T03:16:00Z,u_0661_s03,ins_u_0661_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_003967,u_0766,return_visit,2026-06-17T05:14:00Z,u_0766_s02,ins_u_0766_007,{},v2.2.0-healthy +evt_003968,u_0766,feature_used,2026-06-17T05:19:00Z,u_0766_s02,ins_u_0766_008,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003969,u_0783,return_visit,2026-06-17T06:14:00Z,u_0783_s03,ins_u_0783_009,{},v2.2.0-healthy +evt_003970,u_0783,feature_used,2026-06-17T06:18:00Z,u_0783_s03,ins_u_0783_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_003971,u_0296,return_visit,2026-06-17T06:25:00Z,u_0296_s02,ins_u_0296_006,{},v2.2.0-healthy +evt_003972,u_0296,feature_used,2026-06-17T06:30:00Z,u_0296_s02,ins_u_0296_007,"{""feature"": ""insights""}",v2.2.0-healthy +evt_003973,u_0351,return_visit,2026-06-17T09:16:00Z,u_0351_s03,ins_u_0351_008,{},v2.2.0-healthy +evt_003974,u_0351,feature_used,2026-06-17T09:20:00Z,u_0351_s03,ins_u_0351_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_003975,u_0428,return_visit,2026-06-17T23:29:00Z,u_0428_s03,ins_u_0428_009,{},v2.2.0-healthy +evt_003976,u_0428,feature_used,2026-06-17T23:33:00Z,u_0428_s03,ins_u_0428_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_003977,u_0170,return_visit,2026-06-17T23:59:00Z,u_0170_s03,ins_u_0170_007,{},v2.2.0-healthy +evt_003978,u_0170,feature_used,2026-06-18T00:03:00Z,u_0170_s03,ins_u_0170_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_003979,u_0253,return_visit,2026-06-18T04:47:00Z,u_0253_s03,ins_u_0253_008,{},v2.2.0-healthy +evt_003980,u_0253,feature_used,2026-06-18T04:51:00Z,u_0253_s03,ins_u_0253_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_003981,u_0016,return_visit,2026-06-18T07:28:00Z,u_0016_s03,ins_u_0016_010,{},v2.2.0-healthy +evt_003982,u_0016,feature_used,2026-06-18T07:32:00Z,u_0016_s03,ins_u_0016_011,"{""feature"": ""board""}",v2.2.0-healthy +evt_003983,u_0769,return_visit,2026-06-18T08:08:00Z,u_0769_s03,ins_u_0769_007,{},v2.2.0-healthy +evt_003984,u_0769,feature_used,2026-06-18T08:12:00Z,u_0769_s03,ins_u_0769_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_003985,u_0015,return_visit,2026-06-18T19:02:00Z,u_0015_s03,ins_u_0015_007,{},v2.2.0-healthy +evt_003986,u_0015,feature_used,2026-06-18T19:06:00Z,u_0015_s03,ins_u_0015_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_003987,u_0371,return_visit,2026-06-18T20:09:00Z,u_0371_s03,ins_u_0371_009,{},v2.2.0-healthy +evt_003988,u_0371,feature_used,2026-06-18T20:13:00Z,u_0371_s03,ins_u_0371_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_003989,u_0110,return_visit,2026-06-18T23:56:00Z,u_0110_s03,ins_u_0110_006,{},v2.2.0-healthy +evt_003990,u_0110,feature_used,2026-06-19T00:00:00Z,u_0110_s03,ins_u_0110_007,"{""feature"": ""board""}",v2.2.0-healthy +evt_003991,u_0229,return_visit,2026-06-19T03:50:00Z,u_0229_s03,ins_u_0229_010,{},v2.2.0-healthy +evt_003992,u_0229,feature_used,2026-06-19T03:54:00Z,u_0229_s03,ins_u_0229_011,"{""feature"": ""board""}",v2.2.0-healthy +evt_003993,u_0730,return_visit,2026-06-19T04:39:00Z,u_0730_s03,ins_u_0730_008,{},v2.2.0-healthy +evt_003994,u_0730,feature_used,2026-06-19T04:43:00Z,u_0730_s03,ins_u_0730_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_003995,u_0480,return_visit,2026-06-19T06:45:00Z,u_0480_s03,ins_u_0480_007,{},v2.2.0-healthy +evt_003996,u_0480,feature_used,2026-06-19T06:49:00Z,u_0480_s03,ins_u_0480_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_003997,u_0142,return_visit,2026-06-20T00:23:00Z,u_0142_s03,ins_u_0142_008,{},v2.2.0-healthy +evt_003998,u_0142,feature_used,2026-06-20T00:27:00Z,u_0142_s03,ins_u_0142_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_003999,u_0208,return_visit,2026-06-20T01:55:00Z,u_0208_s03,ins_u_0208_010,{},v2.2.0-healthy +evt_004000,u_0208,feature_used,2026-06-20T01:59:00Z,u_0208_s03,ins_u_0208_011,"{""feature"": ""board""}",v2.2.0-healthy +evt_004001,u_0627,return_visit,2026-06-20T06:37:00Z,u_0627_s03,ins_u_0627_008,{},v2.2.0-healthy +evt_004002,u_0627,feature_used,2026-06-20T06:41:00Z,u_0627_s03,ins_u_0627_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004003,u_0396,return_visit,2026-06-20T09:08:00Z,u_0396_s03,ins_u_0396_009,{},v2.2.0-healthy +evt_004004,u_0396,feature_used,2026-06-20T09:12:00Z,u_0396_s03,ins_u_0396_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_004005,u_0781,return_visit,2026-06-20T21:23:00Z,u_0781_s03,ins_u_0781_008,{},v2.2.0-healthy +evt_004006,u_0781,feature_used,2026-06-20T21:27:00Z,u_0781_s03,ins_u_0781_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004007,u_0626,return_visit,2026-06-20T22:02:00Z,u_0626_s03,ins_u_0626_008,{},v2.2.0-healthy +evt_004008,u_0626,feature_used,2026-06-20T22:06:00Z,u_0626_s03,ins_u_0626_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004009,u_0706,return_visit,2026-06-20T23:07:00Z,u_0706_s03,ins_u_0706_009,{},v2.2.0-healthy +evt_004010,u_0706,feature_used,2026-06-20T23:11:00Z,u_0706_s03,ins_u_0706_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_004011,u_0651,return_visit,2026-06-21T00:37:00Z,u_0651_s03,ins_u_0651_007,{},v2.2.0-healthy +evt_004012,u_0651,feature_used,2026-06-21T00:41:00Z,u_0651_s03,ins_u_0651_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_004013,u_0131,return_visit,2026-06-21T01:07:00Z,u_0131_s03,ins_u_0131_009,{},v2.2.0-healthy +evt_004014,u_0131,feature_used,2026-06-21T01:11:00Z,u_0131_s03,ins_u_0131_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_004015,u_0634,return_visit,2026-06-21T01:51:00Z,u_0634_s03,ins_u_0634_007,{},v2.2.0-healthy +evt_004016,u_0634,feature_used,2026-06-21T01:55:00Z,u_0634_s03,ins_u_0634_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_004017,u_0520,return_visit,2026-06-21T02:04:00Z,u_0520_s03,ins_u_0520_007,{},v2.2.0-healthy +evt_004018,u_0520,feature_used,2026-06-21T02:08:00Z,u_0520_s03,ins_u_0520_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_004019,u_0448,return_visit,2026-06-21T09:48:00Z,u_0448_s03,ins_u_0448_009,{},v2.2.0-healthy +evt_004020,u_0448,feature_used,2026-06-21T09:52:00Z,u_0448_s03,ins_u_0448_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_004021,u_0474,return_visit,2026-06-21T20:28:00Z,u_0474_s03,ins_u_0474_008,{},v2.2.0-healthy +evt_004022,u_0474,feature_used,2026-06-21T20:32:00Z,u_0474_s03,ins_u_0474_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004023,u_0306,return_visit,2026-06-21T23:59:00Z,u_0306_s03,ins_u_0306_008,{},v2.2.0-healthy +evt_004024,u_0306,feature_used,2026-06-22T00:03:00Z,u_0306_s03,ins_u_0306_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004025,u_0473,return_visit,2026-06-22T01:40:00Z,u_0473_s03,ins_u_0473_008,{},v2.2.0-healthy +evt_004026,u_0473,feature_used,2026-06-22T01:44:00Z,u_0473_s03,ins_u_0473_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004027,u_0272,return_visit,2026-06-22T03:46:00Z,u_0272_s03,ins_u_0272_007,{},v2.2.0-healthy +evt_004028,u_0272,feature_used,2026-06-22T03:50:00Z,u_0272_s03,ins_u_0272_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_004029,u_0189,return_visit,2026-06-22T05:05:00Z,u_0189_s03,ins_u_0189_008,{},v2.2.0-healthy +evt_004030,u_0189,feature_used,2026-06-22T05:09:00Z,u_0189_s03,ins_u_0189_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004031,u_0463,return_visit,2026-06-22T09:49:00Z,u_0463_s03,ins_u_0463_007,{},v2.2.0-healthy +evt_004032,u_0463,feature_used,2026-06-22T09:53:00Z,u_0463_s03,ins_u_0463_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_004033,u_0042,return_visit,2026-06-22T18:54:00Z,u_0042_s03,ins_u_0042_006,{},v2.2.0-healthy +evt_004034,u_0042,feature_used,2026-06-22T18:58:00Z,u_0042_s03,ins_u_0042_007,"{""feature"": ""board""}",v2.2.0-healthy +evt_004035,u_0333,return_visit,2026-06-23T01:33:00Z,u_0333_s03,ins_u_0333_010,{},v2.2.0-healthy +evt_004036,u_0333,feature_used,2026-06-23T01:37:00Z,u_0333_s03,ins_u_0333_011,"{""feature"": ""board""}",v2.2.0-healthy +evt_004037,u_0136,return_visit,2026-06-23T03:55:00Z,u_0136_s03,ins_u_0136_010,{},v2.2.0-healthy +evt_004038,u_0136,feature_used,2026-06-23T03:59:00Z,u_0136_s03,ins_u_0136_011,"{""feature"": ""board""}",v2.2.0-healthy +evt_004039,u_0321,return_visit,2026-06-23T04:09:00Z,u_0321_s03,ins_u_0321_008,{},v2.2.0-healthy +evt_004040,u_0073,return_visit,2026-06-23T04:13:00Z,u_0073_s03,ins_u_0073_008,{},v2.2.0-healthy +evt_004041,u_0321,feature_used,2026-06-23T04:13:00Z,u_0321_s03,ins_u_0321_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004042,u_0073,feature_used,2026-06-23T04:17:00Z,u_0073_s03,ins_u_0073_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004043,u_0660,return_visit,2026-06-23T06:32:00Z,u_0660_s03,ins_u_0660_008,{},v2.2.0-healthy +evt_004044,u_0660,feature_used,2026-06-23T06:36:00Z,u_0660_s03,ins_u_0660_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004045,u_0800,return_visit,2026-06-23T08:41:00Z,u_0800_s03,ins_u_0800_008,{},v2.2.0-healthy +evt_004046,u_0800,feature_used,2026-06-23T08:45:00Z,u_0800_s03,ins_u_0800_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004047,u_0622,return_visit,2026-06-23T10:10:00Z,u_0622_s03,ins_u_0622_008,{},v2.2.0-healthy +evt_004048,u_0622,feature_used,2026-06-23T10:14:00Z,u_0622_s03,ins_u_0622_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004049,u_0492,return_visit,2026-06-23T11:38:00Z,u_0492_s03,ins_u_0492_008,{},v2.2.0-healthy +evt_004050,u_0492,feature_used,2026-06-23T11:42:00Z,u_0492_s03,ins_u_0492_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004051,u_0121,return_visit,2026-06-23T12:42:00Z,u_0121_s03,ins_u_0121_008,{},v2.2.0-healthy +evt_004052,u_0121,feature_used,2026-06-23T12:46:00Z,u_0121_s03,ins_u_0121_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004053,u_0364,return_visit,2026-06-23T22:08:00Z,u_0364_s03,ins_u_0364_008,{},v2.2.0-healthy +evt_004054,u_0364,feature_used,2026-06-23T22:12:00Z,u_0364_s03,ins_u_0364_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004055,u_0529,return_visit,2026-06-23T22:34:00Z,u_0529_s03,ins_u_0529_009,{},v2.2.0-healthy +evt_004056,u_0529,feature_used,2026-06-23T22:38:00Z,u_0529_s03,ins_u_0529_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_004057,u_0637,return_visit,2026-06-24T01:06:00Z,u_0637_s03,ins_u_0637_009,{},v2.2.0-healthy +evt_004058,u_0637,feature_used,2026-06-24T01:10:00Z,u_0637_s03,ins_u_0637_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_004059,u_0647,return_visit,2026-06-24T04:28:00Z,u_0647_s03,ins_u_0647_008,{},v2.2.0-healthy +evt_004060,u_0647,feature_used,2026-06-24T04:32:00Z,u_0647_s03,ins_u_0647_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004061,u_0798,return_visit,2026-06-24T07:25:00Z,u_0798_s03,ins_u_0798_008,{},v2.2.0-healthy +evt_004062,u_0798,feature_used,2026-06-24T07:29:00Z,u_0798_s03,ins_u_0798_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004063,u_0395,return_visit,2026-06-24T08:00:00Z,u_0395_s03,ins_u_0395_010,{},v2.2.0-healthy +evt_004064,u_0395,feature_used,2026-06-24T08:04:00Z,u_0395_s03,ins_u_0395_011,"{""feature"": ""board""}",v2.2.0-healthy +evt_004065,u_0497,return_visit,2026-06-24T12:54:00Z,u_0497_s03,ins_u_0497_008,{},v2.2.0-healthy +evt_004066,u_0004,return_visit,2026-06-24T12:58:00Z,u_0004_s03,ins_u_0004_009,{},v2.2.0-healthy +evt_004067,u_0497,feature_used,2026-06-24T12:58:00Z,u_0497_s03,ins_u_0497_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004068,u_0004,feature_used,2026-06-24T13:02:00Z,u_0004_s03,ins_u_0004_010,"{""feature"": ""board""}",v2.2.0-healthy +evt_004069,u_0742,return_visit,2026-06-24T23:55:00Z,u_0742_s03,ins_u_0742_008,{},v2.2.0-healthy +evt_004070,u_0742,feature_used,2026-06-24T23:59:00Z,u_0742_s03,ins_u_0742_009,"{""feature"": ""board""}",v2.2.0-healthy +evt_004071,u_0094,return_visit,2026-06-25T06:40:00Z,u_0094_s03,ins_u_0094_007,{},v2.2.0-healthy +evt_004072,u_0094,feature_used,2026-06-25T06:44:00Z,u_0094_s03,ins_u_0094_008,"{""feature"": ""board""}",v2.2.0-healthy +evt_004073,u_0525,return_visit,2026-06-25T07:01:00Z,u_0525_s03,ins_u_0525_010,{},v2.2.0-healthy +evt_004074,u_0525,feature_used,2026-06-25T07:05:00Z,u_0525_s03,ins_u_0525_011,"{""feature"": ""board""}",v2.2.0-healthy +evt_004075,u_0149,return_visit,2026-06-27T01:36:00Z,u_0149_s03,ins_u_0149_010,{},v2.2.0-healthy +evt_004076,u_0149,feature_used,2026-06-27T01:40:00Z,u_0149_s03,ins_u_0149_011,"{""feature"": ""board""}",v2.2.0-healthy +evt_004077,u_0320,return_visit,2026-06-27T03:39:00Z,u_0320_s03,ins_u_0320_006,{},v2.2.0-healthy +evt_004078,u_0320,feature_used,2026-06-27T03:43:00Z,u_0320_s03,ins_u_0320_007,"{""feature"": ""board""}",v2.2.0-healthy +evt_004079,u_0107,return_visit,2026-06-28T07:22:00Z,u_0107_s03,ins_u_0107_009,{},v2.2.0-healthy +evt_004080,u_0107,feature_used,2026-06-28T07:26:00Z,u_0107_s03,ins_u_0107_010,"{""feature"": ""board""}",v2.2.0-healthy diff --git a/data/seed/releases/v2.2.0-healthy/manifest.json b/data/seed/releases/v2.2.0-healthy/manifest.json new file mode 100644 index 0000000..6e22a24 --- /dev/null +++ b/data/seed/releases/v2.2.0-healthy/manifest.json @@ -0,0 +1,9 @@ +{ + "ended_at": "2026-06-07T23:59:59Z", + "events": 4080, + "experiment": false, + "generator_seed": 2201, + "release": "v2.2.0-healthy", + "started_at": "2026-06-01T00:00:00Z", + "users": 800 +} diff --git a/data/seed/releases/v2.3.0-buggy/events.csv b/data/seed/releases/v2.3.0-buggy/events.csv new file mode 100644 index 0000000..49bb9bb --- /dev/null +++ b/data/seed/releases/v2.3.0-buggy/events.csv @@ -0,0 +1,4337 @@ +event_id,user_id,event_name,ts,session_id,insert_id,properties,release +evt_000001,u_0465,signup_started,2026-06-08T08:06:00Z,u_0465_s01,ins_u_0465_001,{},v2.3.0-buggy +evt_000002,u_0465,signup_completed,2026-06-08T08:08:00Z,u_0465_s01,ins_u_0465_002,{},v2.3.0-buggy +evt_000003,u_0020,signup_started,2026-06-08T08:13:00Z,u_0020_s01,ins_u_0020_001,{},v2.3.0-buggy +evt_000004,u_0020,signup_completed,2026-06-08T08:14:00Z,u_0020_s01,ins_u_0020_002,{},v2.3.0-buggy +evt_000005,u_0465,profile_saved,2026-06-08T08:14:00Z,u_0465_s01,ins_u_0465_003,{},v2.3.0-buggy +evt_000006,u_0020,profile_saved,2026-06-08T08:17:00Z,u_0020_s01,ins_u_0020_003,{},v2.3.0-buggy +evt_000007,u_0465,onboarding_step_viewed,2026-06-08T08:20:00Z,u_0465_s01,ins_u_0465_004,{},v2.3.0-buggy +evt_000008,u_0020,onboarding_step_viewed,2026-06-08T08:21:00Z,u_0020_s01,ins_u_0020_004,{},v2.3.0-buggy +evt_000009,u_0020,feature_used,2026-06-08T08:26:00Z,u_0020_s01,ins_u_0020_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000010,u_0465,feature_used,2026-06-08T08:34:00Z,u_0465_s01,ins_u_0465_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000011,u_0465,onboarding_completed,2026-06-08T08:48:00Z,u_0465_s01,ins_u_0465_006,"{""completed_at"": ""2026-06-08T08:44:00Z""}",v2.3.0-buggy +evt_000012,u_0335,signup_started,2026-06-08T08:50:00Z,u_0335_s01,ins_u_0335_001,{},v2.3.0-buggy +evt_000013,u_0377,signup_started,2026-06-08T08:56:00Z,u_0377_s01,ins_u_0377_001,{},v2.3.0-buggy +evt_000014,u_0335,signup_completed,2026-06-08T08:58:00Z,u_0335_s01,ins_u_0335_002,{},v2.3.0-buggy +evt_000015,u_0377,signup_completed,2026-06-08T08:58:00Z,u_0377_s01,ins_u_0377_002,{},v2.3.0-buggy +evt_000016,u_0377,upsell_modal_shown,2026-06-08T08:59:00Z,u_0377_s01,ins_u_0377_003,{},v2.3.0-buggy +evt_000017,u_0335,profile_saved,2026-06-08T09:05:00Z,u_0335_s01,ins_u_0335_003,{},v2.3.0-buggy +evt_000018,u_0377,profile_saved,2026-06-08T09:06:00Z,u_0377_s01,ins_u_0377_004,{},v2.3.0-buggy +evt_000019,u_0377,onboarding_step_viewed,2026-06-08T09:08:00Z,u_0377_s01,ins_u_0377_005,{},v2.3.0-buggy +evt_000020,u_0706,signup_started,2026-06-08T09:15:00Z,u_0706_s01,ins_u_0706_001,{},v2.3.0-buggy +evt_000021,u_0706,session_abandoned,2026-06-08T09:16:00Z,u_0706_s01,ins_u_0706_002,{},v2.3.0-buggy +evt_000022,u_0465,activation_completed,2026-06-08T09:17:00Z,u_0465_s01,ins_u_0465_007,{},v2.3.0-buggy +evt_000023,u_0031,signup_started,2026-06-08T09:18:00Z,u_0031_s01,ins_u_0031_001,{},v2.3.0-buggy +evt_000024,u_0335,feature_used,2026-06-08T09:18:00Z,u_0335_s01,ins_u_0335_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000025,u_0031,signup_completed,2026-06-08T09:21:00Z,u_0031_s01,ins_u_0031_002,{},v2.3.0-buggy +evt_000026,u_0262,signup_started,2026-06-08T09:21:00Z,u_0262_s01,ins_u_0262_001,{},v2.3.0-buggy +evt_000027,u_0262,signup_completed,2026-06-08T09:26:00Z,u_0262_s01,ins_u_0262_002,{},v2.3.0-buggy +evt_000028,u_0262,signup_completed,2026-06-08T09:27:00Z,u_0262_s01,ins_u_0262_002,{},v2.3.0-buggy +evt_000029,u_0340,signup_started,2026-06-08T09:28:00Z,u_0340_s01,ins_u_0340_001,{},v2.3.0-buggy +evt_000030,u_0340,signup_completed,2026-06-08T09:29:00Z,u_0340_s01,ins_u_0340_002,{},v2.3.0-buggy +evt_000031,u_0031,profile_saved,2026-06-08T09:30:00Z,u_0031_s01,ins_u_0031_003,{},v2.3.0-buggy +evt_000032,u_0340,upsell_modal_shown,2026-06-08T09:30:00Z,u_0340_s01,ins_u_0340_003,{},v2.3.0-buggy +evt_000033,u_0631,signup_started,2026-06-08T09:31:00Z,u_0631_s01,ins_u_0631_001,{},v2.3.0-buggy +evt_000034,u_0262,session_abandoned,2026-06-08T09:33:00Z,u_0262_s01,ins_u_0262_003,{},v2.3.0-buggy +evt_000035,u_0031,onboarding_step_viewed,2026-06-08T09:35:00Z,u_0031_s01,ins_u_0031_004,{},v2.3.0-buggy +evt_000036,u_0631,session_abandoned,2026-06-08T09:35:00Z,u_0631_s01,ins_u_0631_002,{},v2.3.0-buggy +evt_000037,u_0020,activation_completed,2026-06-08T09:37:00Z,u_0020_s01,ins_u_0020_006,{},v2.3.0-buggy +evt_000038,u_0340,profile_saved,2026-06-08T09:37:00Z,u_0340_s01,ins_u_0340_004,{},v2.3.0-buggy +evt_000039,u_0340,onboarding_step_viewed,2026-06-08T09:39:00Z,u_0340_s01,ins_u_0340_005,{},v2.3.0-buggy +evt_000040,u_0335,onboarding_completed,2026-06-08T09:41:00Z,u_0335_s01,ins_u_0335_005,"{""completed_at"": ""2026-06-08T09:42:00Z""}",v2.3.0-buggy +evt_000041,u_0438,signup_started,2026-06-08T09:41:00Z,u_0438_s01,ins_u_0438_001,{},v2.3.0-buggy +evt_000042,u_0604,signup_started,2026-06-08T09:44:00Z,u_0604_s01,ins_u_0604_001,{},v2.3.0-buggy +evt_000043,u_0604,signup_completed,2026-06-08T09:45:00Z,u_0604_s01,ins_u_0604_002,{},v2.3.0-buggy +evt_000044,u_0377,onboarding_completed,2026-06-08T09:47:00Z,u_0377_s01,ins_u_0377_006,"{""completed_at"": ""2026-06-08T09:32:00Z""}",v2.3.0-buggy +evt_000045,u_0438,signup_completed,2026-06-08T09:47:00Z,u_0438_s01,ins_u_0438_002,{},v2.3.0-buggy +evt_000046,u_0604,profile_saved,2026-06-08T09:50:00Z,u_0604_s01,ins_u_0604_003,{},v2.3.0-buggy +evt_000047,u_0031,onboarding_completed,2026-06-08T09:56:00Z,u_0031_s01,ins_u_0031_005,"{""completed_at"": ""2026-06-08T10:01:00Z""}",v2.3.0-buggy +evt_000048,u_0438,profile_saved,2026-06-08T09:57:00Z,u_0438_s01,ins_u_0438_003,{},v2.3.0-buggy +evt_000049,u_0340,feature_used,2026-06-08T09:58:00Z,u_0340_s01,ins_u_0340_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_000050,u_0530,signup_started,2026-06-08T09:59:00Z,u_0530_s01,ins_u_0530_001,{},v2.3.0-buggy +evt_000051,u_0438,onboarding_step_viewed,2026-06-08T10:00:00Z,u_0438_s01,ins_u_0438_004,{},v2.3.0-buggy +evt_000052,u_0604,feature_used,2026-06-08T10:03:00Z,u_0604_s01,ins_u_0604_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_000053,u_0530,signup_completed,2026-06-08T10:04:00Z,u_0530_s01,ins_u_0530_002,{},v2.3.0-buggy +evt_000054,u_0340,onboarding_completed,2026-06-08T10:05:00Z,u_0340_s01,ins_u_0340_007,"{""completed_at"": ""2026-06-08T10:10:00Z""}",v2.3.0-buggy +evt_000055,u_0436,signup_started,2026-06-08T10:12:00Z,u_0436_s01,ins_u_0436_001,{},v2.3.0-buggy +evt_000056,u_0530,profile_saved,2026-06-08T10:12:00Z,u_0530_s01,ins_u_0530_003,{},v2.3.0-buggy +evt_000057,u_0530,onboarding_step_viewed,2026-06-08T10:16:00Z,u_0530_s01,ins_u_0530_004,{},v2.3.0-buggy +evt_000058,u_0554,signup_started,2026-06-08T10:17:00Z,u_0554_s01,ins_u_0554_001,{},v2.3.0-buggy +evt_000059,u_0134,signup_started,2026-06-08T10:18:00Z,u_0134_s01,ins_u_0134_001,{},v2.3.0-buggy +evt_000060,u_0377,activation_completed,2026-06-08T10:20:00Z,u_0377_s01,ins_u_0377_007,{},v2.3.0-buggy +evt_000061,u_0436,signup_completed,2026-06-08T10:20:00Z,u_0436_s01,ins_u_0436_002,{},v2.3.0-buggy +evt_000062,u_0554,signup_completed,2026-06-08T10:20:00Z,u_0554_s01,ins_u_0554_002,{},v2.3.0-buggy +evt_000063,u_0554,profile_saved,2026-06-08T10:22:00Z,u_0554_s01,ins_u_0554_003,{},v2.3.0-buggy +evt_000064,u_0134,signup_completed,2026-06-08T10:23:00Z,u_0134_s01,ins_u_0134_002,{},v2.3.0-buggy +evt_000065,u_0554,onboarding_step_viewed,2026-06-08T10:25:00Z,u_0554_s01,ins_u_0554_004,{},v2.3.0-buggy +evt_000066,u_0604,onboarding_completed,2026-06-08T10:25:00Z,u_0604_s01,ins_u_0604_005,"{""completed_at"": ""2026-06-08T10:27:00Z""}",v2.3.0-buggy +evt_000067,u_0134,onboarding_completed,2026-06-08T10:26:00Z,u_0134_s01,ins_u_0134_003,{},v2.3.0-buggy +evt_000068,u_0436,profile_saved,2026-06-08T10:26:00Z,u_0436_s01,ins_u_0436_003,{},v2.3.0-buggy +evt_000069,u_0436,onboarding_step_viewed,2026-06-08T10:28:00Z,u_0436_s01,ins_u_0436_004,{},v2.3.0-buggy +evt_000070,u_0134,session_abandoned,2026-06-08T10:29:00Z,u_0134_s01,ins_u_0134_004,{},v2.3.0-buggy +evt_000071,u_0235,signup_started,2026-06-08T10:30:00Z,u_0235_s01,ins_u_0235_001,{},v2.3.0-buggy +evt_000072,u_0300,signup_started,2026-06-08T10:30:00Z,u_0300_s01,ins_u_0300_001,{},v2.3.0-buggy +evt_000073,u_0300,signup_completed,2026-06-08T10:32:00Z,u_0300_s01,ins_u_0300_002,{},v2.3.0-buggy +evt_000074,u_0235,signup_completed,2026-06-08T10:33:00Z,u_0235_s01,ins_u_0235_002,{},v2.3.0-buggy +evt_000075,u_0235,profile_saved,2026-06-08T10:40:00Z,u_0235_s01,ins_u_0235_003,{},v2.3.0-buggy +evt_000076,u_0300,profile_saved,2026-06-08T10:42:00Z,u_0300_s01,ins_u_0300_003,{},v2.3.0-buggy +evt_000077,u_0438,onboarding_completed,2026-06-08T10:42:00Z,u_0438_s01,ins_u_0438_005,"{""completed_at"": ""2026-06-08T10:23:00Z""}",v2.3.0-buggy +evt_000078,u_0300,error_shown,2026-06-08T10:43:00Z,u_0300_s01,ins_u_0300_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000079,u_0235,onboarding_step_viewed,2026-06-08T10:44:00Z,u_0235_s01,ins_u_0235_004,{},v2.3.0-buggy +evt_000080,u_0436,feature_used,2026-06-08T10:46:00Z,u_0436_s01,ins_u_0436_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000081,u_0438,activation_completed,2026-06-08T10:47:00Z,u_0438_s01,ins_u_0438_006,{},v2.3.0-buggy +evt_000082,u_0530,onboarding_completed,2026-06-08T10:47:00Z,u_0530_s01,ins_u_0530_005,"{""completed_at"": ""2026-06-08T10:49:00Z""}",v2.3.0-buggy +evt_000083,u_0554,feature_used,2026-06-08T10:47:00Z,u_0554_s01,ins_u_0554_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000084,u_0769,signup_started,2026-06-08T10:47:00Z,u_0769_s01,ins_u_0769_001,{},v2.3.0-buggy +evt_000085,u_0087,signup_started,2026-06-08T10:48:00Z,u_0087_s01,ins_u_0087_001,{},v2.3.0-buggy +evt_000086,u_0300,onboarding_step_viewed,2026-06-08T10:48:00Z,u_0300_s01,ins_u_0300_005,{},v2.3.0-buggy +evt_000087,u_0087,signup_completed,2026-06-08T10:49:00Z,u_0087_s01,ins_u_0087_002,{},v2.3.0-buggy +evt_000088,u_0300,onboarding_step_viewed,2026-06-08T10:49:00Z,u_0300_s01,ins_u_0300_005,{},v2.3.0-buggy +evt_000089,u_0436,onboarding_completed,2026-06-08T10:52:00Z,u_0436_s01,ins_u_0436_006,"{""completed_at"": ""2026-06-08T10:52:00Z""}",v2.3.0-buggy +evt_000090,u_0769,signup_completed,2026-06-08T10:52:00Z,u_0769_s01,ins_u_0769_002,{},v2.3.0-buggy +evt_000091,u_0548,signup_started,2026-06-08T10:54:00Z,u_0548_s01,ins_u_0548_001,{},v2.3.0-buggy +evt_000092,u_0087,profile_saved,2026-06-08T10:58:00Z,u_0087_s01,ins_u_0087_003,{},v2.3.0-buggy +evt_000093,u_0300,feature_used,2026-06-08T10:59:00Z,u_0300_s01,ins_u_0300_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_000094,u_0548,session_abandoned,2026-06-08T11:00:00Z,u_0548_s01,ins_u_0548_002,{},v2.3.0-buggy +evt_000095,u_0554,onboarding_completed,2026-06-08T11:01:00Z,u_0554_s01,ins_u_0554_006,"{""completed_at"": ""2026-06-08T10:48:00Z""}",v2.3.0-buggy +evt_000096,u_0769,profile_saved,2026-06-08T11:02:00Z,u_0769_s01,ins_u_0769_003,{},v2.3.0-buggy +evt_000097,u_0743,signup_started,2026-06-08T11:04:00Z,u_0743_s01,ins_u_0743_001,{},v2.3.0-buggy +evt_000098,u_0257,signup_started,2026-06-08T11:08:00Z,u_0257_s01,ins_u_0257_001,{},v2.3.0-buggy +evt_000099,u_0769,onboarding_step_viewed,2026-06-08T11:08:00Z,u_0769_s01,ins_u_0769_004,{},v2.3.0-buggy +evt_000100,u_0743,signup_completed,2026-06-08T11:10:00Z,u_0743_s01,ins_u_0743_002,{},v2.3.0-buggy +evt_000101,u_0257,signup_completed,2026-06-08T11:11:00Z,u_0257_s01,ins_u_0257_002,{},v2.3.0-buggy +evt_000102,u_0743,profile_saved,2026-06-08T11:14:00Z,u_0743_s01,ins_u_0743_003,{},v2.3.0-buggy +evt_000103,u_0743,onboarding_step_viewed,2026-06-08T11:16:00Z,u_0743_s01,ins_u_0743_004,{},v2.3.0-buggy +evt_000104,u_0769,feature_used,2026-06-08T11:17:00Z,u_0769_s01,ins_u_0769_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000105,u_0257,session_abandoned,2026-06-08T11:18:00Z,u_0257_s01,ins_u_0257_003,{},v2.3.0-buggy +evt_000106,u_0235,onboarding_completed,2026-06-08T11:21:00Z,u_0235_s01,ins_u_0235_005,"{""completed_at"": ""2026-06-08T11:13:00Z""}",v2.3.0-buggy +evt_000107,u_0300,onboarding_completed,2026-06-08T11:24:00Z,u_0300_s01,ins_u_0300_007,"{""completed_at"": ""2026-06-08T11:11:00Z""}",v2.3.0-buggy +evt_000108,u_0087,onboarding_completed,2026-06-08T11:30:00Z,u_0087_s01,ins_u_0087_004,"{""completed_at"": ""2026-06-08T11:28:00Z""}",v2.3.0-buggy +evt_000109,u_0104,signup_started,2026-06-08T11:32:00Z,u_0104_s01,ins_u_0104_001,{},v2.3.0-buggy +evt_000110,u_0494,signup_started,2026-06-08T11:33:00Z,u_0494_s01,ins_u_0494_001,{},v2.3.0-buggy +evt_000111,u_0235,activation_completed,2026-06-08T11:34:00Z,u_0235_s01,ins_u_0235_006,{},v2.3.0-buggy +evt_000112,u_0104,signup_completed,2026-06-08T11:35:00Z,u_0104_s01,ins_u_0104_002,{},v2.3.0-buggy +evt_000113,u_0084,signup_started,2026-06-08T11:36:00Z,u_0084_s01,ins_u_0084_001,{},v2.3.0-buggy +evt_000114,u_0494,signup_completed,2026-06-08T11:36:00Z,u_0494_s01,ins_u_0494_002,{},v2.3.0-buggy +evt_000115,u_0084,signup_completed,2026-06-08T11:40:00Z,u_0084_s01,ins_u_0084_002,{},v2.3.0-buggy +evt_000116,u_0769,onboarding_completed,2026-06-08T11:41:00Z,u_0769_s01,ins_u_0769_006,"{""completed_at"": ""2026-06-08T11:41:00Z""}",v2.3.0-buggy +evt_000117,u_0494,session_abandoned,2026-06-08T11:42:00Z,u_0494_s01,ins_u_0494_003,{},v2.3.0-buggy +evt_000118,u_0084,profile_saved,2026-06-08T11:44:00Z,u_0084_s01,ins_u_0084_003,{},v2.3.0-buggy +evt_000119,u_0104,session_abandoned,2026-06-08T11:44:00Z,u_0104_s01,ins_u_0104_003,{},v2.3.0-buggy +evt_000120,u_0436,activation_completed,2026-06-08T11:45:00Z,u_0436_s01,ins_u_0436_007,{},v2.3.0-buggy +evt_000121,u_0084,onboarding_step_viewed,2026-06-08T11:46:00Z,u_0084_s01,ins_u_0084_004,{},v2.3.0-buggy +evt_000122,u_0300,activation_completed,2026-06-08T11:48:00Z,u_0300_s01,ins_u_0300_008,{},v2.3.0-buggy +evt_000123,u_0769,activation_completed,2026-06-08T11:53:00Z,u_0769_s01,ins_u_0769_007,{},v2.3.0-buggy +evt_000124,u_0743,onboarding_completed,2026-06-08T11:55:00Z,u_0743_s01,ins_u_0743_005,"{""completed_at"": ""2026-06-08T11:43:00Z""}",v2.3.0-buggy +evt_000125,u_0362,signup_started,2026-06-08T12:00:00Z,u_0362_s01,ins_u_0362_001,{},v2.3.0-buggy +evt_000126,u_0362,session_abandoned,2026-06-08T12:01:00Z,u_0362_s01,ins_u_0362_002,{},v2.3.0-buggy +evt_000127,u_0167,signup_started,2026-06-08T12:04:00Z,u_0167_s01,ins_u_0167_001,{},v2.3.0-buggy +evt_000128,u_0167,signup_completed,2026-06-08T12:05:00Z,u_0167_s01,ins_u_0167_002,{},v2.3.0-buggy +evt_000129,u_0447,signup_started,2026-06-08T12:05:00Z,u_0447_s01,ins_u_0447_001,{},v2.3.0-buggy +evt_000130,u_0484,signup_started,2026-06-08T12:06:00Z,u_0484_s01,ins_u_0484_001,{},v2.3.0-buggy +evt_000131,u_0084,feature_used,2026-06-08T12:07:00Z,u_0084_s01,ins_u_0084_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000132,u_0167,profile_saved,2026-06-08T12:10:00Z,u_0167_s01,ins_u_0167_003,{},v2.3.0-buggy +evt_000133,u_0447,signup_completed,2026-06-08T12:11:00Z,u_0447_s01,ins_u_0447_002,{},v2.3.0-buggy +evt_000134,u_0484,signup_completed,2026-06-08T12:12:00Z,u_0484_s01,ins_u_0484_002,{},v2.3.0-buggy +evt_000135,u_0167,onboarding_step_viewed,2026-06-08T12:13:00Z,u_0167_s01,ins_u_0167_004,{},v2.3.0-buggy +evt_000136,u_0447,profile_saved,2026-06-08T12:14:00Z,u_0447_s01,ins_u_0447_003,{},v2.3.0-buggy +evt_000137,u_0084,onboarding_completed,2026-06-08T12:15:00Z,u_0084_s01,ins_u_0084_006,"{""completed_at"": ""2026-06-08T12:20:00Z""}",v2.3.0-buggy +evt_000138,u_0447,error_shown,2026-06-08T12:15:00Z,u_0447_s01,ins_u_0447_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000139,u_0447,onboarding_step_viewed,2026-06-08T12:18:00Z,u_0447_s01,ins_u_0447_005,{},v2.3.0-buggy +evt_000140,u_0597,signup_started,2026-06-08T12:18:00Z,u_0597_s01,ins_u_0597_001,{},v2.3.0-buggy +evt_000141,u_0484,session_abandoned,2026-06-08T12:20:00Z,u_0484_s01,ins_u_0484_003,{},v2.3.0-buggy +evt_000142,u_0597,signup_completed,2026-06-08T12:22:00Z,u_0597_s01,ins_u_0597_002,{},v2.3.0-buggy +evt_000143,u_0232,signup_started,2026-06-08T12:23:00Z,u_0232_s01,ins_u_0232_001,{},v2.3.0-buggy +evt_000144,u_0520,signup_started,2026-06-08T12:23:00Z,u_0520_s01,ins_u_0520_001,{},v2.3.0-buggy +evt_000145,u_0520,signup_completed,2026-06-08T12:24:00Z,u_0520_s01,ins_u_0520_002,{},v2.3.0-buggy +evt_000146,u_0597,profile_saved,2026-06-08T12:25:00Z,u_0597_s01,ins_u_0597_003,{},v2.3.0-buggy +evt_000147,u_0520,onboarding_completed,2026-06-08T12:27:00Z,u_0520_s01,ins_u_0520_003,{},v2.3.0-buggy +evt_000148,u_0620,signup_started,2026-06-08T12:27:00Z,u_0620_s01,ins_u_0620_001,{},v2.3.0-buggy +evt_000149,u_0232,signup_completed,2026-06-08T12:28:00Z,u_0232_s01,ins_u_0232_002,{},v2.3.0-buggy +evt_000150,u_0447,feature_used,2026-06-08T12:28:00Z,u_0447_s01,ins_u_0447_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000151,u_0597,onboarding_step_viewed,2026-06-08T12:30:00Z,u_0597_s01,ins_u_0597_004,{},v2.3.0-buggy +evt_000152,u_0620,signup_completed,2026-06-08T12:30:00Z,u_0620_s01,ins_u_0620_002,{},v2.3.0-buggy +evt_000153,u_0743,activation_completed,2026-06-08T12:30:00Z,u_0743_s01,ins_u_0743_006,{},v2.3.0-buggy +evt_000154,u_0793,signup_started,2026-06-08T12:30:00Z,u_0793_s01,ins_u_0793_001,{},v2.3.0-buggy +evt_000155,u_0232,profile_saved,2026-06-08T12:31:00Z,u_0232_s01,ins_u_0232_003,{},v2.3.0-buggy +evt_000156,u_0620,upsell_modal_shown,2026-06-08T12:31:00Z,u_0620_s01,ins_u_0620_003,{},v2.3.0-buggy +evt_000157,u_0520,session_abandoned,2026-06-08T12:32:00Z,u_0520_s01,ins_u_0520_004,{},v2.3.0-buggy +evt_000158,u_0597,feature_used,2026-06-08T12:32:00Z,u_0597_s01,ins_u_0597_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000159,u_0710,signup_started,2026-06-08T12:33:00Z,u_0710_s01,ins_u_0710_001,{},v2.3.0-buggy +evt_000160,u_0232,onboarding_step_viewed,2026-06-08T12:36:00Z,u_0232_s01,ins_u_0232_004,{},v2.3.0-buggy +evt_000161,u_0793,signup_completed,2026-06-08T12:36:00Z,u_0793_s01,ins_u_0793_002,{},v2.3.0-buggy +evt_000162,u_0232,onboarding_step_viewed,2026-06-08T12:37:00Z,u_0232_s01,ins_u_0232_004,{},v2.3.0-buggy +evt_000163,u_0793,profile_saved,2026-06-08T12:39:00Z,u_0793_s01,ins_u_0793_003,{},v2.3.0-buggy +evt_000164,u_0167,onboarding_completed,2026-06-08T12:40:00Z,u_0167_s01,ins_u_0167_005,"{""completed_at"": ""2026-06-08T12:36:00Z""}",v2.3.0-buggy +evt_000165,u_0414,signup_started,2026-06-08T12:40:00Z,u_0414_s01,ins_u_0414_001,{},v2.3.0-buggy +evt_000166,u_0620,profile_saved,2026-06-08T12:40:00Z,u_0620_s01,ins_u_0620_004,{},v2.3.0-buggy +evt_000167,u_0710,signup_completed,2026-06-08T12:40:00Z,u_0710_s01,ins_u_0710_002,{},v2.3.0-buggy +evt_000168,u_0793,error_shown,2026-06-08T12:40:00Z,u_0793_s01,ins_u_0793_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000169,u_0710,upsell_modal_shown,2026-06-08T12:41:00Z,u_0710_s01,ins_u_0710_003,{},v2.3.0-buggy +evt_000170,u_0710,onboarding_completed,2026-06-08T12:41:00Z,u_0710_s01,ins_u_0710_004,{},v2.3.0-buggy +evt_000171,u_0793,onboarding_step_viewed,2026-06-08T12:43:00Z,u_0793_s01,ins_u_0793_005,{},v2.3.0-buggy +evt_000172,u_0414,signup_completed,2026-06-08T12:44:00Z,u_0414_s01,ins_u_0414_002,{},v2.3.0-buggy +evt_000173,u_0414,profile_saved,2026-06-08T12:49:00Z,u_0414_s01,ins_u_0414_003,{},v2.3.0-buggy +evt_000174,u_0479,signup_started,2026-06-08T12:49:00Z,u_0479_s01,ins_u_0479_001,{},v2.3.0-buggy +evt_000175,u_0710,session_abandoned,2026-06-08T12:49:00Z,u_0710_s01,ins_u_0710_005,{},v2.3.0-buggy +evt_000176,u_0793,feature_used,2026-06-08T12:49:00Z,u_0793_s01,ins_u_0793_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000177,u_0479,signup_completed,2026-06-08T12:53:00Z,u_0479_s01,ins_u_0479_002,{},v2.3.0-buggy +evt_000178,u_0268,signup_started,2026-06-08T12:54:00Z,u_0268_s01,ins_u_0268_001,{},v2.3.0-buggy +evt_000179,u_0597,onboarding_completed,2026-06-08T12:54:00Z,u_0597_s01,ins_u_0597_006,"{""completed_at"": ""2026-06-08T12:56:00Z""}",v2.3.0-buggy +evt_000180,u_0084,activation_completed,2026-06-08T12:55:00Z,u_0084_s01,ins_u_0084_007,{},v2.3.0-buggy +evt_000181,u_0167,activation_completed,2026-06-08T12:56:00Z,u_0167_s01,ins_u_0167_006,{},v2.3.0-buggy +evt_000182,u_0447,onboarding_completed,2026-06-08T12:57:00Z,u_0447_s01,ins_u_0447_007,"{""completed_at"": ""2026-06-08T12:46:00Z""}",v2.3.0-buggy +evt_000183,u_0268,signup_completed,2026-06-08T13:00:00Z,u_0268_s01,ins_u_0268_002,{},v2.3.0-buggy +evt_000184,u_0479,profile_saved,2026-06-08T13:01:00Z,u_0479_s01,ins_u_0479_003,{},v2.3.0-buggy +evt_000185,u_0232,onboarding_completed,2026-06-08T13:02:00Z,u_0232_s01,ins_u_0232_005,"{""completed_at"": ""2026-06-08T13:01:00Z""}",v2.3.0-buggy +evt_000186,u_0268,profile_saved,2026-06-08T13:04:00Z,u_0268_s01,ins_u_0268_003,{},v2.3.0-buggy +evt_000187,u_0268,onboarding_step_viewed,2026-06-08T13:06:00Z,u_0268_s01,ins_u_0268_004,{},v2.3.0-buggy +evt_000188,u_0479,onboarding_step_viewed,2026-06-08T13:07:00Z,u_0479_s01,ins_u_0479_004,{},v2.3.0-buggy +evt_000189,u_0100,signup_started,2026-06-08T13:10:00Z,u_0100_s01,ins_u_0100_001,{},v2.3.0-buggy +evt_000190,u_0414,feature_used,2026-06-08T13:10:00Z,u_0414_s01,ins_u_0414_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_000191,u_0742,signup_started,2026-06-08T13:11:00Z,u_0742_s01,ins_u_0742_001,{},v2.3.0-buggy +evt_000192,u_0100,session_abandoned,2026-06-08T13:13:00Z,u_0100_s01,ins_u_0100_002,{},v2.3.0-buggy +evt_000193,u_0100,session_abandoned,2026-06-08T13:14:00Z,u_0100_s01,ins_u_0100_002,{},v2.3.0-buggy +evt_000194,u_0479,feature_used,2026-06-08T13:15:00Z,u_0479_s01,ins_u_0479_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000195,u_0762,signup_started,2026-06-08T13:16:00Z,u_0762_s01,ins_u_0762_001,{},v2.3.0-buggy +evt_000196,u_0793,onboarding_completed,2026-06-08T13:16:00Z,u_0793_s01,ins_u_0793_007,"{""completed_at"": ""2026-06-08T13:16:00Z""}",v2.3.0-buggy +evt_000197,u_0742,signup_completed,2026-06-08T13:17:00Z,u_0742_s01,ins_u_0742_002,{},v2.3.0-buggy +evt_000198,u_0715,signup_started,2026-06-08T13:19:00Z,u_0715_s01,ins_u_0715_001,{},v2.3.0-buggy +evt_000199,u_0715,session_abandoned,2026-06-08T13:20:00Z,u_0715_s01,ins_u_0715_002,{},v2.3.0-buggy +evt_000200,u_0738,signup_started,2026-06-08T13:22:00Z,u_0738_s01,ins_u_0738_001,{},v2.3.0-buggy +evt_000201,u_0742,profile_saved,2026-06-08T13:22:00Z,u_0742_s01,ins_u_0742_003,{},v2.3.0-buggy +evt_000202,u_0762,signup_completed,2026-06-08T13:23:00Z,u_0762_s01,ins_u_0762_002,{},v2.3.0-buggy +evt_000203,u_0620,onboarding_completed,2026-06-08T13:24:00Z,u_0620_s01,ins_u_0620_005,"{""completed_at"": ""2026-06-08T13:13:00Z""}",v2.3.0-buggy +evt_000204,u_0054,signup_started,2026-06-08T13:25:00Z,u_0054_s01,ins_u_0054_001,{},v2.3.0-buggy +evt_000205,u_0469,signup_started,2026-06-08T13:26:00Z,u_0469_s01,ins_u_0469_001,{},v2.3.0-buggy +evt_000206,u_0268,feature_used,2026-06-08T13:27:00Z,u_0268_s01,ins_u_0268_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000207,u_0742,onboarding_step_viewed,2026-06-08T13:27:00Z,u_0742_s01,ins_u_0742_004,{},v2.3.0-buggy +evt_000208,u_0232,activation_completed,2026-06-08T13:28:00Z,u_0232_s01,ins_u_0232_006,{},v2.3.0-buggy +evt_000209,u_0738,signup_completed,2026-06-08T13:28:00Z,u_0738_s01,ins_u_0738_002,{},v2.3.0-buggy +evt_000210,u_0054,signup_completed,2026-06-08T13:29:00Z,u_0054_s01,ins_u_0054_002,{},v2.3.0-buggy +evt_000211,u_0108,signup_started,2026-06-08T13:30:00Z,u_0108_s01,ins_u_0108_001,{},v2.3.0-buggy +evt_000212,u_0054,onboarding_completed,2026-06-08T13:31:00Z,u_0054_s01,ins_u_0054_003,{},v2.3.0-buggy +evt_000213,u_0738,onboarding_completed,2026-06-08T13:31:00Z,u_0738_s01,ins_u_0738_003,{},v2.3.0-buggy +evt_000214,u_0108,session_abandoned,2026-06-08T13:32:00Z,u_0108_s01,ins_u_0108_002,{},v2.3.0-buggy +evt_000215,u_0762,profile_saved,2026-06-08T13:32:00Z,u_0762_s01,ins_u_0762_003,{},v2.3.0-buggy +evt_000216,u_0793,activation_completed,2026-06-08T13:32:00Z,u_0793_s01,ins_u_0793_008,{},v2.3.0-buggy +evt_000217,u_0477,signup_started,2026-06-08T13:33:00Z,u_0477_s01,ins_u_0477_001,{},v2.3.0-buggy +evt_000218,u_0469,signup_completed,2026-06-08T13:34:00Z,u_0469_s01,ins_u_0469_002,{},v2.3.0-buggy +evt_000219,u_0738,session_abandoned,2026-06-08T13:35:00Z,u_0738_s01,ins_u_0738_004,{},v2.3.0-buggy +evt_000220,u_0477,signup_completed,2026-06-08T13:36:00Z,u_0477_s01,ins_u_0477_002,{},v2.3.0-buggy +evt_000221,u_0742,feature_used,2026-06-08T13:37:00Z,u_0742_s01,ins_u_0742_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000222,u_0762,onboarding_step_viewed,2026-06-08T13:37:00Z,u_0762_s01,ins_u_0762_004,{},v2.3.0-buggy +evt_000223,u_0054,session_abandoned,2026-06-08T13:38:00Z,u_0054_s01,ins_u_0054_004,{},v2.3.0-buggy +evt_000224,u_0479,onboarding_completed,2026-06-08T13:41:00Z,u_0479_s01,ins_u_0479_006,"{""completed_at"": ""2026-06-08T13:38:00Z""}",v2.3.0-buggy +evt_000225,u_0477,profile_saved,2026-06-08T13:42:00Z,u_0477_s01,ins_u_0477_003,{},v2.3.0-buggy +evt_000226,u_0268,onboarding_completed,2026-06-08T13:44:00Z,u_0268_s01,ins_u_0268_006,"{""completed_at"": ""2026-06-08T13:37:00Z""}",v2.3.0-buggy +evt_000227,u_0469,profile_saved,2026-06-08T13:44:00Z,u_0469_s01,ins_u_0469_003,{},v2.3.0-buggy +evt_000228,u_0597,activation_completed,2026-06-08T13:44:00Z,u_0597_s01,ins_u_0597_007,{},v2.3.0-buggy +evt_000229,u_0414,activation_completed,2026-06-08T13:46:00Z,u_0414_s01,ins_u_0414_005,{},v2.3.0-buggy +evt_000230,u_0477,onboarding_step_viewed,2026-06-08T13:47:00Z,u_0477_s01,ins_u_0477_004,{},v2.3.0-buggy +evt_000231,u_0469,onboarding_step_viewed,2026-06-08T13:48:00Z,u_0469_s01,ins_u_0469_004,{},v2.3.0-buggy +evt_000232,u_0762,feature_used,2026-06-08T13:53:00Z,u_0762_s01,ins_u_0762_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000233,u_0357,signup_started,2026-06-08T13:55:00Z,u_0357_s01,ins_u_0357_001,{},v2.3.0-buggy +evt_000234,u_0742,onboarding_completed,2026-06-08T13:59:00Z,u_0742_s01,ins_u_0742_006,"{""completed_at"": ""2026-06-08T13:58:00Z""}",v2.3.0-buggy +evt_000235,u_0357,signup_completed,2026-06-08T14:00:00Z,u_0357_s01,ins_u_0357_002,{},v2.3.0-buggy +evt_000236,u_0687,signup_started,2026-06-08T14:00:00Z,u_0687_s01,ins_u_0687_001,{},v2.3.0-buggy +evt_000237,u_0044,signup_started,2026-06-08T14:02:00Z,u_0044_s01,ins_u_0044_001,{},v2.3.0-buggy +evt_000238,u_0687,signup_completed,2026-06-08T14:02:00Z,u_0687_s01,ins_u_0687_002,{},v2.3.0-buggy +evt_000239,u_0477,feature_used,2026-06-08T14:03:00Z,u_0477_s01,ins_u_0477_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000240,u_0357,session_abandoned,2026-06-08T14:04:00Z,u_0357_s01,ins_u_0357_003,{},v2.3.0-buggy +evt_000241,u_0479,activation_completed,2026-06-08T14:04:00Z,u_0479_s01,ins_u_0479_007,{},v2.3.0-buggy +evt_000242,u_0507,signup_started,2026-06-08T14:04:00Z,u_0507_s01,ins_u_0507_001,{},v2.3.0-buggy +evt_000243,u_0762,onboarding_completed,2026-06-08T14:05:00Z,u_0762_s01,ins_u_0762_006,"{""completed_at"": ""2026-06-08T14:01:00Z""}",v2.3.0-buggy +evt_000244,u_0044,signup_completed,2026-06-08T14:06:00Z,u_0044_s01,ins_u_0044_002,{},v2.3.0-buggy +evt_000245,u_0687,profile_saved,2026-06-08T14:06:00Z,u_0687_s01,ins_u_0687_003,{},v2.3.0-buggy +evt_000246,u_0044,upsell_modal_shown,2026-06-08T14:07:00Z,u_0044_s01,ins_u_0044_003,{},v2.3.0-buggy +evt_000247,u_0687,onboarding_step_viewed,2026-06-08T14:08:00Z,u_0687_s01,ins_u_0687_004,{},v2.3.0-buggy +evt_000248,u_0044,profile_saved,2026-06-08T14:11:00Z,u_0044_s01,ins_u_0044_004,{},v2.3.0-buggy +evt_000249,u_0507,signup_completed,2026-06-08T14:12:00Z,u_0507_s01,ins_u_0507_002,{},v2.3.0-buggy +evt_000250,u_0044,onboarding_step_viewed,2026-06-08T14:16:00Z,u_0044_s01,ins_u_0044_005,{},v2.3.0-buggy +evt_000251,u_0044,onboarding_step_viewed,2026-06-08T14:17:00Z,u_0044_s01,ins_u_0044_005,{},v2.3.0-buggy +evt_000252,u_0507,profile_saved,2026-06-08T14:18:00Z,u_0507_s01,ins_u_0507_003,{},v2.3.0-buggy +evt_000253,u_0477,onboarding_completed,2026-06-08T14:22:00Z,u_0477_s01,ins_u_0477_006,"{""completed_at"": ""2026-06-08T14:18:00Z""}",v2.3.0-buggy +evt_000254,u_0507,onboarding_step_viewed,2026-06-08T14:22:00Z,u_0507_s01,ins_u_0507_004,{},v2.3.0-buggy +evt_000255,u_0469,onboarding_completed,2026-06-08T14:26:00Z,u_0469_s01,ins_u_0469_005,"{""completed_at"": ""2026-06-08T14:12:00Z""}",v2.3.0-buggy +evt_000256,u_0477,activation_completed,2026-06-08T14:38:00Z,u_0477_s01,ins_u_0477_007,{},v2.3.0-buggy +evt_000257,u_0535,signup_started,2026-06-08T14:38:00Z,u_0535_s01,ins_u_0535_001,{},v2.3.0-buggy +evt_000258,u_0369,signup_started,2026-06-08T14:40:00Z,u_0369_s01,ins_u_0369_001,{},v2.3.0-buggy +evt_000259,u_0369,signup_completed,2026-06-08T14:42:00Z,u_0369_s01,ins_u_0369_002,{},v2.3.0-buggy +evt_000260,u_0044,onboarding_completed,2026-06-08T14:43:00Z,u_0044_s01,ins_u_0044_006,"{""completed_at"": ""2026-06-08T14:39:00Z""}",v2.3.0-buggy +evt_000261,u_0687,onboarding_completed,2026-06-08T14:43:00Z,u_0687_s01,ins_u_0687_005,"{""completed_at"": ""2026-06-08T14:37:00Z""}",v2.3.0-buggy +evt_000262,u_0723,signup_started,2026-06-08T14:43:00Z,u_0723_s01,ins_u_0723_001,{},v2.3.0-buggy +evt_000263,u_0044,onboarding_completed,2026-06-08T14:44:00Z,u_0044_s01,ins_u_0044_006,"{""completed_at"": ""2026-06-08T14:39:00Z""}",v2.3.0-buggy +evt_000264,u_0369,profile_saved,2026-06-08T14:44:00Z,u_0369_s01,ins_u_0369_003,{},v2.3.0-buggy +evt_000265,u_0723,session_abandoned,2026-06-08T14:45:00Z,u_0723_s01,ins_u_0723_002,{},v2.3.0-buggy +evt_000266,u_0369,onboarding_step_viewed,2026-06-08T14:46:00Z,u_0369_s01,ins_u_0369_004,{},v2.3.0-buggy +evt_000267,u_0535,signup_completed,2026-06-08T14:46:00Z,u_0535_s01,ins_u_0535_002,{},v2.3.0-buggy +evt_000268,u_0535,onboarding_completed,2026-06-08T14:48:00Z,u_0535_s01,ins_u_0535_003,{},v2.3.0-buggy +evt_000269,u_0778,signup_started,2026-06-08T14:48:00Z,u_0778_s01,ins_u_0778_001,{},v2.3.0-buggy +evt_000270,u_0172,signup_started,2026-06-08T14:49:00Z,u_0172_s01,ins_u_0172_001,{},v2.3.0-buggy +evt_000271,u_0535,session_abandoned,2026-06-08T14:50:00Z,u_0535_s01,ins_u_0535_004,{},v2.3.0-buggy +evt_000272,u_0778,signup_completed,2026-06-08T14:51:00Z,u_0778_s01,ins_u_0778_002,{},v2.3.0-buggy +evt_000273,u_0778,profile_saved,2026-06-08T14:53:00Z,u_0778_s01,ins_u_0778_003,{},v2.3.0-buggy +evt_000274,u_0172,signup_completed,2026-06-08T14:57:00Z,u_0172_s01,ins_u_0172_002,{},v2.3.0-buggy +evt_000275,u_0778,onboarding_step_viewed,2026-06-08T14:57:00Z,u_0778_s01,ins_u_0778_004,{},v2.3.0-buggy +evt_000276,u_0507,onboarding_completed,2026-06-08T14:58:00Z,u_0507_s01,ins_u_0507_005,"{""completed_at"": ""2026-06-08T14:46:00Z""}",v2.3.0-buggy +evt_000277,u_0172,profile_saved,2026-06-08T15:03:00Z,u_0172_s01,ins_u_0172_003,{},v2.3.0-buggy +evt_000278,u_0444,signup_started,2026-06-08T15:15:00Z,u_0444_s01,ins_u_0444_001,{},v2.3.0-buggy +evt_000279,u_0330,signup_started,2026-06-08T15:16:00Z,u_0330_s01,ins_u_0330_001,{},v2.3.0-buggy +evt_000280,u_0109,signup_started,2026-06-08T15:19:00Z,u_0109_s01,ins_u_0109_001,{},v2.3.0-buggy +evt_000281,u_0330,signup_completed,2026-06-08T15:19:00Z,u_0330_s01,ins_u_0330_002,{},v2.3.0-buggy +evt_000282,u_0265,signup_started,2026-06-08T15:20:00Z,u_0265_s01,ins_u_0265_001,{},v2.3.0-buggy +evt_000283,u_0445,signup_started,2026-06-08T15:20:00Z,u_0445_s01,ins_u_0445_001,{},v2.3.0-buggy +evt_000284,u_0109,signup_completed,2026-06-08T15:21:00Z,u_0109_s01,ins_u_0109_002,{},v2.3.0-buggy +evt_000285,u_0444,signup_completed,2026-06-08T15:21:00Z,u_0444_s01,ins_u_0444_002,{},v2.3.0-buggy +evt_000286,u_0109,signup_completed,2026-06-08T15:22:00Z,u_0109_s01,ins_u_0109_002,{},v2.3.0-buggy +evt_000287,u_0109,profile_saved,2026-06-08T15:23:00Z,u_0109_s01,ins_u_0109_003,{},v2.3.0-buggy +evt_000288,u_0330,profile_saved,2026-06-08T15:25:00Z,u_0330_s01,ins_u_0330_003,{},v2.3.0-buggy +evt_000289,u_0044,activation_completed,2026-06-08T15:27:00Z,u_0044_s01,ins_u_0044_007,{},v2.3.0-buggy +evt_000290,u_0369,onboarding_completed,2026-06-08T15:27:00Z,u_0369_s01,ins_u_0369_005,"{""completed_at"": ""2026-06-08T15:23:00Z""}",v2.3.0-buggy +evt_000291,u_0445,signup_completed,2026-06-08T15:27:00Z,u_0445_s01,ins_u_0445_002,{},v2.3.0-buggy +evt_000292,u_0109,onboarding_step_viewed,2026-06-08T15:28:00Z,u_0109_s01,ins_u_0109_004,{},v2.3.0-buggy +evt_000293,u_0265,signup_completed,2026-06-08T15:28:00Z,u_0265_s01,ins_u_0265_002,{},v2.3.0-buggy +evt_000294,u_0265,profile_saved,2026-06-08T15:31:00Z,u_0265_s01,ins_u_0265_003,{},v2.3.0-buggy +evt_000295,u_0330,onboarding_step_viewed,2026-06-08T15:31:00Z,u_0330_s01,ins_u_0330_004,{},v2.3.0-buggy +evt_000296,u_0373,signup_started,2026-06-08T15:31:00Z,u_0373_s01,ins_u_0373_001,{},v2.3.0-buggy +evt_000297,u_0444,profile_saved,2026-06-08T15:31:00Z,u_0444_s01,ins_u_0444_003,{},v2.3.0-buggy +evt_000298,u_0445,profile_saved,2026-06-08T15:35:00Z,u_0445_s01,ins_u_0445_003,{},v2.3.0-buggy +evt_000299,u_0444,onboarding_step_viewed,2026-06-08T15:36:00Z,u_0444_s01,ins_u_0444_004,{},v2.3.0-buggy +evt_000300,u_0445,profile_saved,2026-06-08T15:36:00Z,u_0445_s01,ins_u_0445_003,{},v2.3.0-buggy +evt_000301,u_0109,feature_used,2026-06-08T15:38:00Z,u_0109_s01,ins_u_0109_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000302,u_0373,signup_completed,2026-06-08T15:39:00Z,u_0373_s01,ins_u_0373_002,{},v2.3.0-buggy +evt_000303,u_0373,signup_completed,2026-06-08T15:40:00Z,u_0373_s01,ins_u_0373_002,{},v2.3.0-buggy +evt_000304,u_0330,feature_used,2026-06-08T15:41:00Z,u_0330_s01,ins_u_0330_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000305,u_0445,feature_used,2026-06-08T15:44:00Z,u_0445_s01,ins_u_0445_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000306,u_0373,profile_saved,2026-06-08T15:47:00Z,u_0373_s01,ins_u_0373_003,{},v2.3.0-buggy +evt_000307,u_0373,error_shown,2026-06-08T15:48:00Z,u_0373_s01,ins_u_0373_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000308,u_0444,feature_used,2026-06-08T15:49:00Z,u_0444_s01,ins_u_0444_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000309,u_0373,onboarding_step_viewed,2026-06-08T15:51:00Z,u_0373_s01,ins_u_0373_005,{},v2.3.0-buggy +evt_000310,u_0420,signup_started,2026-06-08T15:54:00Z,u_0420_s01,ins_u_0420_001,{},v2.3.0-buggy +evt_000311,u_0265,feature_used,2026-06-08T15:56:00Z,u_0265_s01,ins_u_0265_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000312,u_0330,onboarding_completed,2026-06-08T15:57:00Z,u_0330_s01,ins_u_0330_006,"{""completed_at"": ""2026-06-08T16:02:00Z""}",v2.3.0-buggy +evt_000313,u_0441,signup_started,2026-06-08T15:57:00Z,u_0441_s01,ins_u_0441_001,{},v2.3.0-buggy +evt_000314,u_0796,signup_started,2026-06-08T15:57:00Z,u_0796_s01,ins_u_0796_001,{},v2.3.0-buggy +evt_000315,u_0265,onboarding_completed,2026-06-08T15:59:00Z,u_0265_s01,ins_u_0265_005,"{""completed_at"": ""2026-06-08T16:03:00Z""}",v2.3.0-buggy +evt_000316,u_0420,signup_completed,2026-06-08T15:59:00Z,u_0420_s01,ins_u_0420_002,{},v2.3.0-buggy +evt_000317,u_0373,feature_used,2026-06-08T16:00:00Z,u_0373_s01,ins_u_0373_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000318,u_0441,session_abandoned,2026-06-08T16:00:00Z,u_0441_s01,ins_u_0441_002,{},v2.3.0-buggy +evt_000319,u_0681,signup_started,2026-06-08T16:00:00Z,u_0681_s01,ins_u_0681_001,{},v2.3.0-buggy +evt_000320,u_0796,session_abandoned,2026-06-08T16:00:00Z,u_0796_s01,ins_u_0796_002,{},v2.3.0-buggy +evt_000321,u_0420,profile_saved,2026-06-08T16:01:00Z,u_0420_s01,ins_u_0420_003,{},v2.3.0-buggy +evt_000322,u_0444,onboarding_completed,2026-06-08T16:01:00Z,u_0444_s01,ins_u_0444_006,"{""completed_at"": ""2026-06-08T16:08:00Z""}",v2.3.0-buggy +evt_000323,u_0172,activation_completed,2026-06-08T16:02:00Z,u_0172_s01,ins_u_0172_004,{},v2.3.0-buggy +evt_000324,u_0128,signup_started,2026-06-08T16:04:00Z,u_0128_s01,ins_u_0128_001,{},v2.3.0-buggy +evt_000325,u_0032,signup_started,2026-06-08T16:05:00Z,u_0032_s01,ins_u_0032_001,{},v2.3.0-buggy +evt_000326,u_0420,onboarding_step_viewed,2026-06-08T16:07:00Z,u_0420_s01,ins_u_0420_004,{},v2.3.0-buggy +evt_000327,u_0032,signup_completed,2026-06-08T16:08:00Z,u_0032_s01,ins_u_0032_002,{},v2.3.0-buggy +evt_000328,u_0109,onboarding_completed,2026-06-08T16:08:00Z,u_0109_s01,ins_u_0109_006,"{""completed_at"": ""2026-06-08T15:56:00Z""}",v2.3.0-buggy +evt_000329,u_0681,signup_completed,2026-06-08T16:08:00Z,u_0681_s01,ins_u_0681_002,{},v2.3.0-buggy +evt_000330,u_0128,signup_completed,2026-06-08T16:09:00Z,u_0128_s01,ins_u_0128_002,{},v2.3.0-buggy +evt_000331,u_0609,signup_started,2026-06-08T16:09:00Z,u_0609_s01,ins_u_0609_001,{},v2.3.0-buggy +evt_000332,u_0128,onboarding_completed,2026-06-08T16:10:00Z,u_0128_s01,ins_u_0128_003,{},v2.3.0-buggy +evt_000333,u_0330,activation_completed,2026-06-08T16:13:00Z,u_0330_s01,ins_u_0330_007,{},v2.3.0-buggy +evt_000334,u_0032,profile_saved,2026-06-08T16:14:00Z,u_0032_s01,ins_u_0032_003,{},v2.3.0-buggy +evt_000335,u_0109,activation_completed,2026-06-08T16:15:00Z,u_0109_s01,ins_u_0109_007,{},v2.3.0-buggy +evt_000336,u_0128,session_abandoned,2026-06-08T16:16:00Z,u_0128_s01,ins_u_0128_004,{},v2.3.0-buggy +evt_000337,u_0609,signup_completed,2026-06-08T16:16:00Z,u_0609_s01,ins_u_0609_002,{},v2.3.0-buggy +evt_000338,u_0681,profile_saved,2026-06-08T16:16:00Z,u_0681_s01,ins_u_0681_003,{},v2.3.0-buggy +evt_000339,u_0681,error_shown,2026-06-08T16:17:00Z,u_0681_s01,ins_u_0681_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000340,u_0445,onboarding_completed,2026-06-08T16:18:00Z,u_0445_s01,ins_u_0445_005,"{""completed_at"": ""2026-06-08T16:15:00Z""}",v2.3.0-buggy +evt_000341,u_0681,onboarding_step_viewed,2026-06-08T16:18:00Z,u_0681_s01,ins_u_0681_005,{},v2.3.0-buggy +evt_000342,u_0032,onboarding_step_viewed,2026-06-08T16:20:00Z,u_0032_s01,ins_u_0032_004,{},v2.3.0-buggy +evt_000343,u_0609,profile_saved,2026-06-08T16:25:00Z,u_0609_s01,ins_u_0609_003,{},v2.3.0-buggy +evt_000344,u_0420,feature_used,2026-06-08T16:26:00Z,u_0420_s01,ins_u_0420_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000345,u_0543,signup_started,2026-06-08T16:27:00Z,u_0543_s01,ins_u_0543_001,{},v2.3.0-buggy +evt_000346,u_0373,onboarding_completed,2026-06-08T16:29:00Z,u_0373_s01,ins_u_0373_007,"{""completed_at"": ""2026-06-08T16:18:00Z""}",v2.3.0-buggy +evt_000347,u_0543,signup_completed,2026-06-08T16:29:00Z,u_0543_s01,ins_u_0543_002,{},v2.3.0-buggy +evt_000348,u_0609,onboarding_step_viewed,2026-06-08T16:29:00Z,u_0609_s01,ins_u_0609_004,{},v2.3.0-buggy +evt_000349,u_0543,upsell_modal_shown,2026-06-08T16:30:00Z,u_0543_s01,ins_u_0543_003,{},v2.3.0-buggy +evt_000350,u_0543,onboarding_completed,2026-06-08T16:30:00Z,u_0543_s01,ins_u_0543_004,{},v2.3.0-buggy +evt_000351,u_0420,onboarding_completed,2026-06-08T16:34:00Z,u_0420_s01,ins_u_0420_006,"{""completed_at"": ""2026-06-08T16:27:00Z""}",v2.3.0-buggy +evt_000352,u_0543,session_abandoned,2026-06-08T16:35:00Z,u_0543_s01,ins_u_0543_005,{},v2.3.0-buggy +evt_000353,u_0429,signup_started,2026-06-08T16:38:00Z,u_0429_s01,ins_u_0429_001,{},v2.3.0-buggy +evt_000354,u_0429,signup_completed,2026-06-08T16:39:00Z,u_0429_s01,ins_u_0429_002,{},v2.3.0-buggy +evt_000355,u_0490,signup_started,2026-06-08T16:40:00Z,u_0490_s01,ins_u_0490_001,{},v2.3.0-buggy +evt_000356,u_0429,profile_saved,2026-06-08T16:41:00Z,u_0429_s01,ins_u_0429_003,{},v2.3.0-buggy +evt_000357,u_0490,signup_completed,2026-06-08T16:42:00Z,u_0490_s01,ins_u_0490_002,{},v2.3.0-buggy +evt_000358,u_0609,feature_used,2026-06-08T16:43:00Z,u_0609_s01,ins_u_0609_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000359,u_0482,signup_started,2026-06-08T16:44:00Z,u_0482_s01,ins_u_0482_001,{},v2.3.0-buggy +evt_000360,u_0482,signup_completed,2026-06-08T16:45:00Z,u_0482_s01,ins_u_0482_002,{},v2.3.0-buggy +evt_000361,u_0763,signup_started,2026-06-08T16:45:00Z,u_0763_s01,ins_u_0763_001,{},v2.3.0-buggy +evt_000362,u_0429,onboarding_step_viewed,2026-06-08T16:46:00Z,u_0429_s01,ins_u_0429_004,{},v2.3.0-buggy +evt_000363,u_0681,onboarding_completed,2026-06-08T16:46:00Z,u_0681_s01,ins_u_0681_006,"{""completed_at"": ""2026-06-08T16:52:00Z""}",v2.3.0-buggy +evt_000364,u_0490,profile_saved,2026-06-08T16:48:00Z,u_0490_s01,ins_u_0490_003,{},v2.3.0-buggy +evt_000365,u_0763,signup_completed,2026-06-08T16:49:00Z,u_0763_s01,ins_u_0763_002,{},v2.3.0-buggy +evt_000366,u_0222,signup_started,2026-06-08T16:50:00Z,u_0222_s01,ins_u_0222_001,{},v2.3.0-buggy +evt_000367,u_0222,signup_completed,2026-06-08T16:51:00Z,u_0222_s01,ins_u_0222_002,{},v2.3.0-buggy +evt_000368,u_0444,activation_completed,2026-06-08T16:51:00Z,u_0444_s01,ins_u_0444_007,{},v2.3.0-buggy +evt_000369,u_0445,activation_completed,2026-06-08T16:51:00Z,u_0445_s01,ins_u_0445_006,{},v2.3.0-buggy +evt_000370,u_0490,onboarding_step_viewed,2026-06-08T16:52:00Z,u_0490_s01,ins_u_0490_004,{},v2.3.0-buggy +evt_000371,u_0222,onboarding_completed,2026-06-08T16:53:00Z,u_0222_s01,ins_u_0222_003,{},v2.3.0-buggy +evt_000372,u_0763,session_abandoned,2026-06-08T16:54:00Z,u_0763_s01,ins_u_0763_003,{},v2.3.0-buggy +evt_000373,u_0429,feature_used,2026-06-08T16:55:00Z,u_0429_s01,ins_u_0429_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000374,u_0482,profile_saved,2026-06-08T16:55:00Z,u_0482_s01,ins_u_0482_003,{},v2.3.0-buggy +evt_000375,u_0188,signup_started,2026-06-08T16:57:00Z,u_0188_s01,ins_u_0188_001,{},v2.3.0-buggy +evt_000376,u_0482,onboarding_step_viewed,2026-06-08T16:58:00Z,u_0482_s01,ins_u_0482_004,{},v2.3.0-buggy +evt_000377,u_0032,onboarding_completed,2026-06-08T16:59:00Z,u_0032_s01,ins_u_0032_005,"{""completed_at"": ""2026-06-08T16:54:00Z""}",v2.3.0-buggy +evt_000378,u_0062,signup_started,2026-06-08T16:59:00Z,u_0062_s01,ins_u_0062_001,{},v2.3.0-buggy +evt_000379,u_0609,onboarding_completed,2026-06-08T16:59:00Z,u_0609_s01,ins_u_0609_006,"{""completed_at"": ""2026-06-08T17:04:00Z""}",v2.3.0-buggy +evt_000380,u_0222,session_abandoned,2026-06-08T17:00:00Z,u_0222_s01,ins_u_0222_004,{},v2.3.0-buggy +evt_000381,u_0032,activation_completed,2026-06-08T17:03:00Z,u_0032_s01,ins_u_0032_006,{},v2.3.0-buggy +evt_000382,u_0062,session_abandoned,2026-06-08T17:04:00Z,u_0062_s01,ins_u_0062_002,{},v2.3.0-buggy +evt_000383,u_0188,signup_completed,2026-06-08T17:05:00Z,u_0188_s01,ins_u_0188_002,{},v2.3.0-buggy +evt_000384,u_0188,onboarding_completed,2026-06-08T17:07:00Z,u_0188_s01,ins_u_0188_003,{},v2.3.0-buggy +evt_000385,u_0400,signup_started,2026-06-08T17:09:00Z,u_0400_s01,ins_u_0400_001,{},v2.3.0-buggy +evt_000386,u_0482,feature_used,2026-06-08T17:09:00Z,u_0482_s01,ins_u_0482_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000387,u_0188,session_abandoned,2026-06-08T17:14:00Z,u_0188_s01,ins_u_0188_004,{},v2.3.0-buggy +evt_000388,u_0400,signup_completed,2026-06-08T17:15:00Z,u_0400_s01,ins_u_0400_002,{},v2.3.0-buggy +evt_000389,u_0681,activation_completed,2026-06-08T17:17:00Z,u_0681_s01,ins_u_0681_007,{},v2.3.0-buggy +evt_000390,u_0400,session_abandoned,2026-06-08T17:22:00Z,u_0400_s01,ins_u_0400_003,{},v2.3.0-buggy +evt_000391,u_0429,onboarding_completed,2026-06-08T17:22:00Z,u_0429_s01,ins_u_0429_006,"{""completed_at"": ""2026-06-08T17:21:00Z""}",v2.3.0-buggy +evt_000392,u_0490,onboarding_completed,2026-06-08T17:22:00Z,u_0490_s01,ins_u_0490_005,"{""completed_at"": ""2026-06-08T17:18:00Z""}",v2.3.0-buggy +evt_000393,u_0429,activation_completed,2026-06-08T17:34:00Z,u_0429_s01,ins_u_0429_007,{},v2.3.0-buggy +evt_000394,u_0482,onboarding_completed,2026-06-08T17:37:00Z,u_0482_s01,ins_u_0482_006,"{""completed_at"": ""2026-06-08T17:35:00Z""}",v2.3.0-buggy +evt_000395,u_0152,signup_started,2026-06-08T17:38:00Z,u_0152_s01,ins_u_0152_001,{},v2.3.0-buggy +evt_000396,u_0152,signup_completed,2026-06-08T17:40:00Z,u_0152_s01,ins_u_0152_002,{},v2.3.0-buggy +evt_000397,u_0609,activation_completed,2026-06-08T17:44:00Z,u_0609_s01,ins_u_0609_007,{},v2.3.0-buggy +evt_000398,u_0648,signup_started,2026-06-08T17:45:00Z,u_0648_s01,ins_u_0648_001,{},v2.3.0-buggy +evt_000399,u_0648,signup_completed,2026-06-08T17:47:00Z,u_0648_s01,ins_u_0648_002,{},v2.3.0-buggy +evt_000400,u_0152,session_abandoned,2026-06-08T17:49:00Z,u_0152_s01,ins_u_0152_003,{},v2.3.0-buggy +evt_000401,u_0610,signup_started,2026-06-08T17:50:00Z,u_0610_s01,ins_u_0610_001,{},v2.3.0-buggy +evt_000402,u_0490,activation_completed,2026-06-08T17:51:00Z,u_0490_s01,ins_u_0490_006,{},v2.3.0-buggy +evt_000403,u_0610,session_abandoned,2026-06-08T17:52:00Z,u_0610_s01,ins_u_0610_002,{},v2.3.0-buggy +evt_000404,u_0648,profile_saved,2026-06-08T17:54:00Z,u_0648_s01,ins_u_0648_003,{},v2.3.0-buggy +evt_000405,u_0458,signup_started,2026-06-08T17:57:00Z,u_0458_s01,ins_u_0458_001,{},v2.3.0-buggy +evt_000406,u_0583,signup_started,2026-06-08T17:57:00Z,u_0583_s01,ins_u_0583_001,{},v2.3.0-buggy +evt_000407,u_0648,onboarding_step_viewed,2026-06-08T17:57:00Z,u_0648_s01,ins_u_0648_004,{},v2.3.0-buggy +evt_000408,u_0458,signup_completed,2026-06-08T18:03:00Z,u_0458_s01,ins_u_0458_002,{},v2.3.0-buggy +evt_000409,u_0583,signup_completed,2026-06-08T18:04:00Z,u_0583_s01,ins_u_0583_002,{},v2.3.0-buggy +evt_000410,u_0583,signup_completed,2026-06-08T18:05:00Z,u_0583_s01,ins_u_0583_002,{},v2.3.0-buggy +evt_000411,u_0583,upsell_modal_shown,2026-06-08T18:05:00Z,u_0583_s01,ins_u_0583_003,{},v2.3.0-buggy +evt_000412,u_0458,profile_saved,2026-06-08T18:09:00Z,u_0458_s01,ins_u_0458_003,{},v2.3.0-buggy +evt_000413,u_0458,error_shown,2026-06-08T18:10:00Z,u_0458_s01,ins_u_0458_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000414,u_0583,session_abandoned,2026-06-08T18:10:00Z,u_0583_s01,ins_u_0583_004,{},v2.3.0-buggy +evt_000415,u_0126,signup_started,2026-06-08T18:12:00Z,u_0126_s01,ins_u_0126_001,{},v2.3.0-buggy +evt_000416,u_0458,onboarding_step_viewed,2026-06-08T18:12:00Z,u_0458_s01,ins_u_0458_005,{},v2.3.0-buggy +evt_000417,u_0126,signup_completed,2026-06-08T18:15:00Z,u_0126_s01,ins_u_0126_002,{},v2.3.0-buggy +evt_000418,u_0126,profile_saved,2026-06-08T18:19:00Z,u_0126_s01,ins_u_0126_003,{},v2.3.0-buggy +evt_000419,u_0309,signup_started,2026-06-08T18:19:00Z,u_0309_s01,ins_u_0309_001,{},v2.3.0-buggy +evt_000420,u_0126,onboarding_step_viewed,2026-06-08T18:21:00Z,u_0126_s01,ins_u_0126_004,{},v2.3.0-buggy +evt_000421,u_0309,signup_completed,2026-06-08T18:21:00Z,u_0309_s01,ins_u_0309_002,{},v2.3.0-buggy +evt_000422,u_0648,onboarding_completed,2026-06-08T18:27:00Z,u_0648_s01,ins_u_0648_005,"{""completed_at"": ""2026-06-08T18:34:00Z""}",v2.3.0-buggy +evt_000423,u_0292,signup_started,2026-06-08T18:29:00Z,u_0292_s01,ins_u_0292_001,{},v2.3.0-buggy +evt_000424,u_0309,profile_saved,2026-06-08T18:29:00Z,u_0309_s01,ins_u_0309_003,{},v2.3.0-buggy +evt_000425,u_0392,signup_started,2026-06-08T18:29:00Z,u_0392_s01,ins_u_0392_001,{},v2.3.0-buggy +evt_000426,u_0292,signup_completed,2026-06-08T18:30:00Z,u_0292_s01,ins_u_0292_002,{},v2.3.0-buggy +evt_000427,u_0126,feature_used,2026-06-08T18:31:00Z,u_0126_s01,ins_u_0126_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000428,u_0309,onboarding_step_viewed,2026-06-08T18:32:00Z,u_0309_s01,ins_u_0309_004,{},v2.3.0-buggy +evt_000429,u_0521,signup_started,2026-06-08T18:34:00Z,u_0521_s01,ins_u_0521_001,{},v2.3.0-buggy +evt_000430,u_0392,signup_completed,2026-06-08T18:37:00Z,u_0392_s01,ins_u_0392_002,{},v2.3.0-buggy +evt_000431,u_0292,profile_saved,2026-06-08T18:38:00Z,u_0292_s01,ins_u_0292_003,{},v2.3.0-buggy +evt_000432,u_0392,profile_saved,2026-06-08T18:40:00Z,u_0392_s01,ins_u_0392_003,{},v2.3.0-buggy +evt_000433,u_0521,signup_completed,2026-06-08T18:41:00Z,u_0521_s01,ins_u_0521_002,{},v2.3.0-buggy +evt_000434,u_0292,onboarding_step_viewed,2026-06-08T18:43:00Z,u_0292_s01,ins_u_0292_004,{},v2.3.0-buggy +evt_000435,u_0124,signup_started,2026-06-08T18:44:00Z,u_0124_s01,ins_u_0124_001,{},v2.3.0-buggy +evt_000436,u_0124,signup_completed,2026-06-08T18:45:00Z,u_0124_s01,ins_u_0124_002,{},v2.3.0-buggy +evt_000437,u_0392,onboarding_step_viewed,2026-06-08T18:45:00Z,u_0392_s01,ins_u_0392_004,{},v2.3.0-buggy +evt_000438,u_0126,onboarding_completed,2026-06-08T18:46:00Z,u_0126_s01,ins_u_0126_006,"{""completed_at"": ""2026-06-08T18:48:00Z""}",v2.3.0-buggy +evt_000439,u_0292,feature_used,2026-06-08T18:47:00Z,u_0292_s01,ins_u_0292_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000440,u_0094,signup_started,2026-06-08T18:48:00Z,u_0094_s01,ins_u_0094_001,{},v2.3.0-buggy +evt_000441,u_0124,profile_saved,2026-06-08T18:48:00Z,u_0124_s01,ins_u_0124_003,{},v2.3.0-buggy +evt_000442,u_0458,onboarding_completed,2026-06-08T18:49:00Z,u_0458_s01,ins_u_0458_006,"{""completed_at"": ""2026-06-08T18:41:00Z""}",v2.3.0-buggy +evt_000443,u_0521,profile_saved,2026-06-08T18:50:00Z,u_0521_s01,ins_u_0521_003,{},v2.3.0-buggy +evt_000444,u_0094,signup_completed,2026-06-08T18:51:00Z,u_0094_s01,ins_u_0094_002,{},v2.3.0-buggy +evt_000445,u_0521,error_shown,2026-06-08T18:51:00Z,u_0521_s01,ins_u_0521_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000446,u_0124,onboarding_step_viewed,2026-06-08T18:52:00Z,u_0124_s01,ins_u_0124_004,{},v2.3.0-buggy +evt_000447,u_0094,profile_saved,2026-06-08T18:54:00Z,u_0094_s01,ins_u_0094_003,{},v2.3.0-buggy +evt_000448,u_0449,signup_started,2026-06-08T18:54:00Z,u_0449_s01,ins_u_0449_001,{},v2.3.0-buggy +evt_000449,u_0521,onboarding_step_viewed,2026-06-08T18:56:00Z,u_0521_s01,ins_u_0521_005,{},v2.3.0-buggy +evt_000450,u_0094,onboarding_step_viewed,2026-06-08T18:57:00Z,u_0094_s01,ins_u_0094_004,{},v2.3.0-buggy +evt_000451,u_0449,signup_completed,2026-06-08T18:58:00Z,u_0449_s01,ins_u_0449_002,{},v2.3.0-buggy +evt_000452,u_0428,signup_started,2026-06-08T19:02:00Z,u_0428_s01,ins_u_0428_001,{},v2.3.0-buggy +evt_000453,u_0428,session_abandoned,2026-06-08T19:03:00Z,u_0428_s01,ins_u_0428_002,{},v2.3.0-buggy +evt_000454,u_0392,feature_used,2026-06-08T19:04:00Z,u_0392_s01,ins_u_0392_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000455,u_0449,session_abandoned,2026-06-08T19:06:00Z,u_0449_s01,ins_u_0449_003,{},v2.3.0-buggy +evt_000456,u_0224,signup_started,2026-06-08T19:07:00Z,u_0224_s01,ins_u_0224_001,{},v2.3.0-buggy +evt_000457,u_0292,onboarding_completed,2026-06-08T19:07:00Z,u_0292_s01,ins_u_0292_006,"{""completed_at"": ""2026-06-08T19:04:00Z""}",v2.3.0-buggy +evt_000458,u_0309,onboarding_completed,2026-06-08T19:08:00Z,u_0309_s01,ins_u_0309_005,"{""completed_at"": ""2026-06-08T19:06:00Z""}",v2.3.0-buggy +evt_000459,u_0450,signup_started,2026-06-08T19:08:00Z,u_0450_s01,ins_u_0450_001,{},v2.3.0-buggy +evt_000460,u_0755,signup_started,2026-06-08T19:11:00Z,u_0755_s01,ins_u_0755_001,{},v2.3.0-buggy +evt_000461,u_0124,feature_used,2026-06-08T19:13:00Z,u_0124_s01,ins_u_0124_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000462,u_0698,signup_started,2026-06-08T19:14:00Z,u_0698_s01,ins_u_0698_001,{},v2.3.0-buggy +evt_000463,u_0224,signup_completed,2026-06-08T19:15:00Z,u_0224_s01,ins_u_0224_002,{},v2.3.0-buggy +evt_000464,u_0698,signup_completed,2026-06-08T19:15:00Z,u_0698_s01,ins_u_0698_002,{},v2.3.0-buggy +evt_000465,u_0450,session_abandoned,2026-06-08T19:16:00Z,u_0450_s01,ins_u_0450_002,{},v2.3.0-buggy +evt_000466,u_0224,onboarding_completed,2026-06-08T19:17:00Z,u_0224_s01,ins_u_0224_003,{},v2.3.0-buggy +evt_000467,u_0126,activation_completed,2026-06-08T19:19:00Z,u_0126_s01,ins_u_0126_007,{},v2.3.0-buggy +evt_000468,u_0755,signup_completed,2026-06-08T19:19:00Z,u_0755_s01,ins_u_0755_002,{},v2.3.0-buggy +evt_000469,u_0124,onboarding_completed,2026-06-08T19:20:00Z,u_0124_s01,ins_u_0124_006,"{""completed_at"": ""2026-06-08T19:19:00Z""}",v2.3.0-buggy +evt_000470,u_0224,session_abandoned,2026-06-08T19:20:00Z,u_0224_s01,ins_u_0224_004,{},v2.3.0-buggy +evt_000471,u_0755,onboarding_completed,2026-06-08T19:20:00Z,u_0755_s01,ins_u_0755_003,{},v2.3.0-buggy +evt_000472,u_0521,onboarding_completed,2026-06-08T19:22:00Z,u_0521_s01,ins_u_0521_006,"{""completed_at"": ""2026-06-08T19:23:00Z""}",v2.3.0-buggy +evt_000473,u_0392,onboarding_completed,2026-06-08T19:23:00Z,u_0392_s01,ins_u_0392_006,"{""completed_at"": ""2026-06-08T19:14:00Z""}",v2.3.0-buggy +evt_000474,u_0698,profile_saved,2026-06-08T19:23:00Z,u_0698_s01,ins_u_0698_003,{},v2.3.0-buggy +evt_000475,u_0094,onboarding_completed,2026-06-08T19:24:00Z,u_0094_s01,ins_u_0094_005,"{""completed_at"": ""2026-06-08T19:27:00Z""}",v2.3.0-buggy +evt_000476,u_0218,signup_started,2026-06-08T19:24:00Z,u_0218_s01,ins_u_0218_001,{},v2.3.0-buggy +evt_000477,u_0729,signup_started,2026-06-08T19:25:00Z,u_0729_s01,ins_u_0729_001,{},v2.3.0-buggy +evt_000478,u_0755,session_abandoned,2026-06-08T19:25:00Z,u_0755_s01,ins_u_0755_004,{},v2.3.0-buggy +evt_000479,u_0698,onboarding_step_viewed,2026-06-08T19:26:00Z,u_0698_s01,ins_u_0698_004,{},v2.3.0-buggy +evt_000480,u_0045,signup_started,2026-06-08T19:27:00Z,u_0045_s01,ins_u_0045_001,{},v2.3.0-buggy +evt_000481,u_0698,onboarding_step_viewed,2026-06-08T19:27:00Z,u_0698_s01,ins_u_0698_004,{},v2.3.0-buggy +evt_000482,u_0729,signup_completed,2026-06-08T19:27:00Z,u_0729_s01,ins_u_0729_002,{},v2.3.0-buggy +evt_000483,u_0218,signup_completed,2026-06-08T19:28:00Z,u_0218_s01,ins_u_0218_002,{},v2.3.0-buggy +evt_000484,u_0729,profile_saved,2026-06-08T19:31:00Z,u_0729_s01,ins_u_0729_003,{},v2.3.0-buggy +evt_000485,u_0045,signup_completed,2026-06-08T19:34:00Z,u_0045_s01,ins_u_0045_002,{},v2.3.0-buggy +evt_000486,u_0218,profile_saved,2026-06-08T19:34:00Z,u_0218_s01,ins_u_0218_003,{},v2.3.0-buggy +evt_000487,u_0045,onboarding_completed,2026-06-08T19:36:00Z,u_0045_s01,ins_u_0045_003,{},v2.3.0-buggy +evt_000488,u_0521,activation_completed,2026-06-08T19:37:00Z,u_0521_s01,ins_u_0521_007,{},v2.3.0-buggy +evt_000489,u_0729,onboarding_step_viewed,2026-06-08T19:37:00Z,u_0729_s01,ins_u_0729_004,{},v2.3.0-buggy +evt_000490,u_0197,signup_started,2026-06-08T19:39:00Z,u_0197_s01,ins_u_0197_001,{},v2.3.0-buggy +evt_000491,u_0218,onboarding_step_viewed,2026-06-08T19:39:00Z,u_0218_s01,ins_u_0218_004,{},v2.3.0-buggy +evt_000492,u_0372,signup_started,2026-06-08T19:39:00Z,u_0372_s01,ins_u_0372_001,{},v2.3.0-buggy +evt_000493,u_0045,session_abandoned,2026-06-08T19:41:00Z,u_0045_s01,ins_u_0045_004,{},v2.3.0-buggy +evt_000494,u_0309,activation_completed,2026-06-08T19:41:00Z,u_0309_s01,ins_u_0309_006,{},v2.3.0-buggy +evt_000495,u_0197,signup_completed,2026-06-08T19:42:00Z,u_0197_s01,ins_u_0197_002,{},v2.3.0-buggy +evt_000496,u_0258,signup_started,2026-06-08T19:45:00Z,u_0258_s01,ins_u_0258_001,{},v2.3.0-buggy +evt_000497,u_0372,signup_completed,2026-06-08T19:45:00Z,u_0372_s01,ins_u_0372_002,{},v2.3.0-buggy +evt_000498,u_0700,signup_started,2026-06-08T19:49:00Z,u_0700_s01,ins_u_0700_001,{},v2.3.0-buggy +evt_000499,u_0197,profile_saved,2026-06-08T19:51:00Z,u_0197_s01,ins_u_0197_003,{},v2.3.0-buggy +evt_000500,u_0372,profile_saved,2026-06-08T19:51:00Z,u_0372_s01,ins_u_0372_003,{},v2.3.0-buggy +evt_000501,u_0700,signup_completed,2026-06-08T19:51:00Z,u_0700_s01,ins_u_0700_002,{},v2.3.0-buggy +evt_000502,u_0042,signup_started,2026-06-08T19:53:00Z,u_0042_s01,ins_u_0042_001,{},v2.3.0-buggy +evt_000503,u_0218,feature_used,2026-06-08T19:53:00Z,u_0218_s01,ins_u_0218_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000504,u_0258,session_abandoned,2026-06-08T19:53:00Z,u_0258_s01,ins_u_0258_002,{},v2.3.0-buggy +evt_000505,u_0700,profile_saved,2026-06-08T19:53:00Z,u_0700_s01,ins_u_0700_003,{},v2.3.0-buggy +evt_000506,u_0698,onboarding_completed,2026-06-08T19:54:00Z,u_0698_s01,ins_u_0698_005,"{""completed_at"": ""2026-06-08T19:58:00Z""}",v2.3.0-buggy +evt_000507,u_0197,onboarding_step_viewed,2026-06-08T19:55:00Z,u_0197_s01,ins_u_0197_004,{},v2.3.0-buggy +evt_000508,u_0372,onboarding_step_viewed,2026-06-08T19:56:00Z,u_0372_s01,ins_u_0372_004,{},v2.3.0-buggy +evt_000509,u_0042,signup_completed,2026-06-08T19:57:00Z,u_0042_s01,ins_u_0042_002,{},v2.3.0-buggy +evt_000510,u_0372,onboarding_step_viewed,2026-06-08T19:57:00Z,u_0372_s01,ins_u_0372_004,{},v2.3.0-buggy +evt_000511,u_0700,onboarding_step_viewed,2026-06-08T19:58:00Z,u_0700_s01,ins_u_0700_004,{},v2.3.0-buggy +evt_000512,u_0729,onboarding_completed,2026-06-08T19:59:00Z,u_0729_s01,ins_u_0729_005,"{""completed_at"": ""2026-06-08T20:08:00Z""}",v2.3.0-buggy +evt_000513,u_0616,signup_started,2026-06-08T20:00:00Z,u_0616_s01,ins_u_0616_001,{},v2.3.0-buggy +evt_000514,u_0042,session_abandoned,2026-06-08T20:02:00Z,u_0042_s01,ins_u_0042_003,{},v2.3.0-buggy +evt_000515,u_0030,signup_started,2026-06-08T20:06:00Z,u_0030_s01,ins_u_0030_001,{},v2.3.0-buggy +evt_000516,u_0593,signup_started,2026-06-08T20:07:00Z,u_0593_s01,ins_u_0593_001,{},v2.3.0-buggy +evt_000517,u_0700,feature_used,2026-06-08T20:07:00Z,u_0700_s01,ins_u_0700_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000518,u_0616,signup_completed,2026-06-08T20:08:00Z,u_0616_s01,ins_u_0616_002,{},v2.3.0-buggy +evt_000519,u_0142,signup_started,2026-06-08T20:11:00Z,u_0142_s01,ins_u_0142_001,{},v2.3.0-buggy +evt_000520,u_0593,signup_completed,2026-06-08T20:12:00Z,u_0593_s01,ins_u_0593_002,{},v2.3.0-buggy +evt_000521,u_0030,signup_completed,2026-06-08T20:13:00Z,u_0030_s01,ins_u_0030_002,{},v2.3.0-buggy +evt_000522,u_0333,signup_started,2026-06-08T20:13:00Z,u_0333_s01,ins_u_0333_001,{},v2.3.0-buggy +evt_000523,u_0218,onboarding_completed,2026-06-08T20:14:00Z,u_0218_s01,ins_u_0218_006,"{""completed_at"": ""2026-06-08T20:12:00Z""}",v2.3.0-buggy +evt_000524,u_0333,signup_completed,2026-06-08T20:14:00Z,u_0333_s01,ins_u_0333_002,{},v2.3.0-buggy +evt_000525,u_0142,signup_completed,2026-06-08T20:17:00Z,u_0142_s01,ins_u_0142_002,{},v2.3.0-buggy +evt_000526,u_0616,profile_saved,2026-06-08T20:17:00Z,u_0616_s01,ins_u_0616_003,{},v2.3.0-buggy +evt_000527,u_0281,signup_started,2026-06-08T20:18:00Z,u_0281_s01,ins_u_0281_001,{},v2.3.0-buggy +evt_000528,u_0593,session_abandoned,2026-06-08T20:19:00Z,u_0593_s01,ins_u_0593_003,{},v2.3.0-buggy +evt_000529,u_0698,activation_completed,2026-06-08T20:19:00Z,u_0698_s01,ins_u_0698_006,{},v2.3.0-buggy +evt_000530,u_0030,profile_saved,2026-06-08T20:20:00Z,u_0030_s01,ins_u_0030_003,{},v2.3.0-buggy +evt_000531,u_0390,signup_started,2026-06-08T20:20:00Z,u_0390_s01,ins_u_0390_001,{},v2.3.0-buggy +evt_000532,u_0274,signup_started,2026-06-08T20:21:00Z,u_0274_s01,ins_u_0274_001,{},v2.3.0-buggy +evt_000533,u_0390,signup_completed,2026-06-08T20:21:00Z,u_0390_s01,ins_u_0390_002,{},v2.3.0-buggy +evt_000534,u_0142,profile_saved,2026-06-08T20:23:00Z,u_0142_s01,ins_u_0142_003,{},v2.3.0-buggy +evt_000535,u_0333,profile_saved,2026-06-08T20:23:00Z,u_0333_s01,ins_u_0333_003,{},v2.3.0-buggy +evt_000536,u_0281,signup_completed,2026-06-08T20:24:00Z,u_0281_s01,ins_u_0281_002,{},v2.3.0-buggy +evt_000537,u_0274,signup_completed,2026-06-08T20:25:00Z,u_0274_s01,ins_u_0274_002,{},v2.3.0-buggy +evt_000538,u_0281,onboarding_completed,2026-06-08T20:25:00Z,u_0281_s01,ins_u_0281_003,{},v2.3.0-buggy +evt_000539,u_0030,onboarding_step_viewed,2026-06-08T20:26:00Z,u_0030_s01,ins_u_0030_004,{},v2.3.0-buggy +evt_000540,u_0142,onboarding_step_viewed,2026-06-08T20:26:00Z,u_0142_s01,ins_u_0142_004,{},v2.3.0-buggy +evt_000541,u_0700,onboarding_completed,2026-06-08T20:26:00Z,u_0700_s01,ins_u_0700_006,"{""completed_at"": ""2026-06-08T20:33:00Z""}",v2.3.0-buggy +evt_000542,u_0274,profile_saved,2026-06-08T20:27:00Z,u_0274_s01,ins_u_0274_003,{},v2.3.0-buggy +evt_000543,u_0333,onboarding_step_viewed,2026-06-08T20:27:00Z,u_0333_s01,ins_u_0333_004,{},v2.3.0-buggy +evt_000544,u_0274,onboarding_step_viewed,2026-06-08T20:29:00Z,u_0274_s01,ins_u_0274_004,{},v2.3.0-buggy +evt_000545,u_0281,session_abandoned,2026-06-08T20:29:00Z,u_0281_s01,ins_u_0281_004,{},v2.3.0-buggy +evt_000546,u_0030,feature_used,2026-06-08T20:30:00Z,u_0030_s01,ins_u_0030_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000547,u_0197,onboarding_completed,2026-06-08T20:30:00Z,u_0197_s01,ins_u_0197_005,"{""completed_at"": ""2026-06-08T20:29:00Z""}",v2.3.0-buggy +evt_000548,u_0390,profile_saved,2026-06-08T20:30:00Z,u_0390_s01,ins_u_0390_003,{},v2.3.0-buggy +evt_000549,u_0764,signup_started,2026-06-08T20:33:00Z,u_0764_s01,ins_u_0764_001,{},v2.3.0-buggy +evt_000550,u_0274,feature_used,2026-06-08T20:34:00Z,u_0274_s01,ins_u_0274_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000551,u_0764,session_abandoned,2026-06-08T20:36:00Z,u_0764_s01,ins_u_0764_002,{},v2.3.0-buggy +evt_000552,u_0085,signup_started,2026-06-08T20:40:00Z,u_0085_s01,ins_u_0085_001,{},v2.3.0-buggy +evt_000553,u_0272,signup_started,2026-06-08T20:41:00Z,u_0272_s01,ins_u_0272_001,{},v2.3.0-buggy +evt_000554,u_0272,signup_completed,2026-06-08T20:45:00Z,u_0272_s01,ins_u_0272_002,{},v2.3.0-buggy +evt_000555,u_0333,feature_used,2026-06-08T20:45:00Z,u_0333_s01,ins_u_0333_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000556,u_0189,signup_started,2026-06-08T20:46:00Z,u_0189_s01,ins_u_0189_001,{},v2.3.0-buggy +evt_000557,u_0272,upsell_modal_shown,2026-06-08T20:46:00Z,u_0272_s01,ins_u_0272_003,{},v2.3.0-buggy +evt_000558,u_0085,signup_completed,2026-06-08T20:47:00Z,u_0085_s01,ins_u_0085_002,{},v2.3.0-buggy +evt_000559,u_0085,onboarding_completed,2026-06-08T20:49:00Z,u_0085_s01,ins_u_0085_003,{},v2.3.0-buggy +evt_000560,u_0189,signup_completed,2026-06-08T20:49:00Z,u_0189_s01,ins_u_0189_002,{},v2.3.0-buggy +evt_000561,u_0616,onboarding_completed,2026-06-08T20:49:00Z,u_0616_s01,ins_u_0616_004,"{""completed_at"": ""2026-06-08T20:50:00Z""}",v2.3.0-buggy +evt_000562,u_0333,onboarding_completed,2026-06-08T20:50:00Z,u_0333_s01,ins_u_0333_006,"{""completed_at"": ""2026-06-08T20:54:00Z""}",v2.3.0-buggy +evt_000563,u_0568,signup_started,2026-06-08T20:51:00Z,u_0568_s01,ins_u_0568_001,{},v2.3.0-buggy +evt_000564,u_0272,profile_saved,2026-06-08T20:52:00Z,u_0272_s01,ins_u_0272_004,{},v2.3.0-buggy +evt_000565,u_0030,onboarding_completed,2026-06-08T20:53:00Z,u_0030_s01,ins_u_0030_006,"{""completed_at"": ""2026-06-08T20:49:00Z""}",v2.3.0-buggy +evt_000566,u_0142,onboarding_completed,2026-06-08T20:53:00Z,u_0142_s01,ins_u_0142_005,"{""completed_at"": ""2026-06-08T20:52:00Z""}",v2.3.0-buggy +evt_000567,u_0085,session_abandoned,2026-06-08T20:56:00Z,u_0085_s01,ins_u_0085_004,{},v2.3.0-buggy +evt_000568,u_0568,session_abandoned,2026-06-08T20:56:00Z,u_0568_s01,ins_u_0568_002,{},v2.3.0-buggy +evt_000569,u_0189,profile_saved,2026-06-08T20:59:00Z,u_0189_s01,ins_u_0189_003,{},v2.3.0-buggy +evt_000570,u_0274,onboarding_completed,2026-06-08T21:09:00Z,u_0274_s01,ins_u_0274_006,"{""completed_at"": ""2026-06-08T20:57:00Z""}",v2.3.0-buggy +evt_000571,u_0272,feature_used,2026-06-08T21:10:00Z,u_0272_s01,ins_u_0272_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000572,u_0390,onboarding_completed,2026-06-08T21:12:00Z,u_0390_s01,ins_u_0390_004,"{""completed_at"": ""2026-06-08T21:04:00Z""}",v2.3.0-buggy +evt_000573,u_0030,activation_completed,2026-06-08T21:23:00Z,u_0030_s01,ins_u_0030_007,{},v2.3.0-buggy +evt_000574,u_0274,activation_completed,2026-06-08T21:35:00Z,u_0274_s01,ins_u_0274_007,{},v2.3.0-buggy +evt_000575,u_0189,onboarding_completed,2026-06-08T21:41:00Z,u_0189_s01,ins_u_0189_004,"{""completed_at"": ""2026-06-08T21:31:00Z""}",v2.3.0-buggy +evt_000576,u_0272,activation_completed,2026-06-08T22:00:00Z,u_0272_s01,ins_u_0272_006,{},v2.3.0-buggy +evt_000577,u_0034,signup_started,2026-06-09T08:01:00Z,u_0034_s01,ins_u_0034_001,{},v2.3.0-buggy +evt_000578,u_0014,signup_started,2026-06-09T08:03:00Z,u_0014_s01,ins_u_0014_001,{},v2.3.0-buggy +evt_000579,u_0014,signup_completed,2026-06-09T08:05:00Z,u_0014_s01,ins_u_0014_002,{},v2.3.0-buggy +evt_000580,u_0077,signup_started,2026-06-09T08:07:00Z,u_0077_s01,ins_u_0077_001,{},v2.3.0-buggy +evt_000581,u_0014,onboarding_completed,2026-06-09T08:08:00Z,u_0014_s01,ins_u_0014_003,{},v2.3.0-buggy +evt_000582,u_0641,signup_started,2026-06-09T08:08:00Z,u_0641_s01,ins_u_0641_001,{},v2.3.0-buggy +evt_000583,u_0034,session_abandoned,2026-06-09T08:09:00Z,u_0034_s01,ins_u_0034_002,{},v2.3.0-buggy +evt_000584,u_0014,session_abandoned,2026-06-09T08:11:00Z,u_0014_s01,ins_u_0014_004,{},v2.3.0-buggy +evt_000585,u_0290,signup_started,2026-06-09T08:11:00Z,u_0290_s01,ins_u_0290_001,{},v2.3.0-buggy +evt_000586,u_0641,signup_completed,2026-06-09T08:11:00Z,u_0641_s01,ins_u_0641_002,{},v2.3.0-buggy +evt_000587,u_0244,signup_started,2026-06-09T08:12:00Z,u_0244_s01,ins_u_0244_001,{},v2.3.0-buggy +evt_000588,u_0290,signup_completed,2026-06-09T08:12:00Z,u_0290_s01,ins_u_0290_002,{},v2.3.0-buggy +evt_000589,u_0077,signup_completed,2026-06-09T08:13:00Z,u_0077_s01,ins_u_0077_002,{},v2.3.0-buggy +evt_000590,u_0077,onboarding_completed,2026-06-09T08:16:00Z,u_0077_s01,ins_u_0077_003,{},v2.3.0-buggy +evt_000591,u_0641,session_abandoned,2026-06-09T08:17:00Z,u_0641_s01,ins_u_0641_003,{},v2.3.0-buggy +evt_000592,u_0244,signup_completed,2026-06-09T08:18:00Z,u_0244_s01,ins_u_0244_002,{},v2.3.0-buggy +evt_000593,u_0290,profile_saved,2026-06-09T08:18:00Z,u_0290_s01,ins_u_0290_003,{},v2.3.0-buggy +evt_000594,u_0077,session_abandoned,2026-06-09T08:21:00Z,u_0077_s01,ins_u_0077_004,{},v2.3.0-buggy +evt_000595,u_0244,profile_saved,2026-06-09T08:21:00Z,u_0244_s01,ins_u_0244_003,{},v2.3.0-buggy +evt_000596,u_0290,onboarding_step_viewed,2026-06-09T08:23:00Z,u_0290_s01,ins_u_0290_004,{},v2.3.0-buggy +evt_000597,u_0244,onboarding_step_viewed,2026-06-09T08:25:00Z,u_0244_s01,ins_u_0244_004,{},v2.3.0-buggy +evt_000598,u_0683,signup_started,2026-06-09T08:36:00Z,u_0683_s01,ins_u_0683_001,{},v2.3.0-buggy +evt_000599,u_0683,session_abandoned,2026-06-09T08:38:00Z,u_0683_s01,ins_u_0683_002,{},v2.3.0-buggy +evt_000600,u_0658,signup_started,2026-06-09T08:44:00Z,u_0658_s01,ins_u_0658_001,{},v2.3.0-buggy +evt_000601,u_0712,signup_started,2026-06-09T08:44:00Z,u_0712_s01,ins_u_0712_001,{},v2.3.0-buggy +evt_000602,u_0290,onboarding_completed,2026-06-09T08:46:00Z,u_0290_s01,ins_u_0290_005,"{""completed_at"": ""2026-06-09T08:48:00Z""}",v2.3.0-buggy +evt_000603,u_0567,signup_started,2026-06-09T08:49:00Z,u_0567_s01,ins_u_0567_001,{},v2.3.0-buggy +evt_000604,u_0658,session_abandoned,2026-06-09T08:51:00Z,u_0658_s01,ins_u_0658_002,{},v2.3.0-buggy +evt_000605,u_0712,signup_completed,2026-06-09T08:52:00Z,u_0712_s01,ins_u_0712_002,{},v2.3.0-buggy +evt_000606,u_0018,signup_started,2026-06-09T08:53:00Z,u_0018_s01,ins_u_0018_001,{},v2.3.0-buggy +evt_000607,u_0712,signup_completed,2026-06-09T08:53:00Z,u_0712_s01,ins_u_0712_002,{},v2.3.0-buggy +evt_000608,u_0567,signup_completed,2026-06-09T08:54:00Z,u_0567_s01,ins_u_0567_002,{},v2.3.0-buggy +evt_000609,u_0712,profile_saved,2026-06-09T08:55:00Z,u_0712_s01,ins_u_0712_003,{},v2.3.0-buggy +evt_000610,u_0526,signup_started,2026-06-09T08:56:00Z,u_0526_s01,ins_u_0526_001,{},v2.3.0-buggy +evt_000611,u_0018,signup_completed,2026-06-09T08:58:00Z,u_0018_s01,ins_u_0018_002,{},v2.3.0-buggy +evt_000612,u_0526,signup_completed,2026-06-09T09:01:00Z,u_0526_s01,ins_u_0526_002,{},v2.3.0-buggy +evt_000613,u_0712,onboarding_step_viewed,2026-06-09T09:01:00Z,u_0712_s01,ins_u_0712_004,{},v2.3.0-buggy +evt_000614,u_0567,profile_saved,2026-06-09T09:03:00Z,u_0567_s01,ins_u_0567_003,{},v2.3.0-buggy +evt_000615,u_0018,profile_saved,2026-06-09T09:05:00Z,u_0018_s01,ins_u_0018_003,{},v2.3.0-buggy +evt_000616,u_0244,onboarding_completed,2026-06-09T09:06:00Z,u_0244_s01,ins_u_0244_005,"{""completed_at"": ""2026-06-09T08:58:00Z""}",v2.3.0-buggy +evt_000617,u_0526,profile_saved,2026-06-09T09:06:00Z,u_0526_s01,ins_u_0526_003,{},v2.3.0-buggy +evt_000618,u_0244,activation_completed,2026-06-09T09:08:00Z,u_0244_s01,ins_u_0244_006,{},v2.3.0-buggy +evt_000619,u_0290,activation_completed,2026-06-09T09:09:00Z,u_0290_s01,ins_u_0290_006,{},v2.3.0-buggy +evt_000620,u_0430,signup_started,2026-06-09T09:09:00Z,u_0430_s01,ins_u_0430_001,{},v2.3.0-buggy +evt_000621,u_0018,onboarding_step_viewed,2026-06-09T09:10:00Z,u_0018_s01,ins_u_0018_004,{},v2.3.0-buggy +evt_000622,u_0567,feature_used,2026-06-09T09:10:00Z,u_0567_s01,ins_u_0567_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000623,u_0581,signup_started,2026-06-09T09:10:00Z,u_0581_s01,ins_u_0581_001,{},v2.3.0-buggy +evt_000624,u_0295,signup_started,2026-06-09T09:11:00Z,u_0295_s01,ins_u_0295_001,{},v2.3.0-buggy +evt_000625,u_0295,signup_completed,2026-06-09T09:13:00Z,u_0295_s01,ins_u_0295_002,{},v2.3.0-buggy +evt_000626,u_0388,signup_started,2026-06-09T09:13:00Z,u_0388_s01,ins_u_0388_001,{},v2.3.0-buggy +evt_000627,u_0526,feature_used,2026-06-09T09:15:00Z,u_0526_s01,ins_u_0526_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_000628,u_0776,signup_started,2026-06-09T09:15:00Z,u_0776_s01,ins_u_0776_001,{},v2.3.0-buggy +evt_000629,u_0430,signup_completed,2026-06-09T09:16:00Z,u_0430_s01,ins_u_0430_002,{},v2.3.0-buggy +evt_000630,u_0581,signup_completed,2026-06-09T09:18:00Z,u_0581_s01,ins_u_0581_002,{},v2.3.0-buggy +evt_000631,u_0712,feature_used,2026-06-09T09:18:00Z,u_0712_s01,ins_u_0712_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000632,u_0388,signup_completed,2026-06-09T09:19:00Z,u_0388_s01,ins_u_0388_002,{},v2.3.0-buggy +evt_000633,u_0712,feature_used,2026-06-09T09:19:00Z,u_0712_s01,ins_u_0712_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000634,u_0776,signup_completed,2026-06-09T09:19:00Z,u_0776_s01,ins_u_0776_002,{},v2.3.0-buggy +evt_000635,u_0295,profile_saved,2026-06-09T09:20:00Z,u_0295_s01,ins_u_0295_003,{},v2.3.0-buggy +evt_000636,u_0072,signup_started,2026-06-09T09:21:00Z,u_0072_s01,ins_u_0072_001,{},v2.3.0-buggy +evt_000637,u_0295,error_shown,2026-06-09T09:21:00Z,u_0295_s01,ins_u_0295_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000638,u_0295,onboarding_step_viewed,2026-06-09T09:22:00Z,u_0295_s01,ins_u_0295_005,{},v2.3.0-buggy +evt_000639,u_0581,profile_saved,2026-06-09T09:23:00Z,u_0581_s01,ins_u_0581_003,{},v2.3.0-buggy +evt_000640,u_0430,session_abandoned,2026-06-09T09:25:00Z,u_0430_s01,ins_u_0430_003,{},v2.3.0-buggy +evt_000641,u_0776,profile_saved,2026-06-09T09:25:00Z,u_0776_s01,ins_u_0776_003,{},v2.3.0-buggy +evt_000642,u_0072,signup_completed,2026-06-09T09:26:00Z,u_0072_s01,ins_u_0072_002,{},v2.3.0-buggy +evt_000643,u_0215,signup_started,2026-06-09T09:26:00Z,u_0215_s01,ins_u_0215_001,{},v2.3.0-buggy +evt_000644,u_0072,onboarding_completed,2026-06-09T09:28:00Z,u_0072_s01,ins_u_0072_003,{},v2.3.0-buggy +evt_000645,u_0388,profile_saved,2026-06-09T09:28:00Z,u_0388_s01,ins_u_0388_003,{},v2.3.0-buggy +evt_000646,u_0215,session_abandoned,2026-06-09T09:30:00Z,u_0215_s01,ins_u_0215_002,{},v2.3.0-buggy +evt_000647,u_0295,feature_used,2026-06-09T09:30:00Z,u_0295_s01,ins_u_0295_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000648,u_0776,onboarding_step_viewed,2026-06-09T09:31:00Z,u_0776_s01,ins_u_0776_004,{},v2.3.0-buggy +evt_000649,u_0072,session_abandoned,2026-06-09T09:33:00Z,u_0072_s01,ins_u_0072_004,{},v2.3.0-buggy +evt_000650,u_0166,signup_started,2026-06-09T09:34:00Z,u_0166_s01,ins_u_0166_001,{},v2.3.0-buggy +evt_000651,u_0166,signup_completed,2026-06-09T09:35:00Z,u_0166_s01,ins_u_0166_002,{},v2.3.0-buggy +evt_000652,u_0581,feature_used,2026-06-09T09:35:00Z,u_0581_s01,ins_u_0581_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000653,u_0018,onboarding_completed,2026-06-09T09:36:00Z,u_0018_s01,ins_u_0018_005,"{""completed_at"": ""2026-06-09T09:43:00Z""}",v2.3.0-buggy +evt_000654,u_0712,onboarding_completed,2026-06-09T09:36:00Z,u_0712_s01,ins_u_0712_006,"{""completed_at"": ""2026-06-09T09:23:00Z""}",v2.3.0-buggy +evt_000655,u_0627,signup_started,2026-06-09T09:39:00Z,u_0627_s01,ins_u_0627_001,{},v2.3.0-buggy +evt_000656,u_0003,signup_started,2026-06-09T09:40:00Z,u_0003_s01,ins_u_0003_001,{},v2.3.0-buggy +evt_000657,u_0526,onboarding_completed,2026-06-09T09:40:00Z,u_0526_s01,ins_u_0526_005,"{""completed_at"": ""2026-06-09T09:38:00Z""}",v2.3.0-buggy +evt_000658,u_0166,session_abandoned,2026-06-09T09:41:00Z,u_0166_s01,ins_u_0166_003,{},v2.3.0-buggy +evt_000659,u_0567,onboarding_completed,2026-06-09T09:41:00Z,u_0567_s01,ins_u_0567_005,"{""completed_at"": ""2026-06-09T09:42:00Z""}",v2.3.0-buggy +evt_000660,u_0627,signup_completed,2026-06-09T09:41:00Z,u_0627_s01,ins_u_0627_002,{},v2.3.0-buggy +evt_000661,u_0776,feature_used,2026-06-09T09:42:00Z,u_0776_s01,ins_u_0776_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000662,u_0753,signup_started,2026-06-09T09:43:00Z,u_0753_s01,ins_u_0753_001,{},v2.3.0-buggy +evt_000663,u_0003,signup_completed,2026-06-09T09:45:00Z,u_0003_s01,ins_u_0003_002,{},v2.3.0-buggy +evt_000664,u_0627,session_abandoned,2026-06-09T09:45:00Z,u_0627_s01,ins_u_0627_003,{},v2.3.0-buggy +evt_000665,u_0003,upsell_modal_shown,2026-06-09T09:46:00Z,u_0003_s01,ins_u_0003_003,{},v2.3.0-buggy +evt_000666,u_0707,signup_started,2026-06-09T09:46:00Z,u_0707_s01,ins_u_0707_001,{},v2.3.0-buggy +evt_000667,u_0753,signup_completed,2026-06-09T09:50:00Z,u_0753_s01,ins_u_0753_002,{},v2.3.0-buggy +evt_000668,u_0388,feature_used,2026-06-09T09:51:00Z,u_0388_s01,ins_u_0388_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_000669,u_0581,onboarding_completed,2026-06-09T09:51:00Z,u_0581_s01,ins_u_0581_005,"{""completed_at"": ""2026-06-09T10:01:00Z""}",v2.3.0-buggy +evt_000670,u_0707,signup_completed,2026-06-09T09:51:00Z,u_0707_s01,ins_u_0707_002,{},v2.3.0-buggy +evt_000671,u_0707,onboarding_completed,2026-06-09T09:52:00Z,u_0707_s01,ins_u_0707_003,{},v2.3.0-buggy +evt_000672,u_0753,profile_saved,2026-06-09T09:54:00Z,u_0753_s01,ins_u_0753_003,{},v2.3.0-buggy +evt_000673,u_0003,profile_saved,2026-06-09T09:55:00Z,u_0003_s01,ins_u_0003_004,{},v2.3.0-buggy +evt_000674,u_0707,session_abandoned,2026-06-09T09:57:00Z,u_0707_s01,ins_u_0707_004,{},v2.3.0-buggy +evt_000675,u_0753,onboarding_step_viewed,2026-06-09T09:58:00Z,u_0753_s01,ins_u_0753_004,{},v2.3.0-buggy +evt_000676,u_0003,onboarding_step_viewed,2026-06-09T09:59:00Z,u_0003_s01,ins_u_0003_005,{},v2.3.0-buggy +evt_000677,u_0667,signup_started,2026-06-09T09:59:00Z,u_0667_s01,ins_u_0667_001,{},v2.3.0-buggy +evt_000678,u_0776,onboarding_completed,2026-06-09T10:00:00Z,u_0776_s01,ins_u_0776_006,"{""completed_at"": ""2026-06-09T09:58:00Z""}",v2.3.0-buggy +evt_000679,u_0295,onboarding_completed,2026-06-09T10:01:00Z,u_0295_s01,ins_u_0295_007,"{""completed_at"": ""2026-06-09T09:56:00Z""}",v2.3.0-buggy +evt_000680,u_0151,signup_started,2026-06-09T10:03:00Z,u_0151_s01,ins_u_0151_001,{},v2.3.0-buggy +evt_000681,u_0667,signup_completed,2026-06-09T10:04:00Z,u_0667_s01,ins_u_0667_002,{},v2.3.0-buggy +evt_000682,u_0667,onboarding_completed,2026-06-09T10:06:00Z,u_0667_s01,ins_u_0667_003,{},v2.3.0-buggy +evt_000683,u_0649,signup_started,2026-06-09T10:07:00Z,u_0649_s01,ins_u_0649_001,{},v2.3.0-buggy +evt_000684,u_0667,onboarding_completed,2026-06-09T10:07:00Z,u_0667_s01,ins_u_0667_003,{},v2.3.0-buggy +evt_000685,u_0649,signup_completed,2026-06-09T10:08:00Z,u_0649_s01,ins_u_0649_002,{},v2.3.0-buggy +evt_000686,u_0003,feature_used,2026-06-09T10:09:00Z,u_0003_s01,ins_u_0003_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000687,u_0341,signup_started,2026-06-09T10:09:00Z,u_0341_s01,ins_u_0341_001,{},v2.3.0-buggy +evt_000688,u_0649,onboarding_completed,2026-06-09T10:09:00Z,u_0649_s01,ins_u_0649_003,{},v2.3.0-buggy +evt_000689,u_0341,signup_completed,2026-06-09T10:10:00Z,u_0341_s01,ins_u_0341_002,{},v2.3.0-buggy +evt_000690,u_0581,activation_completed,2026-06-09T10:10:00Z,u_0581_s01,ins_u_0581_006,{},v2.3.0-buggy +evt_000691,u_0151,session_abandoned,2026-06-09T10:11:00Z,u_0151_s01,ins_u_0151_002,{},v2.3.0-buggy +evt_000692,u_0341,upsell_modal_shown,2026-06-09T10:11:00Z,u_0341_s01,ins_u_0341_003,{},v2.3.0-buggy +evt_000693,u_0753,feature_used,2026-06-09T10:11:00Z,u_0753_s01,ins_u_0753_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000694,u_0582,signup_started,2026-06-09T10:12:00Z,u_0582_s01,ins_u_0582_001,{},v2.3.0-buggy +evt_000695,u_0388,onboarding_completed,2026-06-09T10:13:00Z,u_0388_s01,ins_u_0388_005,"{""completed_at"": ""2026-06-09T10:01:00Z""}",v2.3.0-buggy +evt_000696,u_0667,session_abandoned,2026-06-09T10:13:00Z,u_0667_s01,ins_u_0667_004,{},v2.3.0-buggy +evt_000697,u_0649,session_abandoned,2026-06-09T10:14:00Z,u_0649_s01,ins_u_0649_004,{},v2.3.0-buggy +evt_000698,u_0582,session_abandoned,2026-06-09T10:15:00Z,u_0582_s01,ins_u_0582_002,{},v2.3.0-buggy +evt_000699,u_0678,signup_started,2026-06-09T10:16:00Z,u_0678_s01,ins_u_0678_001,{},v2.3.0-buggy +evt_000700,u_0341,profile_saved,2026-06-09T10:17:00Z,u_0341_s01,ins_u_0341_004,{},v2.3.0-buggy +evt_000701,u_0678,signup_completed,2026-06-09T10:18:00Z,u_0678_s01,ins_u_0678_002,{},v2.3.0-buggy +evt_000702,u_0018,activation_completed,2026-06-09T10:20:00Z,u_0018_s01,ins_u_0018_006,{},v2.3.0-buggy +evt_000703,u_0301,signup_started,2026-06-09T10:20:00Z,u_0301_s01,ins_u_0301_001,{},v2.3.0-buggy +evt_000704,u_0341,onboarding_step_viewed,2026-06-09T10:21:00Z,u_0341_s01,ins_u_0341_005,{},v2.3.0-buggy +evt_000705,u_0226,signup_started,2026-06-09T10:22:00Z,u_0226_s01,ins_u_0226_001,{},v2.3.0-buggy +evt_000706,u_0678,profile_saved,2026-06-09T10:22:00Z,u_0678_s01,ins_u_0678_003,{},v2.3.0-buggy +evt_000707,u_0226,session_abandoned,2026-06-09T10:23:00Z,u_0226_s01,ins_u_0226_002,{},v2.3.0-buggy +evt_000708,u_0301,signup_completed,2026-06-09T10:25:00Z,u_0301_s01,ins_u_0301_002,{},v2.3.0-buggy +evt_000709,u_0678,onboarding_step_viewed,2026-06-09T10:27:00Z,u_0678_s01,ins_u_0678_004,{},v2.3.0-buggy +evt_000710,u_0753,onboarding_completed,2026-06-09T10:29:00Z,u_0753_s01,ins_u_0753_006,"{""completed_at"": ""2026-06-09T10:25:00Z""}",v2.3.0-buggy +evt_000711,u_0295,activation_completed,2026-06-09T10:31:00Z,u_0295_s01,ins_u_0295_008,{},v2.3.0-buggy +evt_000712,u_0301,session_abandoned,2026-06-09T10:33:00Z,u_0301_s01,ins_u_0301_003,{},v2.3.0-buggy +evt_000713,u_0003,activation_completed,2026-06-09T10:43:00Z,u_0003_s01,ins_u_0003_007,{},v2.3.0-buggy +evt_000714,u_0478,signup_started,2026-06-09T10:46:00Z,u_0478_s01,ins_u_0478_001,{},v2.3.0-buggy +evt_000715,u_0506,signup_started,2026-06-09T10:47:00Z,u_0506_s01,ins_u_0506_001,{},v2.3.0-buggy +evt_000716,u_0506,session_abandoned,2026-06-09T10:50:00Z,u_0506_s01,ins_u_0506_002,{},v2.3.0-buggy +evt_000717,u_0678,onboarding_completed,2026-06-09T10:53:00Z,u_0678_s01,ins_u_0678_005,"{""completed_at"": ""2026-06-09T10:51:00Z""}",v2.3.0-buggy +evt_000718,u_0478,signup_completed,2026-06-09T10:54:00Z,u_0478_s01,ins_u_0478_002,{},v2.3.0-buggy +evt_000719,u_0478,profile_saved,2026-06-09T10:56:00Z,u_0478_s01,ins_u_0478_003,{},v2.3.0-buggy +evt_000720,u_0460,signup_started,2026-06-09T10:58:00Z,u_0460_s01,ins_u_0460_001,{},v2.3.0-buggy +evt_000721,u_0753,activation_completed,2026-06-09T10:58:00Z,u_0753_s01,ins_u_0753_007,{},v2.3.0-buggy +evt_000722,u_0341,onboarding_completed,2026-06-09T11:01:00Z,u_0341_s01,ins_u_0341_006,"{""completed_at"": ""2026-06-09T10:47:00Z""}",v2.3.0-buggy +evt_000723,u_0478,onboarding_step_viewed,2026-06-09T11:01:00Z,u_0478_s01,ins_u_0478_004,{},v2.3.0-buggy +evt_000724,u_0249,signup_started,2026-06-09T11:03:00Z,u_0249_s01,ins_u_0249_001,{},v2.3.0-buggy +evt_000725,u_0463,signup_started,2026-06-09T11:03:00Z,u_0463_s01,ins_u_0463_001,{},v2.3.0-buggy +evt_000726,u_0249,signup_completed,2026-06-09T11:05:00Z,u_0249_s01,ins_u_0249_002,{},v2.3.0-buggy +evt_000727,u_0460,signup_completed,2026-06-09T11:06:00Z,u_0460_s01,ins_u_0460_002,{},v2.3.0-buggy +evt_000728,u_0463,signup_completed,2026-06-09T11:06:00Z,u_0463_s01,ins_u_0463_002,{},v2.3.0-buggy +evt_000729,u_0249,onboarding_completed,2026-06-09T11:07:00Z,u_0249_s01,ins_u_0249_003,{},v2.3.0-buggy +evt_000730,u_0463,upsell_modal_shown,2026-06-09T11:07:00Z,u_0463_s01,ins_u_0463_003,{},v2.3.0-buggy +evt_000731,u_0463,profile_saved,2026-06-09T11:08:00Z,u_0463_s01,ins_u_0463_004,{},v2.3.0-buggy +evt_000732,u_0767,signup_started,2026-06-09T11:08:00Z,u_0767_s01,ins_u_0767_001,{},v2.3.0-buggy +evt_000733,u_0460,onboarding_completed,2026-06-09T11:09:00Z,u_0460_s01,ins_u_0460_003,{},v2.3.0-buggy +evt_000734,u_0460,onboarding_completed,2026-06-09T11:10:00Z,u_0460_s01,ins_u_0460_003,{},v2.3.0-buggy +evt_000735,u_0767,signup_completed,2026-06-09T11:10:00Z,u_0767_s01,ins_u_0767_002,{},v2.3.0-buggy +evt_000736,u_0460,session_abandoned,2026-06-09T11:11:00Z,u_0460_s01,ins_u_0460_004,{},v2.3.0-buggy +evt_000737,u_0463,onboarding_step_viewed,2026-06-09T11:11:00Z,u_0463_s01,ins_u_0463_005,{},v2.3.0-buggy +evt_000738,u_0249,session_abandoned,2026-06-09T11:14:00Z,u_0249_s01,ins_u_0249_004,{},v2.3.0-buggy +evt_000739,u_0459,signup_started,2026-06-09T11:17:00Z,u_0459_s01,ins_u_0459_001,{},v2.3.0-buggy +evt_000740,u_0459,signup_completed,2026-06-09T11:18:00Z,u_0459_s01,ins_u_0459_002,{},v2.3.0-buggy +evt_000741,u_0478,feature_used,2026-06-09T11:18:00Z,u_0478_s01,ins_u_0478_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000742,u_0767,profile_saved,2026-06-09T11:20:00Z,u_0767_s01,ins_u_0767_003,{},v2.3.0-buggy +evt_000743,u_0118,signup_started,2026-06-09T11:22:00Z,u_0118_s01,ins_u_0118_001,{},v2.3.0-buggy +evt_000744,u_0118,signup_completed,2026-06-09T11:23:00Z,u_0118_s01,ins_u_0118_002,{},v2.3.0-buggy +evt_000745,u_0478,onboarding_completed,2026-06-09T11:23:00Z,u_0478_s01,ins_u_0478_006,"{""completed_at"": ""2026-06-09T11:32:00Z""}",v2.3.0-buggy +evt_000746,u_0767,onboarding_step_viewed,2026-06-09T11:23:00Z,u_0767_s01,ins_u_0767_004,{},v2.3.0-buggy +evt_000747,u_0118,signup_completed,2026-06-09T11:24:00Z,u_0118_s01,ins_u_0118_002,{},v2.3.0-buggy +evt_000748,u_0118,onboarding_completed,2026-06-09T11:24:00Z,u_0118_s01,ins_u_0118_003,{},v2.3.0-buggy +evt_000749,u_0459,session_abandoned,2026-06-09T11:25:00Z,u_0459_s01,ins_u_0459_003,{},v2.3.0-buggy +evt_000750,u_0118,session_abandoned,2026-06-09T11:28:00Z,u_0118_s01,ins_u_0118_004,{},v2.3.0-buggy +evt_000751,u_0149,signup_started,2026-06-09T11:28:00Z,u_0149_s01,ins_u_0149_001,{},v2.3.0-buggy +evt_000752,u_0463,feature_used,2026-06-09T11:28:00Z,u_0463_s01,ins_u_0463_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000753,u_0679,signup_started,2026-06-09T11:28:00Z,u_0679_s01,ins_u_0679_001,{},v2.3.0-buggy +evt_000754,u_0463,feature_used,2026-06-09T11:29:00Z,u_0463_s01,ins_u_0463_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000755,u_0767,feature_used,2026-06-09T11:29:00Z,u_0767_s01,ins_u_0767_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000756,u_0679,signup_completed,2026-06-09T11:30:00Z,u_0679_s01,ins_u_0679_002,{},v2.3.0-buggy +evt_000757,u_0422,signup_started,2026-06-09T11:33:00Z,u_0422_s01,ins_u_0422_001,{},v2.3.0-buggy +evt_000758,u_0713,signup_started,2026-06-09T11:33:00Z,u_0713_s01,ins_u_0713_001,{},v2.3.0-buggy +evt_000759,u_0149,signup_completed,2026-06-09T11:35:00Z,u_0149_s01,ins_u_0149_002,{},v2.3.0-buggy +evt_000760,u_0422,signup_completed,2026-06-09T11:36:00Z,u_0422_s01,ins_u_0422_002,{},v2.3.0-buggy +evt_000761,u_0679,profile_saved,2026-06-09T11:36:00Z,u_0679_s01,ins_u_0679_003,{},v2.3.0-buggy +evt_000762,u_0442,signup_started,2026-06-09T11:37:00Z,u_0442_s01,ins_u_0442_001,{},v2.3.0-buggy +evt_000763,u_0064,signup_started,2026-06-09T11:38:00Z,u_0064_s01,ins_u_0064_001,{},v2.3.0-buggy +evt_000764,u_0713,session_abandoned,2026-06-09T11:41:00Z,u_0713_s01,ins_u_0713_002,{},v2.3.0-buggy +evt_000765,u_0149,profile_saved,2026-06-09T11:42:00Z,u_0149_s01,ins_u_0149_003,{},v2.3.0-buggy +evt_000766,u_0679,onboarding_step_viewed,2026-06-09T11:42:00Z,u_0679_s01,ins_u_0679_004,{},v2.3.0-buggy +evt_000767,u_0442,signup_completed,2026-06-09T11:43:00Z,u_0442_s01,ins_u_0442_002,{},v2.3.0-buggy +evt_000768,u_0064,signup_completed,2026-06-09T11:44:00Z,u_0064_s01,ins_u_0064_002,{},v2.3.0-buggy +evt_000769,u_0442,onboarding_completed,2026-06-09T11:44:00Z,u_0442_s01,ins_u_0442_003,{},v2.3.0-buggy +evt_000770,u_0442,onboarding_completed,2026-06-09T11:45:00Z,u_0442_s01,ins_u_0442_003,{},v2.3.0-buggy +evt_000771,u_0422,profile_saved,2026-06-09T11:46:00Z,u_0422_s01,ins_u_0422_003,{},v2.3.0-buggy +evt_000772,u_0442,session_abandoned,2026-06-09T11:47:00Z,u_0442_s01,ins_u_0442_004,{},v2.3.0-buggy +evt_000773,u_0149,onboarding_step_viewed,2026-06-09T11:48:00Z,u_0149_s01,ins_u_0149_004,{},v2.3.0-buggy +evt_000774,u_0679,feature_used,2026-06-09T11:48:00Z,u_0679_s01,ins_u_0679_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000775,u_0064,session_abandoned,2026-06-09T11:52:00Z,u_0064_s01,ins_u_0064_003,{},v2.3.0-buggy +evt_000776,u_0422,onboarding_step_viewed,2026-06-09T11:52:00Z,u_0422_s01,ins_u_0422_004,{},v2.3.0-buggy +evt_000777,u_0141,signup_started,2026-06-09T11:54:00Z,u_0141_s01,ins_u_0141_001,{},v2.3.0-buggy +evt_000778,u_0767,onboarding_completed,2026-06-09T11:54:00Z,u_0767_s01,ins_u_0767_006,"{""completed_at"": ""2026-06-09T11:52:00Z""}",v2.3.0-buggy +evt_000779,u_0141,signup_completed,2026-06-09T11:59:00Z,u_0141_s01,ins_u_0141_002,{},v2.3.0-buggy +evt_000780,u_0141,profile_saved,2026-06-09T12:03:00Z,u_0141_s01,ins_u_0141_003,{},v2.3.0-buggy +evt_000781,u_0149,onboarding_completed,2026-06-09T12:08:00Z,u_0149_s01,ins_u_0149_005,"{""completed_at"": ""2026-06-09T12:09:00Z""}",v2.3.0-buggy +evt_000782,u_0426,signup_started,2026-06-09T12:10:00Z,u_0426_s01,ins_u_0426_001,{},v2.3.0-buggy +evt_000783,u_0426,signup_completed,2026-06-09T12:16:00Z,u_0426_s01,ins_u_0426_002,{},v2.3.0-buggy +evt_000784,u_0638,signup_started,2026-06-09T12:16:00Z,u_0638_s01,ins_u_0638_001,{},v2.3.0-buggy +evt_000785,u_0141,feature_used,2026-06-09T12:19:00Z,u_0141_s01,ins_u_0141_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000786,u_0422,onboarding_completed,2026-06-09T12:20:00Z,u_0422_s01,ins_u_0422_005,"{""completed_at"": ""2026-06-09T12:14:00Z""}",v2.3.0-buggy +evt_000787,u_0638,signup_completed,2026-06-09T12:24:00Z,u_0638_s01,ins_u_0638_002,{},v2.3.0-buggy +evt_000788,u_0426,profile_saved,2026-06-09T12:25:00Z,u_0426_s01,ins_u_0426_003,{},v2.3.0-buggy +evt_000789,u_0638,upsell_modal_shown,2026-06-09T12:25:00Z,u_0638_s01,ins_u_0638_003,{},v2.3.0-buggy +evt_000790,u_0638,profile_saved,2026-06-09T12:32:00Z,u_0638_s01,ins_u_0638_004,{},v2.3.0-buggy +evt_000791,u_0116,signup_started,2026-06-09T12:38:00Z,u_0116_s01,ins_u_0116_001,{},v2.3.0-buggy +evt_000792,u_0141,onboarding_completed,2026-06-09T12:39:00Z,u_0141_s01,ins_u_0141_005,"{""completed_at"": ""2026-06-09T12:35:00Z""}",v2.3.0-buggy +evt_000793,u_0426,feature_used,2026-06-09T12:43:00Z,u_0426_s01,ins_u_0426_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_000794,u_0719,signup_started,2026-06-09T12:44:00Z,u_0719_s01,ins_u_0719_001,{},v2.3.0-buggy +evt_000795,u_0117,signup_started,2026-06-09T12:45:00Z,u_0117_s01,ins_u_0117_001,{},v2.3.0-buggy +evt_000796,u_0116,signup_completed,2026-06-09T12:46:00Z,u_0116_s01,ins_u_0116_002,{},v2.3.0-buggy +evt_000797,u_0117,signup_completed,2026-06-09T12:47:00Z,u_0117_s01,ins_u_0117_002,{},v2.3.0-buggy +evt_000798,u_0117,onboarding_completed,2026-06-09T12:49:00Z,u_0117_s01,ins_u_0117_003,{},v2.3.0-buggy +evt_000799,u_0178,signup_started,2026-06-09T12:50:00Z,u_0178_s01,ins_u_0178_001,{},v2.3.0-buggy +evt_000800,u_0117,session_abandoned,2026-06-09T12:52:00Z,u_0117_s01,ins_u_0117_004,{},v2.3.0-buggy +evt_000801,u_0719,signup_completed,2026-06-09T12:52:00Z,u_0719_s01,ins_u_0719_002,{},v2.3.0-buggy +evt_000802,u_0116,profile_saved,2026-06-09T12:53:00Z,u_0116_s01,ins_u_0116_003,{},v2.3.0-buggy +evt_000803,u_0638,feature_used,2026-06-09T12:54:00Z,u_0638_s01,ins_u_0638_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000804,u_0719,onboarding_completed,2026-06-09T12:55:00Z,u_0719_s01,ins_u_0719_003,{},v2.3.0-buggy +evt_000805,u_0350,signup_started,2026-06-09T12:56:00Z,u_0350_s01,ins_u_0350_001,{},v2.3.0-buggy +evt_000806,u_0350,signup_completed,2026-06-09T12:57:00Z,u_0350_s01,ins_u_0350_002,{},v2.3.0-buggy +evt_000807,u_0178,signup_completed,2026-06-09T12:58:00Z,u_0178_s01,ins_u_0178_002,{},v2.3.0-buggy +evt_000808,u_0116,onboarding_step_viewed,2026-06-09T12:59:00Z,u_0116_s01,ins_u_0116_004,{},v2.3.0-buggy +evt_000809,u_0638,onboarding_completed,2026-06-09T12:59:00Z,u_0638_s01,ins_u_0638_006,"{""completed_at"": ""2026-06-09T13:07:00Z""}",v2.3.0-buggy +evt_000810,u_0178,profile_saved,2026-06-09T13:00:00Z,u_0178_s01,ins_u_0178_003,{},v2.3.0-buggy +evt_000811,u_0719,session_abandoned,2026-06-09T13:01:00Z,u_0719_s01,ins_u_0719_004,{},v2.3.0-buggy +evt_000812,u_0178,onboarding_step_viewed,2026-06-09T13:02:00Z,u_0178_s01,ins_u_0178_004,{},v2.3.0-buggy +evt_000813,u_0350,session_abandoned,2026-06-09T13:02:00Z,u_0350_s01,ins_u_0350_003,{},v2.3.0-buggy +evt_000814,u_0685,signup_started,2026-06-09T13:03:00Z,u_0685_s01,ins_u_0685_001,{},v2.3.0-buggy +evt_000815,u_0691,signup_started,2026-06-09T13:03:00Z,u_0691_s01,ins_u_0691_001,{},v2.3.0-buggy +evt_000816,u_0426,onboarding_completed,2026-06-09T13:05:00Z,u_0426_s01,ins_u_0426_005,"{""completed_at"": ""2026-06-09T12:59:00Z""}",v2.3.0-buggy +evt_000817,u_0116,feature_used,2026-06-09T13:06:00Z,u_0116_s01,ins_u_0116_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000818,u_0691,signup_completed,2026-06-09T13:07:00Z,u_0691_s01,ins_u_0691_002,{},v2.3.0-buggy +evt_000819,u_0178,feature_used,2026-06-09T13:09:00Z,u_0178_s01,ins_u_0178_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000820,u_0685,signup_completed,2026-06-09T13:11:00Z,u_0685_s01,ins_u_0685_002,{},v2.3.0-buggy +evt_000821,u_0304,signup_started,2026-06-09T13:13:00Z,u_0304_s01,ins_u_0304_001,{},v2.3.0-buggy +evt_000822,u_0304,signup_completed,2026-06-09T13:14:00Z,u_0304_s01,ins_u_0304_002,{},v2.3.0-buggy +evt_000823,u_0691,profile_saved,2026-06-09T13:14:00Z,u_0691_s01,ins_u_0691_003,{},v2.3.0-buggy +evt_000824,u_0691,error_shown,2026-06-09T13:15:00Z,u_0691_s01,ins_u_0691_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000825,u_0685,profile_saved,2026-06-09T13:16:00Z,u_0685_s01,ins_u_0685_003,{},v2.3.0-buggy +evt_000826,u_0426,activation_completed,2026-06-09T13:18:00Z,u_0426_s01,ins_u_0426_006,{},v2.3.0-buggy +evt_000827,u_0304,profile_saved,2026-06-09T13:19:00Z,u_0304_s01,ins_u_0304_003,{},v2.3.0-buggy +evt_000828,u_0685,onboarding_step_viewed,2026-06-09T13:19:00Z,u_0685_s01,ins_u_0685_004,{},v2.3.0-buggy +evt_000829,u_0691,onboarding_step_viewed,2026-06-09T13:19:00Z,u_0691_s01,ins_u_0691_005,{},v2.3.0-buggy +evt_000830,u_0304,error_shown,2026-06-09T13:20:00Z,u_0304_s01,ins_u_0304_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000831,u_0304,onboarding_step_viewed,2026-06-09T13:23:00Z,u_0304_s01,ins_u_0304_005,{},v2.3.0-buggy +evt_000832,u_0178,onboarding_completed,2026-06-09T13:28:00Z,u_0178_s01,ins_u_0178_006,"{""completed_at"": ""2026-06-09T13:35:00Z""}",v2.3.0-buggy +evt_000833,u_0116,onboarding_completed,2026-06-09T13:29:00Z,u_0116_s01,ins_u_0116_006,"{""completed_at"": ""2026-06-09T13:20:00Z""}",v2.3.0-buggy +evt_000834,u_0691,feature_used,2026-06-09T13:36:00Z,u_0691_s01,ins_u_0691_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000835,u_0339,signup_started,2026-06-09T13:44:00Z,u_0339_s01,ins_u_0339_001,{},v2.3.0-buggy +evt_000836,u_0728,signup_started,2026-06-09T13:44:00Z,u_0728_s01,ins_u_0728_001,{},v2.3.0-buggy +evt_000837,u_0728,signup_completed,2026-06-09T13:45:00Z,u_0728_s01,ins_u_0728_002,{},v2.3.0-buggy +evt_000838,u_0691,onboarding_completed,2026-06-09T13:46:00Z,u_0691_s01,ins_u_0691_007,"{""completed_at"": ""2026-06-09T13:41:00Z""}",v2.3.0-buggy +evt_000839,u_0638,activation_completed,2026-06-09T13:47:00Z,u_0638_s01,ins_u_0638_007,{},v2.3.0-buggy +evt_000840,u_0728,onboarding_completed,2026-06-09T13:47:00Z,u_0728_s01,ins_u_0728_003,{},v2.3.0-buggy +evt_000841,u_0339,signup_completed,2026-06-09T13:51:00Z,u_0339_s01,ins_u_0339_002,{},v2.3.0-buggy +evt_000842,u_0284,signup_started,2026-06-09T13:54:00Z,u_0284_s01,ins_u_0284_001,{},v2.3.0-buggy +evt_000843,u_0728,session_abandoned,2026-06-09T13:54:00Z,u_0728_s01,ins_u_0728_004,{},v2.3.0-buggy +evt_000844,u_0339,profile_saved,2026-06-09T13:55:00Z,u_0339_s01,ins_u_0339_003,{},v2.3.0-buggy +evt_000845,u_0339,onboarding_step_viewed,2026-06-09T13:58:00Z,u_0339_s01,ins_u_0339_004,{},v2.3.0-buggy +evt_000846,u_0685,onboarding_completed,2026-06-09T13:59:00Z,u_0685_s01,ins_u_0685_005,"{""completed_at"": ""2026-06-09T13:49:00Z""}",v2.3.0-buggy +evt_000847,u_0280,signup_started,2026-06-09T14:01:00Z,u_0280_s01,ins_u_0280_001,{},v2.3.0-buggy +evt_000848,u_0284,signup_completed,2026-06-09T14:01:00Z,u_0284_s01,ins_u_0284_002,{},v2.3.0-buggy +evt_000849,u_0749,signup_started,2026-06-09T14:02:00Z,u_0749_s01,ins_u_0749_001,{},v2.3.0-buggy +evt_000850,u_0280,signup_completed,2026-06-09T14:04:00Z,u_0280_s01,ins_u_0280_002,{},v2.3.0-buggy +evt_000851,u_0749,signup_completed,2026-06-09T14:05:00Z,u_0749_s01,ins_u_0749_002,{},v2.3.0-buggy +evt_000852,u_0284,session_abandoned,2026-06-09T14:09:00Z,u_0284_s01,ins_u_0284_003,{},v2.3.0-buggy +evt_000853,u_0280,profile_saved,2026-06-09T14:11:00Z,u_0280_s01,ins_u_0280_003,{},v2.3.0-buggy +evt_000854,u_0312,signup_started,2026-06-09T14:11:00Z,u_0312_s01,ins_u_0312_001,{},v2.3.0-buggy +evt_000855,u_0280,error_shown,2026-06-09T14:12:00Z,u_0280_s01,ins_u_0280_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000856,u_0716,signup_started,2026-06-09T14:12:00Z,u_0716_s01,ins_u_0716_001,{},v2.3.0-buggy +evt_000857,u_0280,onboarding_step_viewed,2026-06-09T14:13:00Z,u_0280_s01,ins_u_0280_005,{},v2.3.0-buggy +evt_000858,u_0749,profile_saved,2026-06-09T14:14:00Z,u_0749_s01,ins_u_0749_003,{},v2.3.0-buggy +evt_000859,u_0176,signup_started,2026-06-09T14:15:00Z,u_0176_s01,ins_u_0176_001,{},v2.3.0-buggy +evt_000860,u_0716,signup_completed,2026-06-09T14:15:00Z,u_0716_s01,ins_u_0716_002,{},v2.3.0-buggy +evt_000861,u_0312,signup_completed,2026-06-09T14:17:00Z,u_0312_s01,ins_u_0312_002,{},v2.3.0-buggy +evt_000862,u_0339,feature_used,2026-06-09T14:18:00Z,u_0339_s01,ins_u_0339_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000863,u_0312,onboarding_completed,2026-06-09T14:19:00Z,u_0312_s01,ins_u_0312_003,{},v2.3.0-buggy +evt_000864,u_0716,profile_saved,2026-06-09T14:19:00Z,u_0716_s01,ins_u_0716_003,{},v2.3.0-buggy +evt_000865,u_0176,signup_completed,2026-06-09T14:20:00Z,u_0176_s01,ins_u_0176_002,{},v2.3.0-buggy +evt_000866,u_0749,onboarding_step_viewed,2026-06-09T14:20:00Z,u_0749_s01,ins_u_0749_004,{},v2.3.0-buggy +evt_000867,u_0640,signup_started,2026-06-09T14:21:00Z,u_0640_s01,ins_u_0640_001,{},v2.3.0-buggy +evt_000868,u_0312,session_abandoned,2026-06-09T14:22:00Z,u_0312_s01,ins_u_0312_004,{},v2.3.0-buggy +evt_000869,u_0691,activation_completed,2026-06-09T14:24:00Z,u_0691_s01,ins_u_0691_008,{},v2.3.0-buggy +evt_000870,u_0716,onboarding_step_viewed,2026-06-09T14:24:00Z,u_0716_s01,ins_u_0716_004,{},v2.3.0-buggy +evt_000871,u_0277,signup_started,2026-06-09T14:25:00Z,u_0277_s01,ins_u_0277_001,{},v2.3.0-buggy +evt_000872,u_0176,session_abandoned,2026-06-09T14:26:00Z,u_0176_s01,ins_u_0176_003,{},v2.3.0-buggy +evt_000873,u_0640,session_abandoned,2026-06-09T14:29:00Z,u_0640_s01,ins_u_0640_002,{},v2.3.0-buggy +evt_000874,u_0277,signup_completed,2026-06-09T14:31:00Z,u_0277_s01,ins_u_0277_002,{},v2.3.0-buggy +evt_000875,u_0339,onboarding_completed,2026-06-09T14:32:00Z,u_0339_s01,ins_u_0339_006,"{""completed_at"": ""2026-06-09T14:23:00Z""}",v2.3.0-buggy +evt_000876,u_0277,session_abandoned,2026-06-09T14:35:00Z,u_0277_s01,ins_u_0277_003,{},v2.3.0-buggy +evt_000877,u_0509,signup_started,2026-06-09T14:35:00Z,u_0509_s01,ins_u_0509_001,{},v2.3.0-buggy +evt_000878,u_0316,signup_started,2026-06-09T14:39:00Z,u_0316_s01,ins_u_0316_001,{},v2.3.0-buggy +evt_000879,u_0280,onboarding_completed,2026-06-09T14:40:00Z,u_0280_s01,ins_u_0280_006,"{""completed_at"": ""2026-06-09T14:44:00Z""}",v2.3.0-buggy +evt_000880,u_0749,onboarding_completed,2026-06-09T14:42:00Z,u_0749_s01,ins_u_0749_005,"{""completed_at"": ""2026-06-09T14:51:00Z""}",v2.3.0-buggy +evt_000881,u_0060,signup_started,2026-06-09T14:43:00Z,u_0060_s01,ins_u_0060_001,{},v2.3.0-buggy +evt_000882,u_0499,signup_started,2026-06-09T14:43:00Z,u_0499_s01,ins_u_0499_001,{},v2.3.0-buggy +evt_000883,u_0509,signup_completed,2026-06-09T14:43:00Z,u_0509_s01,ins_u_0509_002,{},v2.3.0-buggy +evt_000884,u_0060,signup_completed,2026-06-09T14:44:00Z,u_0060_s01,ins_u_0060_002,{},v2.3.0-buggy +evt_000885,u_0293,signup_started,2026-06-09T14:46:00Z,u_0293_s01,ins_u_0293_001,{},v2.3.0-buggy +evt_000886,u_0316,signup_completed,2026-06-09T14:46:00Z,u_0316_s01,ins_u_0316_002,{},v2.3.0-buggy +evt_000887,u_0509,profile_saved,2026-06-09T14:47:00Z,u_0509_s01,ins_u_0509_003,{},v2.3.0-buggy +evt_000888,u_0499,signup_completed,2026-06-09T14:48:00Z,u_0499_s01,ins_u_0499_002,{},v2.3.0-buggy +evt_000889,u_0316,session_abandoned,2026-06-09T14:50:00Z,u_0316_s01,ins_u_0316_003,{},v2.3.0-buggy +evt_000890,u_0293,signup_completed,2026-06-09T14:51:00Z,u_0293_s01,ins_u_0293_002,{},v2.3.0-buggy +evt_000891,u_0060,profile_saved,2026-06-09T14:52:00Z,u_0060_s01,ins_u_0060_003,{},v2.3.0-buggy +evt_000892,u_0509,onboarding_step_viewed,2026-06-09T14:53:00Z,u_0509_s01,ins_u_0509_004,{},v2.3.0-buggy +evt_000893,u_0293,onboarding_completed,2026-06-09T14:54:00Z,u_0293_s01,ins_u_0293_003,{},v2.3.0-buggy +evt_000894,u_0509,feature_used,2026-06-09T14:54:00Z,u_0509_s01,ins_u_0509_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000895,u_0293,session_abandoned,2026-06-09T14:55:00Z,u_0293_s01,ins_u_0293_004,{},v2.3.0-buggy +evt_000896,u_0499,profile_saved,2026-06-09T14:55:00Z,u_0499_s01,ins_u_0499_003,{},v2.3.0-buggy +evt_000897,u_0499,error_shown,2026-06-09T14:56:00Z,u_0499_s01,ins_u_0499_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000898,u_0060,onboarding_step_viewed,2026-06-09T14:58:00Z,u_0060_s01,ins_u_0060_004,{},v2.3.0-buggy +evt_000899,u_0716,onboarding_completed,2026-06-09T14:58:00Z,u_0716_s01,ins_u_0716_005,"{""completed_at"": ""2026-06-09T14:59:00Z""}",v2.3.0-buggy +evt_000900,u_0499,feature_used,2026-06-09T15:05:00Z,u_0499_s01,ins_u_0499_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000901,u_0201,signup_started,2026-06-09T15:08:00Z,u_0201_s01,ins_u_0201_001,{},v2.3.0-buggy +evt_000902,u_0201,signup_completed,2026-06-09T15:10:00Z,u_0201_s01,ins_u_0201_002,{},v2.3.0-buggy +evt_000903,u_0404,signup_started,2026-06-09T15:11:00Z,u_0404_s01,ins_u_0404_001,{},v2.3.0-buggy +evt_000904,u_0060,feature_used,2026-06-09T15:15:00Z,u_0060_s01,ins_u_0060_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000905,u_0404,signup_completed,2026-06-09T15:15:00Z,u_0404_s01,ins_u_0404_002,{},v2.3.0-buggy +evt_000906,u_0509,onboarding_completed,2026-06-09T15:15:00Z,u_0509_s01,ins_u_0509_006,"{""completed_at"": ""2026-06-09T15:24:00Z""}",v2.3.0-buggy +evt_000907,u_0201,profile_saved,2026-06-09T15:17:00Z,u_0201_s01,ins_u_0201_003,{},v2.3.0-buggy +evt_000908,u_0404,onboarding_completed,2026-06-09T15:17:00Z,u_0404_s01,ins_u_0404_003,{},v2.3.0-buggy +evt_000909,u_0201,error_shown,2026-06-09T15:18:00Z,u_0201_s01,ins_u_0201_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000910,u_0404,session_abandoned,2026-06-09T15:22:00Z,u_0404_s01,ins_u_0404_004,{},v2.3.0-buggy +evt_000911,u_0201,onboarding_step_viewed,2026-06-09T15:23:00Z,u_0201_s01,ins_u_0201_005,{},v2.3.0-buggy +evt_000912,u_0716,activation_completed,2026-06-09T15:34:00Z,u_0716_s01,ins_u_0716_006,{},v2.3.0-buggy +evt_000913,u_0775,signup_started,2026-06-09T15:35:00Z,u_0775_s01,ins_u_0775_001,{},v2.3.0-buggy +evt_000914,u_0775,session_abandoned,2026-06-09T15:39:00Z,u_0775_s01,ins_u_0775_002,{},v2.3.0-buggy +evt_000915,u_0389,signup_started,2026-06-09T15:40:00Z,u_0389_s01,ins_u_0389_001,{},v2.3.0-buggy +evt_000916,u_0389,signup_completed,2026-06-09T15:42:00Z,u_0389_s01,ins_u_0389_002,{},v2.3.0-buggy +evt_000917,u_0389,profile_saved,2026-06-09T15:45:00Z,u_0389_s01,ins_u_0389_003,{},v2.3.0-buggy +evt_000918,u_0389,onboarding_step_viewed,2026-06-09T15:50:00Z,u_0389_s01,ins_u_0389_004,{},v2.3.0-buggy +evt_000919,u_0509,activation_completed,2026-06-09T15:50:00Z,u_0509_s01,ins_u_0509_007,{},v2.3.0-buggy +evt_000920,u_0578,signup_started,2026-06-09T15:50:00Z,u_0578_s01,ins_u_0578_001,{},v2.3.0-buggy +evt_000921,u_0201,onboarding_completed,2026-06-09T15:53:00Z,u_0201_s01,ins_u_0201_006,"{""completed_at"": ""2026-06-09T15:45:00Z""}",v2.3.0-buggy +evt_000922,u_0578,signup_completed,2026-06-09T15:53:00Z,u_0578_s01,ins_u_0578_002,{},v2.3.0-buggy +evt_000923,u_0578,profile_saved,2026-06-09T15:58:00Z,u_0578_s01,ins_u_0578_003,{},v2.3.0-buggy +evt_000924,u_0666,signup_started,2026-06-09T15:58:00Z,u_0666_s01,ins_u_0666_001,{},v2.3.0-buggy +evt_000925,u_0666,signup_completed,2026-06-09T16:00:00Z,u_0666_s01,ins_u_0666_002,{},v2.3.0-buggy +evt_000926,u_0389,feature_used,2026-06-09T16:02:00Z,u_0389_s01,ins_u_0389_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000927,u_0578,onboarding_step_viewed,2026-06-09T16:04:00Z,u_0578_s01,ins_u_0578_004,{},v2.3.0-buggy +evt_000928,u_0666,profile_saved,2026-06-09T16:08:00Z,u_0666_s01,ins_u_0666_003,{},v2.3.0-buggy +evt_000929,u_0305,signup_started,2026-06-09T16:09:00Z,u_0305_s01,ins_u_0305_001,{},v2.3.0-buggy +evt_000930,u_0578,feature_used,2026-06-09T16:09:00Z,u_0578_s01,ins_u_0578_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000931,u_0666,onboarding_step_viewed,2026-06-09T16:10:00Z,u_0666_s01,ins_u_0666_004,{},v2.3.0-buggy +evt_000932,u_0305,signup_completed,2026-06-09T16:13:00Z,u_0305_s01,ins_u_0305_002,{},v2.3.0-buggy +evt_000933,u_0305,profile_saved,2026-06-09T16:16:00Z,u_0305_s01,ins_u_0305_003,{},v2.3.0-buggy +evt_000934,u_0516,signup_started,2026-06-09T16:16:00Z,u_0516_s01,ins_u_0516_001,{},v2.3.0-buggy +evt_000935,u_0666,feature_used,2026-06-09T16:16:00Z,u_0666_s01,ins_u_0666_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_000936,u_0435,signup_started,2026-06-09T16:17:00Z,u_0435_s01,ins_u_0435_001,{},v2.3.0-buggy +evt_000937,u_0305,onboarding_step_viewed,2026-06-09T16:21:00Z,u_0305_s01,ins_u_0305_004,{},v2.3.0-buggy +evt_000938,u_0516,signup_completed,2026-06-09T16:21:00Z,u_0516_s01,ins_u_0516_002,{},v2.3.0-buggy +evt_000939,u_0435,signup_completed,2026-06-09T16:24:00Z,u_0435_s01,ins_u_0435_002,{},v2.3.0-buggy +evt_000940,u_0074,signup_started,2026-06-09T16:25:00Z,u_0074_s01,ins_u_0074_001,{},v2.3.0-buggy +evt_000941,u_0389,onboarding_completed,2026-06-09T16:27:00Z,u_0389_s01,ins_u_0389_006,"{""completed_at"": ""2026-06-09T16:13:00Z""}",v2.3.0-buggy +evt_000942,u_0516,session_abandoned,2026-06-09T16:27:00Z,u_0516_s01,ins_u_0516_003,{},v2.3.0-buggy +evt_000943,u_0516,session_abandoned,2026-06-09T16:28:00Z,u_0516_s01,ins_u_0516_003,{},v2.3.0-buggy +evt_000944,u_0074,session_abandoned,2026-06-09T16:29:00Z,u_0074_s01,ins_u_0074_002,{},v2.3.0-buggy +evt_000945,u_0435,profile_saved,2026-06-09T16:29:00Z,u_0435_s01,ins_u_0435_003,{},v2.3.0-buggy +evt_000946,u_0578,onboarding_completed,2026-06-09T16:29:00Z,u_0578_s01,ins_u_0578_006,"{""completed_at"": ""2026-06-09T16:28:00Z""}",v2.3.0-buggy +evt_000947,u_0435,onboarding_step_viewed,2026-06-09T16:32:00Z,u_0435_s01,ins_u_0435_004,{},v2.3.0-buggy +evt_000948,u_0629,signup_started,2026-06-09T16:32:00Z,u_0629_s01,ins_u_0629_001,{},v2.3.0-buggy +evt_000949,u_0615,signup_started,2026-06-09T16:33:00Z,u_0615_s01,ins_u_0615_001,{},v2.3.0-buggy +evt_000950,u_0615,signup_completed,2026-06-09T16:34:00Z,u_0615_s01,ins_u_0615_002,{},v2.3.0-buggy +evt_000951,u_0389,activation_completed,2026-06-09T16:36:00Z,u_0389_s01,ins_u_0389_007,{},v2.3.0-buggy +evt_000952,u_0629,signup_completed,2026-06-09T16:37:00Z,u_0629_s01,ins_u_0629_002,{},v2.3.0-buggy +evt_000953,u_0615,profile_saved,2026-06-09T16:41:00Z,u_0615_s01,ins_u_0615_003,{},v2.3.0-buggy +evt_000954,u_0629,session_abandoned,2026-06-09T16:42:00Z,u_0629_s01,ins_u_0629_003,{},v2.3.0-buggy +evt_000955,u_0666,onboarding_completed,2026-06-09T16:48:00Z,u_0666_s01,ins_u_0666_006,"{""completed_at"": ""2026-06-09T16:34:00Z""}",v2.3.0-buggy +evt_000956,u_0435,feature_used,2026-06-09T16:50:00Z,u_0435_s01,ins_u_0435_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000957,u_0540,signup_started,2026-06-09T16:50:00Z,u_0540_s01,ins_u_0540_001,{},v2.3.0-buggy +evt_000958,u_0540,signup_completed,2026-06-09T16:52:00Z,u_0540_s01,ins_u_0540_002,{},v2.3.0-buggy +evt_000959,u_0305,onboarding_completed,2026-06-09T16:56:00Z,u_0305_s01,ins_u_0305_005,"{""completed_at"": ""2026-06-09T16:52:00Z""}",v2.3.0-buggy +evt_000960,u_0435,onboarding_completed,2026-06-09T16:57:00Z,u_0435_s01,ins_u_0435_006,"{""completed_at"": ""2026-06-09T17:03:00Z""}",v2.3.0-buggy +evt_000961,u_0540,session_abandoned,2026-06-09T17:00:00Z,u_0540_s01,ins_u_0540_003,{},v2.3.0-buggy +evt_000962,u_0615,feature_used,2026-06-09T17:03:00Z,u_0615_s01,ins_u_0615_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000963,u_0615,onboarding_completed,2026-06-09T17:11:00Z,u_0615_s01,ins_u_0615_005,"{""completed_at"": ""2026-06-09T17:09:00Z""}",v2.3.0-buggy +evt_000964,u_0578,activation_completed,2026-06-09T17:17:00Z,u_0578_s01,ins_u_0578_007,{},v2.3.0-buggy +evt_000965,u_0664,signup_started,2026-06-09T17:17:00Z,u_0664_s01,ins_u_0664_001,{},v2.3.0-buggy +evt_000966,u_0121,signup_started,2026-06-09T17:19:00Z,u_0121_s01,ins_u_0121_001,{},v2.3.0-buggy +evt_000967,u_0666,activation_completed,2026-06-09T17:19:00Z,u_0666_s01,ins_u_0666_007,{},v2.3.0-buggy +evt_000968,u_0299,signup_started,2026-06-09T17:20:00Z,u_0299_s01,ins_u_0299_001,{},v2.3.0-buggy +evt_000969,u_0745,signup_started,2026-06-09T17:21:00Z,u_0745_s01,ins_u_0745_001,{},v2.3.0-buggy +evt_000970,u_0664,signup_completed,2026-06-09T17:22:00Z,u_0664_s01,ins_u_0664_002,{},v2.3.0-buggy +evt_000971,u_0325,signup_started,2026-06-09T17:23:00Z,u_0325_s01,ins_u_0325_001,{},v2.3.0-buggy +evt_000972,u_0664,upsell_modal_shown,2026-06-09T17:23:00Z,u_0664_s01,ins_u_0664_003,{},v2.3.0-buggy +evt_000973,u_0664,onboarding_completed,2026-06-09T17:23:00Z,u_0664_s01,ins_u_0664_004,{},v2.3.0-buggy +evt_000974,u_0121,signup_completed,2026-06-09T17:24:00Z,u_0121_s01,ins_u_0121_002,{},v2.3.0-buggy +evt_000975,u_0325,signup_completed,2026-06-09T17:25:00Z,u_0325_s01,ins_u_0325_002,{},v2.3.0-buggy +evt_000976,u_0325,onboarding_completed,2026-06-09T17:26:00Z,u_0325_s01,ins_u_0325_003,{},v2.3.0-buggy +evt_000977,u_0664,session_abandoned,2026-06-09T17:27:00Z,u_0664_s01,ins_u_0664_005,{},v2.3.0-buggy +evt_000978,u_0745,signup_completed,2026-06-09T17:27:00Z,u_0745_s01,ins_u_0745_002,{},v2.3.0-buggy +evt_000979,u_0299,signup_completed,2026-06-09T17:28:00Z,u_0299_s01,ins_u_0299_002,{},v2.3.0-buggy +evt_000980,u_0325,session_abandoned,2026-06-09T17:31:00Z,u_0325_s01,ins_u_0325_004,{},v2.3.0-buggy +evt_000981,u_0745,profile_saved,2026-06-09T17:32:00Z,u_0745_s01,ins_u_0745_003,{},v2.3.0-buggy +evt_000982,u_0299,profile_saved,2026-06-09T17:33:00Z,u_0299_s01,ins_u_0299_003,{},v2.3.0-buggy +evt_000983,u_0121,profile_saved,2026-06-09T17:34:00Z,u_0121_s01,ins_u_0121_003,{},v2.3.0-buggy +evt_000984,u_0121,error_shown,2026-06-09T17:35:00Z,u_0121_s01,ins_u_0121_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_000985,u_0299,onboarding_step_viewed,2026-06-09T17:35:00Z,u_0299_s01,ins_u_0299_004,{},v2.3.0-buggy +evt_000986,u_0076,signup_started,2026-06-09T17:36:00Z,u_0076_s01,ins_u_0076_001,{},v2.3.0-buggy +evt_000987,u_0745,onboarding_step_viewed,2026-06-09T17:36:00Z,u_0745_s01,ins_u_0745_004,{},v2.3.0-buggy +evt_000988,u_0076,signup_completed,2026-06-09T17:37:00Z,u_0076_s01,ins_u_0076_002,{},v2.3.0-buggy +evt_000989,u_0332,signup_started,2026-06-09T17:39:00Z,u_0332_s01,ins_u_0332_001,{},v2.3.0-buggy +evt_000990,u_0343,signup_started,2026-06-09T17:39:00Z,u_0343_s01,ins_u_0343_001,{},v2.3.0-buggy +evt_000991,u_0745,feature_used,2026-06-09T17:43:00Z,u_0745_s01,ins_u_0745_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000992,u_0076,profile_saved,2026-06-09T17:44:00Z,u_0076_s01,ins_u_0076_003,{},v2.3.0-buggy +evt_000993,u_0076,onboarding_step_viewed,2026-06-09T17:46:00Z,u_0076_s01,ins_u_0076_004,{},v2.3.0-buggy +evt_000994,u_0332,session_abandoned,2026-06-09T17:46:00Z,u_0332_s01,ins_u_0332_002,{},v2.3.0-buggy +evt_000995,u_0343,signup_completed,2026-06-09T17:47:00Z,u_0343_s01,ins_u_0343_002,{},v2.3.0-buggy +evt_000996,u_0121,feature_used,2026-06-09T17:51:00Z,u_0121_s01,ins_u_0121_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_000997,u_0343,profile_saved,2026-06-09T17:54:00Z,u_0343_s01,ins_u_0343_003,{},v2.3.0-buggy +evt_000998,u_0615,activation_completed,2026-06-09T18:01:00Z,u_0615_s01,ins_u_0615_006,{},v2.3.0-buggy +evt_000999,u_0709,signup_started,2026-06-09T18:06:00Z,u_0709_s01,ins_u_0709_001,{},v2.3.0-buggy +evt_001000,u_0016,signup_started,2026-06-09T18:08:00Z,u_0016_s01,ins_u_0016_001,{},v2.3.0-buggy +evt_001001,u_0299,onboarding_completed,2026-06-09T18:09:00Z,u_0299_s01,ins_u_0299_005,"{""completed_at"": ""2026-06-09T18:10:00Z""}",v2.3.0-buggy +evt_001002,u_0709,session_abandoned,2026-06-09T18:10:00Z,u_0709_s01,ins_u_0709_002,{},v2.3.0-buggy +evt_001003,u_0745,onboarding_completed,2026-06-09T18:10:00Z,u_0745_s01,ins_u_0745_006,"{""completed_at"": ""2026-06-09T18:06:00Z""}",v2.3.0-buggy +evt_001004,u_0016,signup_completed,2026-06-09T18:11:00Z,u_0016_s01,ins_u_0016_002,{},v2.3.0-buggy +evt_001005,u_0076,onboarding_completed,2026-06-09T18:16:00Z,u_0076_s01,ins_u_0076_005,"{""completed_at"": ""2026-06-09T18:12:00Z""}",v2.3.0-buggy +evt_001006,u_0343,feature_used,2026-06-09T18:19:00Z,u_0343_s01,ins_u_0343_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001007,u_0016,profile_saved,2026-06-09T18:21:00Z,u_0016_s01,ins_u_0016_003,{},v2.3.0-buggy +evt_001008,u_0577,signup_started,2026-06-09T18:22:00Z,u_0577_s01,ins_u_0577_001,{},v2.3.0-buggy +evt_001009,u_0016,onboarding_step_viewed,2026-06-09T18:23:00Z,u_0016_s01,ins_u_0016_004,{},v2.3.0-buggy +evt_001010,u_0689,signup_started,2026-06-09T18:24:00Z,u_0689_s01,ins_u_0689_001,{},v2.3.0-buggy +evt_001011,u_0577,signup_completed,2026-06-09T18:26:00Z,u_0577_s01,ins_u_0577_002,{},v2.3.0-buggy +evt_001012,u_0689,signup_completed,2026-06-09T18:28:00Z,u_0689_s01,ins_u_0689_002,{},v2.3.0-buggy +evt_001013,u_0343,onboarding_completed,2026-06-09T18:33:00Z,u_0343_s01,ins_u_0343_005,"{""completed_at"": ""2026-06-09T18:28:00Z""}",v2.3.0-buggy +evt_001014,u_0689,profile_saved,2026-06-09T18:34:00Z,u_0689_s01,ins_u_0689_003,{},v2.3.0-buggy +evt_001015,u_0577,profile_saved,2026-06-09T18:36:00Z,u_0577_s01,ins_u_0577_003,{},v2.3.0-buggy +evt_001016,u_0577,error_shown,2026-06-09T18:37:00Z,u_0577_s01,ins_u_0577_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001017,u_0689,onboarding_step_viewed,2026-06-09T18:39:00Z,u_0689_s01,ins_u_0689_004,{},v2.3.0-buggy +evt_001018,u_0016,feature_used,2026-06-09T18:43:00Z,u_0016_s01,ins_u_0016_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001019,u_0076,activation_completed,2026-06-09T18:43:00Z,u_0076_s01,ins_u_0076_006,{},v2.3.0-buggy +evt_001020,u_0577,feature_used,2026-06-09T18:43:00Z,u_0577_s01,ins_u_0577_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001021,u_0655,signup_started,2026-06-09T18:45:00Z,u_0655_s01,ins_u_0655_001,{},v2.3.0-buggy +evt_001022,u_0655,signup_completed,2026-06-09T18:47:00Z,u_0655_s01,ins_u_0655_002,{},v2.3.0-buggy +evt_001023,u_0689,feature_used,2026-06-09T18:47:00Z,u_0689_s01,ins_u_0689_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001024,u_0655,profile_saved,2026-06-09T18:50:00Z,u_0655_s01,ins_u_0655_003,{},v2.3.0-buggy +evt_001025,u_0626,signup_started,2026-06-09T18:51:00Z,u_0626_s01,ins_u_0626_001,{},v2.3.0-buggy +evt_001026,u_0655,onboarding_step_viewed,2026-06-09T18:52:00Z,u_0655_s01,ins_u_0655_004,{},v2.3.0-buggy +evt_001027,u_0626,session_abandoned,2026-06-09T18:55:00Z,u_0626_s01,ins_u_0626_002,{},v2.3.0-buggy +evt_001028,u_0016,onboarding_completed,2026-06-09T18:57:00Z,u_0016_s01,ins_u_0016_006,"{""completed_at"": ""2026-06-09T18:47:00Z""}",v2.3.0-buggy +evt_001029,u_0577,onboarding_completed,2026-06-09T19:03:00Z,u_0577_s01,ins_u_0577_006,"{""completed_at"": ""2026-06-09T19:16:00Z""}",v2.3.0-buggy +evt_001030,u_0354,signup_started,2026-06-09T19:12:00Z,u_0354_s01,ins_u_0354_001,{},v2.3.0-buggy +evt_001031,u_0075,signup_started,2026-06-09T19:14:00Z,u_0075_s01,ins_u_0075_001,{},v2.3.0-buggy +evt_001032,u_0075,signup_completed,2026-06-09T19:16:00Z,u_0075_s01,ins_u_0075_002,{},v2.3.0-buggy +evt_001033,u_0354,session_abandoned,2026-06-09T19:18:00Z,u_0354_s01,ins_u_0354_002,{},v2.3.0-buggy +evt_001034,u_0016,activation_completed,2026-06-09T19:22:00Z,u_0016_s01,ins_u_0016_007,{},v2.3.0-buggy +evt_001035,u_0075,session_abandoned,2026-06-09T19:22:00Z,u_0075_s01,ins_u_0075_003,{},v2.3.0-buggy +evt_001036,u_0075,session_abandoned,2026-06-09T19:23:00Z,u_0075_s01,ins_u_0075_003,{},v2.3.0-buggy +evt_001037,u_0655,onboarding_completed,2026-06-09T19:23:00Z,u_0655_s01,ins_u_0655_005,"{""completed_at"": ""2026-06-09T19:21:00Z""}",v2.3.0-buggy +evt_001038,u_0208,signup_started,2026-06-09T19:24:00Z,u_0208_s01,ins_u_0208_001,{},v2.3.0-buggy +evt_001039,u_0208,signup_completed,2026-06-09T19:29:00Z,u_0208_s01,ins_u_0208_002,{},v2.3.0-buggy +evt_001040,u_0208,profile_saved,2026-06-09T19:32:00Z,u_0208_s01,ins_u_0208_003,{},v2.3.0-buggy +evt_001041,u_0208,onboarding_step_viewed,2026-06-09T19:35:00Z,u_0208_s01,ins_u_0208_004,{},v2.3.0-buggy +evt_001042,u_0053,signup_started,2026-06-09T19:41:00Z,u_0053_s01,ins_u_0053_001,{},v2.3.0-buggy +evt_001043,u_0311,signup_started,2026-06-09T19:42:00Z,u_0311_s01,ins_u_0311_001,{},v2.3.0-buggy +evt_001044,u_0053,session_abandoned,2026-06-09T19:46:00Z,u_0053_s01,ins_u_0053_002,{},v2.3.0-buggy +evt_001045,u_0311,signup_completed,2026-06-09T19:48:00Z,u_0311_s01,ins_u_0311_002,{},v2.3.0-buggy +evt_001046,u_0208,feature_used,2026-06-09T19:49:00Z,u_0208_s01,ins_u_0208_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001047,u_0220,signup_started,2026-06-09T19:49:00Z,u_0220_s01,ins_u_0220_001,{},v2.3.0-buggy +evt_001048,u_0758,signup_started,2026-06-09T19:49:00Z,u_0758_s01,ins_u_0758_001,{},v2.3.0-buggy +evt_001049,u_0758,signup_completed,2026-06-09T19:52:00Z,u_0758_s01,ins_u_0758_002,{},v2.3.0-buggy +evt_001050,u_0220,signup_completed,2026-06-09T19:55:00Z,u_0220_s01,ins_u_0220_002,{},v2.3.0-buggy +evt_001051,u_0311,session_abandoned,2026-06-09T19:55:00Z,u_0311_s01,ins_u_0311_003,{},v2.3.0-buggy +evt_001052,u_0220,onboarding_completed,2026-06-09T19:58:00Z,u_0220_s01,ins_u_0220_003,{},v2.3.0-buggy +evt_001053,u_0758,profile_saved,2026-06-09T19:59:00Z,u_0758_s01,ins_u_0758_003,{},v2.3.0-buggy +evt_001054,u_0114,signup_started,2026-06-09T20:00:00Z,u_0114_s01,ins_u_0114_001,{},v2.3.0-buggy +evt_001055,u_0114,signup_completed,2026-06-09T20:01:00Z,u_0114_s01,ins_u_0114_002,{},v2.3.0-buggy +evt_001056,u_0114,onboarding_completed,2026-06-09T20:02:00Z,u_0114_s01,ins_u_0114_003,{},v2.3.0-buggy +evt_001057,u_0758,onboarding_step_viewed,2026-06-09T20:03:00Z,u_0758_s01,ins_u_0758_004,{},v2.3.0-buggy +evt_001058,u_0220,session_abandoned,2026-06-09T20:04:00Z,u_0220_s01,ins_u_0220_004,{},v2.3.0-buggy +evt_001059,u_0107,signup_started,2026-06-09T20:06:00Z,u_0107_s01,ins_u_0107_001,{},v2.3.0-buggy +evt_001060,u_0114,session_abandoned,2026-06-09T20:06:00Z,u_0114_s01,ins_u_0114_004,{},v2.3.0-buggy +evt_001061,u_0570,signup_started,2026-06-09T20:07:00Z,u_0570_s01,ins_u_0570_001,{},v2.3.0-buggy +evt_001062,u_0107,signup_completed,2026-06-09T20:09:00Z,u_0107_s01,ins_u_0107_002,{},v2.3.0-buggy +evt_001063,u_0349,signup_started,2026-06-09T20:10:00Z,u_0349_s01,ins_u_0349_001,{},v2.3.0-buggy +evt_001064,u_0349,signup_completed,2026-06-09T20:12:00Z,u_0349_s01,ins_u_0349_002,{},v2.3.0-buggy +evt_001065,u_0107,profile_saved,2026-06-09T20:14:00Z,u_0107_s01,ins_u_0107_003,{},v2.3.0-buggy +evt_001066,u_0208,onboarding_completed,2026-06-09T20:14:00Z,u_0208_s01,ins_u_0208_006,"{""completed_at"": ""2026-06-09T20:04:00Z""}",v2.3.0-buggy +evt_001067,u_0243,signup_started,2026-06-09T20:14:00Z,u_0243_s01,ins_u_0243_001,{},v2.3.0-buggy +evt_001068,u_0349,profile_saved,2026-06-09T20:14:00Z,u_0349_s01,ins_u_0349_003,{},v2.3.0-buggy +evt_001069,u_0758,feature_used,2026-06-09T20:14:00Z,u_0758_s01,ins_u_0758_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001070,u_0570,signup_completed,2026-06-09T20:15:00Z,u_0570_s01,ins_u_0570_002,{},v2.3.0-buggy +evt_001071,u_0349,onboarding_step_viewed,2026-06-09T20:19:00Z,u_0349_s01,ins_u_0349_004,{},v2.3.0-buggy +evt_001072,u_0107,onboarding_step_viewed,2026-06-09T20:20:00Z,u_0107_s01,ins_u_0107_004,{},v2.3.0-buggy +evt_001073,u_0214,signup_started,2026-06-09T20:21:00Z,u_0214_s01,ins_u_0214_001,{},v2.3.0-buggy +evt_001074,u_0214,signup_completed,2026-06-09T20:22:00Z,u_0214_s01,ins_u_0214_002,{},v2.3.0-buggy +evt_001075,u_0243,signup_completed,2026-06-09T20:22:00Z,u_0243_s01,ins_u_0243_002,{},v2.3.0-buggy +evt_001076,u_0570,profile_saved,2026-06-09T20:23:00Z,u_0570_s01,ins_u_0570_003,{},v2.3.0-buggy +evt_001077,u_0243,profile_saved,2026-06-09T20:25:00Z,u_0243_s01,ins_u_0243_003,{},v2.3.0-buggy +evt_001078,u_0720,signup_started,2026-06-09T20:25:00Z,u_0720_s01,ins_u_0720_001,{},v2.3.0-buggy +evt_001079,u_0214,profile_saved,2026-06-09T20:26:00Z,u_0214_s01,ins_u_0214_003,{},v2.3.0-buggy +evt_001080,u_0570,onboarding_step_viewed,2026-06-09T20:27:00Z,u_0570_s01,ins_u_0570_004,{},v2.3.0-buggy +evt_001081,u_0243,onboarding_step_viewed,2026-06-09T20:28:00Z,u_0243_s01,ins_u_0243_004,{},v2.3.0-buggy +evt_001082,u_0765,signup_started,2026-06-09T20:28:00Z,u_0765_s01,ins_u_0765_001,{},v2.3.0-buggy +evt_001083,u_0765,signup_completed,2026-06-09T20:30:00Z,u_0765_s01,ins_u_0765_002,{},v2.3.0-buggy +evt_001084,u_0214,onboarding_step_viewed,2026-06-09T20:31:00Z,u_0214_s01,ins_u_0214_004,{},v2.3.0-buggy +evt_001085,u_0720,signup_completed,2026-06-09T20:31:00Z,u_0720_s01,ins_u_0720_002,{},v2.3.0-buggy +evt_001086,u_0765,onboarding_completed,2026-06-09T20:32:00Z,u_0765_s01,ins_u_0765_003,{},v2.3.0-buggy +evt_001087,u_0349,feature_used,2026-06-09T20:36:00Z,u_0349_s01,ins_u_0349_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001088,u_0488,signup_started,2026-06-09T20:37:00Z,u_0488_s01,ins_u_0488_001,{},v2.3.0-buggy +evt_001089,u_0107,feature_used,2026-06-09T20:39:00Z,u_0107_s01,ins_u_0107_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001090,u_0720,session_abandoned,2026-06-09T20:39:00Z,u_0720_s01,ins_u_0720_003,{},v2.3.0-buggy +evt_001091,u_0758,onboarding_completed,2026-06-09T20:39:00Z,u_0758_s01,ins_u_0758_006,"{""completed_at"": ""2026-06-09T20:34:00Z""}",v2.3.0-buggy +evt_001092,u_0765,session_abandoned,2026-06-09T20:39:00Z,u_0765_s01,ins_u_0765_004,{},v2.3.0-buggy +evt_001093,u_0107,onboarding_completed,2026-06-09T20:40:00Z,u_0107_s01,ins_u_0107_006,"{""completed_at"": ""2026-06-09T20:47:00Z""}",v2.3.0-buggy +evt_001094,u_0694,signup_started,2026-06-09T20:40:00Z,u_0694_s01,ins_u_0694_001,{},v2.3.0-buggy +evt_001095,u_0208,activation_completed,2026-06-09T20:41:00Z,u_0208_s01,ins_u_0208_007,{},v2.3.0-buggy +evt_001096,u_0488,signup_completed,2026-06-09T20:41:00Z,u_0488_s01,ins_u_0488_002,{},v2.3.0-buggy +evt_001097,u_0694,signup_completed,2026-06-09T20:46:00Z,u_0694_s01,ins_u_0694_002,{},v2.3.0-buggy +evt_001098,u_0214,feature_used,2026-06-09T20:49:00Z,u_0214_s01,ins_u_0214_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001099,u_0488,profile_saved,2026-06-09T20:51:00Z,u_0488_s01,ins_u_0488_003,{},v2.3.0-buggy +evt_001100,u_0488,onboarding_step_viewed,2026-06-09T20:53:00Z,u_0488_s01,ins_u_0488_004,{},v2.3.0-buggy +evt_001101,u_0694,profile_saved,2026-06-09T20:53:00Z,u_0694_s01,ins_u_0694_003,{},v2.3.0-buggy +evt_001102,u_0349,onboarding_completed,2026-06-09T20:57:00Z,u_0349_s01,ins_u_0349_006,"{""completed_at"": ""2026-06-09T20:41:00Z""}",v2.3.0-buggy +evt_001103,u_0694,onboarding_step_viewed,2026-06-09T20:57:00Z,u_0694_s01,ins_u_0694_004,{},v2.3.0-buggy +evt_001104,u_0570,onboarding_completed,2026-06-09T20:59:00Z,u_0570_s01,ins_u_0570_005,"{""completed_at"": ""2026-06-09T20:51:00Z""}",v2.3.0-buggy +evt_001105,u_0243,onboarding_completed,2026-06-09T21:00:00Z,u_0243_s01,ins_u_0243_005,"{""completed_at"": ""2026-06-09T21:03:00Z""}",v2.3.0-buggy +evt_001106,u_0758,activation_completed,2026-06-09T21:02:00Z,u_0758_s01,ins_u_0758_007,{},v2.3.0-buggy +evt_001107,u_0214,onboarding_completed,2026-06-09T21:07:00Z,u_0214_s01,ins_u_0214_006,"{""completed_at"": ""2026-06-09T21:00:00Z""}",v2.3.0-buggy +evt_001108,u_0694,feature_used,2026-06-09T21:16:00Z,u_0694_s01,ins_u_0694_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001109,u_0349,activation_completed,2026-06-09T21:19:00Z,u_0349_s01,ins_u_0349_007,{},v2.3.0-buggy +evt_001110,u_0488,onboarding_completed,2026-06-09T21:21:00Z,u_0488_s01,ins_u_0488_005,"{""completed_at"": ""2026-06-09T21:17:00Z""}",v2.3.0-buggy +evt_001111,u_0243,activation_completed,2026-06-09T21:27:00Z,u_0243_s01,ins_u_0243_006,{},v2.3.0-buggy +evt_001112,u_0694,onboarding_completed,2026-06-09T21:31:00Z,u_0694_s01,ins_u_0694_006,"{""completed_at"": ""2026-06-09T21:19:00Z""}",v2.3.0-buggy +evt_001113,u_0214,activation_completed,2026-06-09T21:39:00Z,u_0214_s01,ins_u_0214_007,{},v2.3.0-buggy +evt_001114,u_0694,activation_completed,2026-06-09T22:07:00Z,u_0694_s01,ins_u_0694_007,{},v2.3.0-buggy +evt_001115,u_0492,signup_started,2026-06-10T08:03:00Z,u_0492_s01,ins_u_0492_001,{},v2.3.0-buggy +evt_001116,u_0492,signup_completed,2026-06-10T08:04:00Z,u_0492_s01,ins_u_0492_002,{},v2.3.0-buggy +evt_001117,u_0492,profile_saved,2026-06-10T08:11:00Z,u_0492_s01,ins_u_0492_003,{},v2.3.0-buggy +evt_001118,u_0492,onboarding_step_viewed,2026-06-10T08:15:00Z,u_0492_s01,ins_u_0492_004,{},v2.3.0-buggy +evt_001119,u_0406,signup_started,2026-06-10T08:18:00Z,u_0406_s01,ins_u_0406_001,{},v2.3.0-buggy +evt_001120,u_0406,session_abandoned,2026-06-10T08:21:00Z,u_0406_s01,ins_u_0406_002,{},v2.3.0-buggy +evt_001121,u_0492,feature_used,2026-06-10T08:22:00Z,u_0492_s01,ins_u_0492_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001122,u_0798,signup_started,2026-06-10T08:25:00Z,u_0798_s01,ins_u_0798_001,{},v2.3.0-buggy +evt_001123,u_0217,signup_started,2026-06-10T08:28:00Z,u_0217_s01,ins_u_0217_001,{},v2.3.0-buggy +evt_001124,u_0798,session_abandoned,2026-06-10T08:29:00Z,u_0798_s01,ins_u_0798_002,{},v2.3.0-buggy +evt_001125,u_0217,session_abandoned,2026-06-10T08:36:00Z,u_0217_s01,ins_u_0217_002,{},v2.3.0-buggy +evt_001126,u_0492,onboarding_completed,2026-06-10T08:41:00Z,u_0492_s01,ins_u_0492_006,"{""completed_at"": ""2026-06-10T08:38:00Z""}",v2.3.0-buggy +evt_001127,u_0514,signup_started,2026-06-10T08:43:00Z,u_0514_s01,ins_u_0514_001,{},v2.3.0-buggy +evt_001128,u_0203,signup_started,2026-06-10T08:45:00Z,u_0203_s01,ins_u_0203_001,{},v2.3.0-buggy +evt_001129,u_0514,signup_completed,2026-06-10T08:45:00Z,u_0514_s01,ins_u_0514_002,{},v2.3.0-buggy +evt_001130,u_0090,signup_started,2026-06-10T08:48:00Z,u_0090_s01,ins_u_0090_001,{},v2.3.0-buggy +evt_001131,u_0203,signup_completed,2026-06-10T08:50:00Z,u_0203_s01,ins_u_0203_002,{},v2.3.0-buggy +evt_001132,u_0090,signup_completed,2026-06-10T08:52:00Z,u_0090_s01,ins_u_0090_002,{},v2.3.0-buggy +evt_001133,u_0514,profile_saved,2026-06-10T08:53:00Z,u_0514_s01,ins_u_0514_003,{},v2.3.0-buggy +evt_001134,u_0203,profile_saved,2026-06-10T08:55:00Z,u_0203_s01,ins_u_0203_003,{},v2.3.0-buggy +evt_001135,u_0203,onboarding_step_viewed,2026-06-10T08:57:00Z,u_0203_s01,ins_u_0203_004,{},v2.3.0-buggy +evt_001136,u_0514,onboarding_step_viewed,2026-06-10T08:59:00Z,u_0514_s01,ins_u_0514_004,{},v2.3.0-buggy +evt_001137,u_0090,profile_saved,2026-06-10T09:01:00Z,u_0090_s01,ins_u_0090_003,{},v2.3.0-buggy +evt_001138,u_0514,feature_used,2026-06-10T09:02:00Z,u_0514_s01,ins_u_0514_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001139,u_0090,onboarding_step_viewed,2026-06-10T09:06:00Z,u_0090_s01,ins_u_0090_004,{},v2.3.0-buggy +evt_001140,u_0203,feature_used,2026-06-10T09:14:00Z,u_0203_s01,ins_u_0203_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001141,u_0119,signup_started,2026-06-10T09:18:00Z,u_0119_s01,ins_u_0119_001,{},v2.3.0-buggy +evt_001142,u_0013,signup_started,2026-06-10T09:19:00Z,u_0013_s01,ins_u_0013_001,{},v2.3.0-buggy +evt_001143,u_0514,onboarding_completed,2026-06-10T09:24:00Z,u_0514_s01,ins_u_0514_006,"{""completed_at"": ""2026-06-10T09:21:00Z""}",v2.3.0-buggy +evt_001144,u_0013,session_abandoned,2026-06-10T09:25:00Z,u_0013_s01,ins_u_0013_002,{},v2.3.0-buggy +evt_001145,u_0119,session_abandoned,2026-06-10T09:26:00Z,u_0119_s01,ins_u_0119_002,{},v2.3.0-buggy +evt_001146,u_0225,signup_started,2026-06-10T09:29:00Z,u_0225_s01,ins_u_0225_001,{},v2.3.0-buggy +evt_001147,u_0090,onboarding_completed,2026-06-10T09:31:00Z,u_0090_s01,ins_u_0090_005,"{""completed_at"": ""2026-06-10T09:28:00Z""}",v2.3.0-buggy +evt_001148,u_0544,signup_started,2026-06-10T09:31:00Z,u_0544_s01,ins_u_0544_001,{},v2.3.0-buggy +evt_001149,u_0225,signup_completed,2026-06-10T09:35:00Z,u_0225_s01,ins_u_0225_002,{},v2.3.0-buggy +evt_001150,u_0544,signup_completed,2026-06-10T09:38:00Z,u_0544_s01,ins_u_0544_002,{},v2.3.0-buggy +evt_001151,u_0203,onboarding_completed,2026-06-10T09:39:00Z,u_0203_s01,ins_u_0203_006,"{""completed_at"": ""2026-06-10T09:28:00Z""}",v2.3.0-buggy +evt_001152,u_0225,profile_saved,2026-06-10T09:41:00Z,u_0225_s01,ins_u_0225_003,{},v2.3.0-buggy +evt_001153,u_0544,session_abandoned,2026-06-10T09:44:00Z,u_0544_s01,ins_u_0544_003,{},v2.3.0-buggy +evt_001154,u_0225,onboarding_step_viewed,2026-06-10T09:45:00Z,u_0225_s01,ins_u_0225_004,{},v2.3.0-buggy +evt_001155,u_0514,activation_completed,2026-06-10T09:50:00Z,u_0514_s01,ins_u_0514_007,{},v2.3.0-buggy +evt_001156,u_0361,signup_started,2026-06-10T09:58:00Z,u_0361_s01,ins_u_0361_001,{},v2.3.0-buggy +evt_001157,u_0466,signup_started,2026-06-10T10:00:00Z,u_0466_s01,ins_u_0466_001,{},v2.3.0-buggy +evt_001158,u_0361,signup_completed,2026-06-10T10:01:00Z,u_0361_s01,ins_u_0361_002,{},v2.3.0-buggy +evt_001159,u_0614,signup_started,2026-06-10T10:03:00Z,u_0614_s01,ins_u_0614_001,{},v2.3.0-buggy +evt_001160,u_0618,signup_started,2026-06-10T10:03:00Z,u_0618_s01,ins_u_0618_001,{},v2.3.0-buggy +evt_001161,u_0466,signup_completed,2026-06-10T10:04:00Z,u_0466_s01,ins_u_0466_002,{},v2.3.0-buggy +evt_001162,u_0618,session_abandoned,2026-06-10T10:04:00Z,u_0618_s01,ins_u_0618_002,{},v2.3.0-buggy +evt_001163,u_0614,signup_completed,2026-06-10T10:06:00Z,u_0614_s01,ins_u_0614_002,{},v2.3.0-buggy +evt_001164,u_0361,profile_saved,2026-06-10T10:07:00Z,u_0361_s01,ins_u_0361_003,{},v2.3.0-buggy +evt_001165,u_0614,profile_saved,2026-06-10T10:10:00Z,u_0614_s01,ins_u_0614_003,{},v2.3.0-buggy +evt_001166,u_0361,onboarding_step_viewed,2026-06-10T10:12:00Z,u_0361_s01,ins_u_0361_004,{},v2.3.0-buggy +evt_001167,u_0466,profile_saved,2026-06-10T10:12:00Z,u_0466_s01,ins_u_0466_003,{},v2.3.0-buggy +evt_001168,u_0614,onboarding_step_viewed,2026-06-10T10:12:00Z,u_0614_s01,ins_u_0614_004,{},v2.3.0-buggy +evt_001169,u_0614,onboarding_step_viewed,2026-06-10T10:13:00Z,u_0614_s01,ins_u_0614_004,{},v2.3.0-buggy +evt_001170,u_0225,onboarding_completed,2026-06-10T10:14:00Z,u_0225_s01,ins_u_0225_005,"{""completed_at"": ""2026-06-10T10:12:00Z""}",v2.3.0-buggy +evt_001171,u_0599,signup_started,2026-06-10T10:17:00Z,u_0599_s01,ins_u_0599_001,{},v2.3.0-buggy +evt_001172,u_0466,onboarding_step_viewed,2026-06-10T10:18:00Z,u_0466_s01,ins_u_0466_004,{},v2.3.0-buggy +evt_001173,u_0599,signup_completed,2026-06-10T10:18:00Z,u_0599_s01,ins_u_0599_002,{},v2.3.0-buggy +evt_001174,u_0599,profile_saved,2026-06-10T10:23:00Z,u_0599_s01,ins_u_0599_003,{},v2.3.0-buggy +evt_001175,u_0037,signup_started,2026-06-10T10:24:00Z,u_0037_s01,ins_u_0037_001,{},v2.3.0-buggy +evt_001176,u_0614,feature_used,2026-06-10T10:25:00Z,u_0614_s01,ins_u_0614_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001177,u_0361,feature_used,2026-06-10T10:26:00Z,u_0361_s01,ins_u_0361_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001178,u_0599,onboarding_step_viewed,2026-06-10T10:27:00Z,u_0599_s01,ins_u_0599_004,{},v2.3.0-buggy +evt_001179,u_0037,session_abandoned,2026-06-10T10:31:00Z,u_0037_s01,ins_u_0037_002,{},v2.3.0-buggy +evt_001180,u_0466,feature_used,2026-06-10T10:33:00Z,u_0466_s01,ins_u_0466_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001181,u_0599,feature_used,2026-06-10T10:36:00Z,u_0599_s01,ins_u_0599_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001182,u_0614,onboarding_completed,2026-06-10T10:36:00Z,u_0614_s01,ins_u_0614_006,"{""completed_at"": ""2026-06-10T10:48:00Z""}",v2.3.0-buggy +evt_001183,u_0361,onboarding_completed,2026-06-10T10:44:00Z,u_0361_s01,ins_u_0361_006,"{""completed_at"": ""2026-06-10T10:35:00Z""}",v2.3.0-buggy +evt_001184,u_0574,signup_started,2026-06-10T10:44:00Z,u_0574_s01,ins_u_0574_001,{},v2.3.0-buggy +evt_001185,u_0574,signup_completed,2026-06-10T10:50:00Z,u_0574_s01,ins_u_0574_002,{},v2.3.0-buggy +evt_001186,u_0599,onboarding_completed,2026-06-10T10:50:00Z,u_0599_s01,ins_u_0599_006,"{""completed_at"": ""2026-06-10T10:49:00Z""}",v2.3.0-buggy +evt_001187,u_0466,onboarding_completed,2026-06-10T10:52:00Z,u_0466_s01,ins_u_0466_006,"{""completed_at"": ""2026-06-10T10:46:00Z""}",v2.3.0-buggy +evt_001188,u_0574,profile_saved,2026-06-10T10:56:00Z,u_0574_s01,ins_u_0574_003,{},v2.3.0-buggy +evt_001189,u_0669,signup_started,2026-06-10T10:59:00Z,u_0669_s01,ins_u_0669_001,{},v2.3.0-buggy +evt_001190,u_0574,onboarding_step_viewed,2026-06-10T11:01:00Z,u_0574_s01,ins_u_0574_004,{},v2.3.0-buggy +evt_001191,u_0135,signup_started,2026-06-10T11:02:00Z,u_0135_s01,ins_u_0135_001,{},v2.3.0-buggy +evt_001192,u_0550,signup_started,2026-06-10T11:02:00Z,u_0550_s01,ins_u_0550_001,{},v2.3.0-buggy +evt_001193,u_0424,signup_started,2026-06-10T11:04:00Z,u_0424_s01,ins_u_0424_001,{},v2.3.0-buggy +evt_001194,u_0550,signup_completed,2026-06-10T11:04:00Z,u_0550_s01,ins_u_0550_002,{},v2.3.0-buggy +evt_001195,u_0669,signup_completed,2026-06-10T11:04:00Z,u_0669_s01,ins_u_0669_002,{},v2.3.0-buggy +evt_001196,u_0135,signup_completed,2026-06-10T11:08:00Z,u_0135_s01,ins_u_0135_002,{},v2.3.0-buggy +evt_001197,u_0669,session_abandoned,2026-06-10T11:08:00Z,u_0669_s01,ins_u_0669_003,{},v2.3.0-buggy +evt_001198,u_0135,onboarding_completed,2026-06-10T11:09:00Z,u_0135_s01,ins_u_0135_003,{},v2.3.0-buggy +evt_001199,u_0424,signup_completed,2026-06-10T11:09:00Z,u_0424_s01,ins_u_0424_002,{},v2.3.0-buggy +evt_001200,u_0550,profile_saved,2026-06-10T11:10:00Z,u_0550_s01,ins_u_0550_003,{},v2.3.0-buggy +evt_001201,u_0135,session_abandoned,2026-06-10T11:15:00Z,u_0135_s01,ins_u_0135_004,{},v2.3.0-buggy +evt_001202,u_0276,signup_started,2026-06-10T11:15:00Z,u_0276_s01,ins_u_0276_001,{},v2.3.0-buggy +evt_001203,u_0424,session_abandoned,2026-06-10T11:15:00Z,u_0424_s01,ins_u_0424_003,{},v2.3.0-buggy +evt_001204,u_0550,onboarding_step_viewed,2026-06-10T11:16:00Z,u_0550_s01,ins_u_0550_004,{},v2.3.0-buggy +evt_001205,u_0276,signup_completed,2026-06-10T11:20:00Z,u_0276_s01,ins_u_0276_002,{},v2.3.0-buggy +evt_001206,u_0276,onboarding_completed,2026-06-10T11:22:00Z,u_0276_s01,ins_u_0276_003,{},v2.3.0-buggy +evt_001207,u_0466,activation_completed,2026-06-10T11:24:00Z,u_0466_s01,ins_u_0466_007,{},v2.3.0-buggy +evt_001208,u_0564,signup_started,2026-06-10T11:25:00Z,u_0564_s01,ins_u_0564_001,{},v2.3.0-buggy +evt_001209,u_0276,session_abandoned,2026-06-10T11:27:00Z,u_0276_s01,ins_u_0276_004,{},v2.3.0-buggy +evt_001210,u_0564,signup_completed,2026-06-10T11:27:00Z,u_0564_s01,ins_u_0564_002,{},v2.3.0-buggy +evt_001211,u_0574,onboarding_completed,2026-06-10T11:27:00Z,u_0574_s01,ins_u_0574_005,"{""completed_at"": ""2026-06-10T11:36:00Z""}",v2.3.0-buggy +evt_001212,u_0637,signup_started,2026-06-10T11:27:00Z,u_0637_s01,ins_u_0637_001,{},v2.3.0-buggy +evt_001213,u_0001,signup_started,2026-06-10T11:28:00Z,u_0001_s01,ins_u_0001_001,{},v2.3.0-buggy +evt_001214,u_0564,profile_saved,2026-06-10T11:30:00Z,u_0564_s01,ins_u_0564_003,{},v2.3.0-buggy +evt_001215,u_0637,signup_completed,2026-06-10T11:30:00Z,u_0637_s01,ins_u_0637_002,{},v2.3.0-buggy +evt_001216,u_0550,feature_used,2026-06-10T11:31:00Z,u_0550_s01,ins_u_0550_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001217,u_0001,signup_completed,2026-06-10T11:32:00Z,u_0001_s01,ins_u_0001_002,{},v2.3.0-buggy +evt_001218,u_0564,onboarding_step_viewed,2026-06-10T11:32:00Z,u_0564_s01,ins_u_0564_004,{},v2.3.0-buggy +evt_001219,u_0747,signup_started,2026-06-10T11:32:00Z,u_0747_s01,ins_u_0747_001,{},v2.3.0-buggy +evt_001220,u_0637,profile_saved,2026-06-10T11:35:00Z,u_0637_s01,ins_u_0637_003,{},v2.3.0-buggy +evt_001221,u_0747,session_abandoned,2026-06-10T11:36:00Z,u_0747_s01,ins_u_0747_002,{},v2.3.0-buggy +evt_001222,u_0008,signup_started,2026-06-10T11:38:00Z,u_0008_s01,ins_u_0008_001,{},v2.3.0-buggy +evt_001223,u_0637,onboarding_step_viewed,2026-06-10T11:39:00Z,u_0637_s01,ins_u_0637_004,{},v2.3.0-buggy +evt_001224,u_0001,profile_saved,2026-06-10T11:42:00Z,u_0001_s01,ins_u_0001_003,{},v2.3.0-buggy +evt_001225,u_0001,onboarding_step_viewed,2026-06-10T11:44:00Z,u_0001_s01,ins_u_0001_004,{},v2.3.0-buggy +evt_001226,u_0314,signup_started,2026-06-10T11:44:00Z,u_0314_s01,ins_u_0314_001,{},v2.3.0-buggy +evt_001227,u_0008,signup_completed,2026-06-10T11:46:00Z,u_0008_s01,ins_u_0008_002,{},v2.3.0-buggy +evt_001228,u_0008,session_abandoned,2026-06-10T11:51:00Z,u_0008_s01,ins_u_0008_003,{},v2.3.0-buggy +evt_001229,u_0314,signup_completed,2026-06-10T11:51:00Z,u_0314_s01,ins_u_0314_002,{},v2.3.0-buggy +evt_001230,u_0564,feature_used,2026-06-10T11:51:00Z,u_0564_s01,ins_u_0564_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001231,u_0378,signup_started,2026-06-10T11:54:00Z,u_0378_s01,ins_u_0378_001,{},v2.3.0-buggy +evt_001232,u_0565,signup_started,2026-06-10T11:54:00Z,u_0565_s01,ins_u_0565_001,{},v2.3.0-buggy +evt_001233,u_0314,profile_saved,2026-06-10T11:59:00Z,u_0314_s01,ins_u_0314_003,{},v2.3.0-buggy +evt_001234,u_0564,onboarding_completed,2026-06-10T11:59:00Z,u_0564_s01,ins_u_0564_006,"{""completed_at"": ""2026-06-10T12:00:00Z""}",v2.3.0-buggy +evt_001235,u_0565,signup_completed,2026-06-10T11:59:00Z,u_0565_s01,ins_u_0565_002,{},v2.3.0-buggy +evt_001236,u_0314,onboarding_step_viewed,2026-06-10T12:01:00Z,u_0314_s01,ins_u_0314_004,{},v2.3.0-buggy +evt_001237,u_0378,signup_completed,2026-06-10T12:01:00Z,u_0378_s01,ins_u_0378_002,{},v2.3.0-buggy +evt_001238,u_0378,onboarding_completed,2026-06-10T12:02:00Z,u_0378_s01,ins_u_0378_003,{},v2.3.0-buggy +evt_001239,u_0565,profile_saved,2026-06-10T12:05:00Z,u_0565_s01,ins_u_0565_003,{},v2.3.0-buggy +evt_001240,u_0637,onboarding_completed,2026-06-10T12:05:00Z,u_0637_s01,ins_u_0637_005,"{""completed_at"": ""2026-06-10T12:01:00Z""}",v2.3.0-buggy +evt_001241,u_0314,feature_used,2026-06-10T12:06:00Z,u_0314_s01,ins_u_0314_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001242,u_0378,session_abandoned,2026-06-10T12:07:00Z,u_0378_s01,ins_u_0378_004,{},v2.3.0-buggy +evt_001243,u_0565,onboarding_step_viewed,2026-06-10T12:11:00Z,u_0565_s01,ins_u_0565_004,{},v2.3.0-buggy +evt_001244,u_0001,onboarding_completed,2026-06-10T12:25:00Z,u_0001_s01,ins_u_0001_005,"{""completed_at"": ""2026-06-10T12:20:00Z""}",v2.3.0-buggy +evt_001245,u_0565,feature_used,2026-06-10T12:26:00Z,u_0565_s01,ins_u_0565_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001246,u_0637,activation_completed,2026-06-10T12:27:00Z,u_0637_s01,ins_u_0637_006,{},v2.3.0-buggy +evt_001247,u_0718,signup_started,2026-06-10T12:28:00Z,u_0718_s01,ins_u_0718_001,{},v2.3.0-buggy +evt_001248,u_0760,signup_started,2026-06-10T12:28:00Z,u_0760_s01,ins_u_0760_001,{},v2.3.0-buggy +evt_001249,u_0651,signup_started,2026-06-10T12:32:00Z,u_0651_s01,ins_u_0651_001,{},v2.3.0-buggy +evt_001250,u_0651,signup_completed,2026-06-10T12:34:00Z,u_0651_s01,ins_u_0651_002,{},v2.3.0-buggy +evt_001251,u_0760,signup_completed,2026-06-10T12:34:00Z,u_0760_s01,ins_u_0760_002,{},v2.3.0-buggy +evt_001252,u_0718,signup_completed,2026-06-10T12:36:00Z,u_0718_s01,ins_u_0718_002,{},v2.3.0-buggy +evt_001253,u_0651,profile_saved,2026-06-10T12:39:00Z,u_0651_s01,ins_u_0651_003,{},v2.3.0-buggy +evt_001254,u_0314,onboarding_completed,2026-06-10T12:40:00Z,u_0314_s01,ins_u_0314_006,"{""completed_at"": ""2026-06-10T12:25:00Z""}",v2.3.0-buggy +evt_001255,u_0760,profile_saved,2026-06-10T12:40:00Z,u_0760_s01,ins_u_0760_003,{},v2.3.0-buggy +evt_001256,u_0718,session_abandoned,2026-06-10T12:43:00Z,u_0718_s01,ins_u_0718_003,{},v2.3.0-buggy +evt_001257,u_0379,signup_started,2026-06-10T12:44:00Z,u_0379_s01,ins_u_0379_001,{},v2.3.0-buggy +evt_001258,u_0651,onboarding_step_viewed,2026-06-10T12:44:00Z,u_0651_s01,ins_u_0651_004,{},v2.3.0-buggy +evt_001259,u_0760,onboarding_step_viewed,2026-06-10T12:44:00Z,u_0760_s01,ins_u_0760_004,{},v2.3.0-buggy +evt_001260,u_0001,activation_completed,2026-06-10T12:47:00Z,u_0001_s01,ins_u_0001_006,{},v2.3.0-buggy +evt_001261,u_0565,onboarding_completed,2026-06-10T12:47:00Z,u_0565_s01,ins_u_0565_006,"{""completed_at"": ""2026-06-10T12:33:00Z""}",v2.3.0-buggy +evt_001262,u_0379,session_abandoned,2026-06-10T12:49:00Z,u_0379_s01,ins_u_0379_002,{},v2.3.0-buggy +evt_001263,u_0651,feature_used,2026-06-10T12:50:00Z,u_0651_s01,ins_u_0651_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001264,u_0600,signup_started,2026-06-10T12:55:00Z,u_0600_s01,ins_u_0600_001,{},v2.3.0-buggy +evt_001265,u_0533,signup_started,2026-06-10T12:56:00Z,u_0533_s01,ins_u_0533_001,{},v2.3.0-buggy +evt_001266,u_0600,signup_completed,2026-06-10T12:56:00Z,u_0600_s01,ins_u_0600_002,{},v2.3.0-buggy +evt_001267,u_0565,activation_completed,2026-06-10T12:57:00Z,u_0565_s01,ins_u_0565_007,{},v2.3.0-buggy +evt_001268,u_0760,feature_used,2026-06-10T13:00:00Z,u_0760_s01,ins_u_0760_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001269,u_0600,session_abandoned,2026-06-10T13:01:00Z,u_0600_s01,ins_u_0600_003,{},v2.3.0-buggy +evt_001270,u_0533,signup_completed,2026-06-10T13:02:00Z,u_0533_s01,ins_u_0533_002,{},v2.3.0-buggy +evt_001271,u_0533,onboarding_completed,2026-06-10T13:03:00Z,u_0533_s01,ins_u_0533_003,{},v2.3.0-buggy +evt_001272,u_0660,signup_started,2026-06-10T13:05:00Z,u_0660_s01,ins_u_0660_001,{},v2.3.0-buggy +evt_001273,u_0533,session_abandoned,2026-06-10T13:06:00Z,u_0533_s01,ins_u_0533_004,{},v2.3.0-buggy +evt_001274,u_0002,signup_started,2026-06-10T13:08:00Z,u_0002_s01,ins_u_0002_001,{},v2.3.0-buggy +evt_001275,u_0660,signup_completed,2026-06-10T13:08:00Z,u_0660_s01,ins_u_0660_002,{},v2.3.0-buggy +evt_001276,u_0002,signup_completed,2026-06-10T13:11:00Z,u_0002_s01,ins_u_0002_002,{},v2.3.0-buggy +evt_001277,u_0120,signup_started,2026-06-10T13:11:00Z,u_0120_s01,ins_u_0120_001,{},v2.3.0-buggy +evt_001278,u_0660,profile_saved,2026-06-10T13:11:00Z,u_0660_s01,ins_u_0660_003,{},v2.3.0-buggy +evt_001279,u_0120,session_abandoned,2026-06-10T13:14:00Z,u_0120_s01,ins_u_0120_002,{},v2.3.0-buggy +evt_001280,u_0651,onboarding_completed,2026-06-10T13:14:00Z,u_0651_s01,ins_u_0651_006,"{""completed_at"": ""2026-06-10T13:14:00Z""}",v2.3.0-buggy +evt_001281,u_0660,onboarding_step_viewed,2026-06-10T13:15:00Z,u_0660_s01,ins_u_0660_004,{},v2.3.0-buggy +evt_001282,u_0002,profile_saved,2026-06-10T13:17:00Z,u_0002_s01,ins_u_0002_003,{},v2.3.0-buggy +evt_001283,u_0456,signup_started,2026-06-10T13:17:00Z,u_0456_s01,ins_u_0456_001,{},v2.3.0-buggy +evt_001284,u_0760,onboarding_completed,2026-06-10T13:19:00Z,u_0760_s01,ins_u_0760_006,"{""completed_at"": ""2026-06-10T13:14:00Z""}",v2.3.0-buggy +evt_001285,u_0501,signup_started,2026-06-10T13:20:00Z,u_0501_s01,ins_u_0501_001,{},v2.3.0-buggy +evt_001286,u_0169,signup_started,2026-06-10T13:21:00Z,u_0169_s01,ins_u_0169_001,{},v2.3.0-buggy +evt_001287,u_0456,signup_completed,2026-06-10T13:21:00Z,u_0456_s01,ins_u_0456_002,{},v2.3.0-buggy +evt_001288,u_0501,signup_completed,2026-06-10T13:22:00Z,u_0501_s01,ins_u_0501_002,{},v2.3.0-buggy +evt_001289,u_0002,onboarding_step_viewed,2026-06-10T13:23:00Z,u_0002_s01,ins_u_0002_004,{},v2.3.0-buggy +evt_001290,u_0553,signup_started,2026-06-10T13:26:00Z,u_0553_s01,ins_u_0553_001,{},v2.3.0-buggy +evt_001291,u_0592,signup_started,2026-06-10T13:26:00Z,u_0592_s01,ins_u_0592_001,{},v2.3.0-buggy +evt_001292,u_0501,profile_saved,2026-06-10T13:27:00Z,u_0501_s01,ins_u_0501_003,{},v2.3.0-buggy +evt_001293,u_0592,session_abandoned,2026-06-10T13:27:00Z,u_0592_s01,ins_u_0592_002,{},v2.3.0-buggy +evt_001294,u_0169,session_abandoned,2026-06-10T13:29:00Z,u_0169_s01,ins_u_0169_002,{},v2.3.0-buggy +evt_001295,u_0553,signup_completed,2026-06-10T13:29:00Z,u_0553_s01,ins_u_0553_002,{},v2.3.0-buggy +evt_001296,u_0456,profile_saved,2026-06-10T13:30:00Z,u_0456_s01,ins_u_0456_003,{},v2.3.0-buggy +evt_001297,u_0259,signup_started,2026-06-10T13:31:00Z,u_0259_s01,ins_u_0259_001,{},v2.3.0-buggy +evt_001298,u_0501,onboarding_step_viewed,2026-06-10T13:33:00Z,u_0501_s01,ins_u_0501_004,{},v2.3.0-buggy +evt_001299,u_0456,onboarding_step_viewed,2026-06-10T13:34:00Z,u_0456_s01,ins_u_0456_004,{},v2.3.0-buggy +evt_001300,u_0660,feature_used,2026-06-10T13:35:00Z,u_0660_s01,ins_u_0660_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001301,u_0259,signup_completed,2026-06-10T13:36:00Z,u_0259_s01,ins_u_0259_002,{},v2.3.0-buggy +evt_001302,u_0760,activation_completed,2026-06-10T13:38:00Z,u_0760_s01,ins_u_0760_007,{},v2.3.0-buggy +evt_001303,u_0079,signup_started,2026-06-10T13:39:00Z,u_0079_s01,ins_u_0079_001,{},v2.3.0-buggy +evt_001304,u_0553,profile_saved,2026-06-10T13:39:00Z,u_0553_s01,ins_u_0553_003,{},v2.3.0-buggy +evt_001305,u_0259,profile_saved,2026-06-10T13:41:00Z,u_0259_s01,ins_u_0259_003,{},v2.3.0-buggy +evt_001306,u_0002,onboarding_completed,2026-06-10T13:43:00Z,u_0002_s01,ins_u_0002_005,"{""completed_at"": ""2026-06-10T13:55:00Z""}",v2.3.0-buggy +evt_001307,u_0553,onboarding_step_viewed,2026-06-10T13:43:00Z,u_0553_s01,ins_u_0553_004,{},v2.3.0-buggy +evt_001308,u_0660,onboarding_completed,2026-06-10T13:44:00Z,u_0660_s01,ins_u_0660_006,"{""completed_at"": ""2026-06-10T13:43:00Z""}",v2.3.0-buggy +evt_001309,u_0079,signup_completed,2026-06-10T13:45:00Z,u_0079_s01,ins_u_0079_002,{},v2.3.0-buggy +evt_001310,u_0259,onboarding_step_viewed,2026-06-10T13:45:00Z,u_0259_s01,ins_u_0259_004,{},v2.3.0-buggy +evt_001311,u_0079,onboarding_completed,2026-06-10T13:48:00Z,u_0079_s01,ins_u_0079_003,{},v2.3.0-buggy +evt_001312,u_0079,session_abandoned,2026-06-10T13:53:00Z,u_0079_s01,ins_u_0079_004,{},v2.3.0-buggy +evt_001313,u_0501,onboarding_completed,2026-06-10T14:00:00Z,u_0501_s01,ins_u_0501_005,"{""completed_at"": ""2026-06-10T13:57:00Z""}",v2.3.0-buggy +evt_001314,u_0553,feature_used,2026-06-10T14:00:00Z,u_0553_s01,ins_u_0553_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001315,u_0440,signup_started,2026-06-10T14:02:00Z,u_0440_s01,ins_u_0440_001,{},v2.3.0-buggy +evt_001316,u_0646,signup_started,2026-06-10T14:08:00Z,u_0646_s01,ins_u_0646_001,{},v2.3.0-buggy +evt_001317,u_0440,session_abandoned,2026-06-10T14:09:00Z,u_0440_s01,ins_u_0440_002,{},v2.3.0-buggy +evt_001318,u_0440,session_abandoned,2026-06-10T14:10:00Z,u_0440_s01,ins_u_0440_002,{},v2.3.0-buggy +evt_001319,u_0259,onboarding_completed,2026-06-10T14:12:00Z,u_0259_s01,ins_u_0259_005,"{""completed_at"": ""2026-06-10T14:19:00Z""}",v2.3.0-buggy +evt_001320,u_0456,onboarding_completed,2026-06-10T14:13:00Z,u_0456_s01,ins_u_0456_005,"{""completed_at"": ""2026-06-10T13:56:00Z""}",v2.3.0-buggy +evt_001321,u_0553,onboarding_completed,2026-06-10T14:14:00Z,u_0553_s01,ins_u_0553_006,"{""completed_at"": ""2026-06-10T14:19:00Z""}",v2.3.0-buggy +evt_001322,u_0646,signup_completed,2026-06-10T14:15:00Z,u_0646_s01,ins_u_0646_002,{},v2.3.0-buggy +evt_001323,u_0646,profile_saved,2026-06-10T14:17:00Z,u_0646_s01,ins_u_0646_003,{},v2.3.0-buggy +evt_001324,u_0646,onboarding_step_viewed,2026-06-10T14:23:00Z,u_0646_s01,ins_u_0646_004,{},v2.3.0-buggy +evt_001325,u_0480,signup_started,2026-06-10T14:24:00Z,u_0480_s01,ins_u_0480_001,{},v2.3.0-buggy +evt_001326,u_0480,signup_completed,2026-06-10T14:26:00Z,u_0480_s01,ins_u_0480_002,{},v2.3.0-buggy +evt_001327,u_0443,signup_started,2026-06-10T14:28:00Z,u_0443_s01,ins_u_0443_001,{},v2.3.0-buggy +evt_001328,u_0559,signup_started,2026-06-10T14:29:00Z,u_0559_s01,ins_u_0559_001,{},v2.3.0-buggy +evt_001329,u_0480,profile_saved,2026-06-10T14:31:00Z,u_0480_s01,ins_u_0480_003,{},v2.3.0-buggy +evt_001330,u_0443,signup_completed,2026-06-10T14:32:00Z,u_0443_s01,ins_u_0443_002,{},v2.3.0-buggy +evt_001331,u_0480,onboarding_step_viewed,2026-06-10T14:33:00Z,u_0480_s01,ins_u_0480_004,{},v2.3.0-buggy +evt_001332,u_0559,signup_completed,2026-06-10T14:35:00Z,u_0559_s01,ins_u_0559_002,{},v2.3.0-buggy +evt_001333,u_0443,profile_saved,2026-06-10T14:37:00Z,u_0443_s01,ins_u_0443_003,{},v2.3.0-buggy +evt_001334,u_0757,signup_started,2026-06-10T14:37:00Z,u_0757_s01,ins_u_0757_001,{},v2.3.0-buggy +evt_001335,u_0559,profile_saved,2026-06-10T14:38:00Z,u_0559_s01,ins_u_0559_003,{},v2.3.0-buggy +evt_001336,u_0553,activation_completed,2026-06-10T14:39:00Z,u_0553_s01,ins_u_0553_007,{},v2.3.0-buggy +evt_001337,u_0757,signup_completed,2026-06-10T14:39:00Z,u_0757_s01,ins_u_0757_002,{},v2.3.0-buggy +evt_001338,u_0559,onboarding_step_viewed,2026-06-10T14:40:00Z,u_0559_s01,ins_u_0559_004,{},v2.3.0-buggy +evt_001339,u_0443,onboarding_step_viewed,2026-06-10T14:41:00Z,u_0443_s01,ins_u_0443_004,{},v2.3.0-buggy +evt_001340,u_0757,onboarding_completed,2026-06-10T14:42:00Z,u_0757_s01,ins_u_0757_003,{},v2.3.0-buggy +evt_001341,u_0757,session_abandoned,2026-06-10T14:43:00Z,u_0757_s01,ins_u_0757_004,{},v2.3.0-buggy +evt_001342,u_0056,signup_started,2026-06-10T14:44:00Z,u_0056_s01,ins_u_0056_001,{},v2.3.0-buggy +evt_001343,u_0056,signup_completed,2026-06-10T14:45:00Z,u_0056_s01,ins_u_0056_002,{},v2.3.0-buggy +evt_001344,u_0056,onboarding_completed,2026-06-10T14:46:00Z,u_0056_s01,ins_u_0056_003,{},v2.3.0-buggy +evt_001345,u_0673,signup_started,2026-06-10T14:46:00Z,u_0673_s01,ins_u_0673_001,{},v2.3.0-buggy +evt_001346,u_0725,signup_started,2026-06-10T14:46:00Z,u_0725_s01,ins_u_0725_001,{},v2.3.0-buggy +evt_001347,u_0275,signup_started,2026-06-10T14:47:00Z,u_0275_s01,ins_u_0275_001,{},v2.3.0-buggy +evt_001348,u_0673,signup_completed,2026-06-10T14:47:00Z,u_0673_s01,ins_u_0673_002,{},v2.3.0-buggy +evt_001349,u_0083,signup_started,2026-06-10T14:48:00Z,u_0083_s01,ins_u_0083_001,{},v2.3.0-buggy +evt_001350,u_0259,activation_completed,2026-06-10T14:50:00Z,u_0259_s01,ins_u_0259_006,{},v2.3.0-buggy +evt_001351,u_0056,session_abandoned,2026-06-10T14:51:00Z,u_0056_s01,ins_u_0056_004,{},v2.3.0-buggy +evt_001352,u_0275,signup_completed,2026-06-10T14:52:00Z,u_0275_s01,ins_u_0275_002,{},v2.3.0-buggy +evt_001353,u_0646,onboarding_completed,2026-06-10T14:53:00Z,u_0646_s01,ins_u_0646_005,"{""completed_at"": ""2026-06-10T14:51:00Z""}",v2.3.0-buggy +evt_001354,u_0725,signup_completed,2026-06-10T14:53:00Z,u_0725_s01,ins_u_0725_002,{},v2.3.0-buggy +evt_001355,u_0083,signup_completed,2026-06-10T14:56:00Z,u_0083_s01,ins_u_0083_002,{},v2.3.0-buggy +evt_001356,u_0673,profile_saved,2026-06-10T14:56:00Z,u_0673_s01,ins_u_0673_003,{},v2.3.0-buggy +evt_001357,u_0275,profile_saved,2026-06-10T15:00:00Z,u_0275_s01,ins_u_0275_003,{},v2.3.0-buggy +evt_001358,u_0403,signup_started,2026-06-10T15:02:00Z,u_0403_s01,ins_u_0403_001,{},v2.3.0-buggy +evt_001359,u_0673,onboarding_step_viewed,2026-06-10T15:02:00Z,u_0673_s01,ins_u_0673_004,{},v2.3.0-buggy +evt_001360,u_0725,profile_saved,2026-06-10T15:02:00Z,u_0725_s01,ins_u_0725_003,{},v2.3.0-buggy +evt_001361,u_0403,signup_completed,2026-06-10T15:03:00Z,u_0403_s01,ins_u_0403_002,{},v2.3.0-buggy +evt_001362,u_0443,onboarding_completed,2026-06-10T15:03:00Z,u_0443_s01,ins_u_0443_005,"{""completed_at"": ""2026-06-10T15:11:00Z""}",v2.3.0-buggy +evt_001363,u_0083,session_abandoned,2026-06-10T15:04:00Z,u_0083_s01,ins_u_0083_003,{},v2.3.0-buggy +evt_001364,u_0480,onboarding_completed,2026-06-10T15:04:00Z,u_0480_s01,ins_u_0480_005,"{""completed_at"": ""2026-06-10T14:58:00Z""}",v2.3.0-buggy +evt_001365,u_0725,onboarding_step_viewed,2026-06-10T15:05:00Z,u_0725_s01,ins_u_0725_004,{},v2.3.0-buggy +evt_001366,u_0673,feature_used,2026-06-10T15:08:00Z,u_0673_s01,ins_u_0673_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001367,u_0673,feature_used,2026-06-10T15:09:00Z,u_0673_s01,ins_u_0673_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001368,u_0586,signup_started,2026-06-10T15:10:00Z,u_0586_s01,ins_u_0586_001,{},v2.3.0-buggy +evt_001369,u_0403,profile_saved,2026-06-10T15:13:00Z,u_0403_s01,ins_u_0403_003,{},v2.3.0-buggy +evt_001370,u_0586,signup_completed,2026-06-10T15:13:00Z,u_0586_s01,ins_u_0586_002,{},v2.3.0-buggy +evt_001371,u_0403,onboarding_step_viewed,2026-06-10T15:18:00Z,u_0403_s01,ins_u_0403_004,{},v2.3.0-buggy +evt_001372,u_0403,feature_used,2026-06-10T15:21:00Z,u_0403_s01,ins_u_0403_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001373,u_0559,onboarding_completed,2026-06-10T15:21:00Z,u_0559_s01,ins_u_0559_005,"{""completed_at"": ""2026-06-10T15:12:00Z""}",v2.3.0-buggy +evt_001374,u_0586,session_abandoned,2026-06-10T15:21:00Z,u_0586_s01,ins_u_0586_003,{},v2.3.0-buggy +evt_001375,u_0415,signup_started,2026-06-10T15:22:00Z,u_0415_s01,ins_u_0415_001,{},v2.3.0-buggy +evt_001376,u_0415,session_abandoned,2026-06-10T15:23:00Z,u_0415_s01,ins_u_0415_002,{},v2.3.0-buggy +evt_001377,u_0275,onboarding_completed,2026-06-10T15:31:00Z,u_0275_s01,ins_u_0275_004,"{""completed_at"": ""2026-06-10T15:31:00Z""}",v2.3.0-buggy +evt_001378,u_0313,signup_started,2026-06-10T15:32:00Z,u_0313_s01,ins_u_0313_001,{},v2.3.0-buggy +evt_001379,u_0647,signup_started,2026-06-10T15:32:00Z,u_0647_s01,ins_u_0647_001,{},v2.3.0-buggy +evt_001380,u_0647,signup_completed,2026-06-10T15:34:00Z,u_0647_s01,ins_u_0647_002,{},v2.3.0-buggy +evt_001381,u_0672,signup_started,2026-06-10T15:34:00Z,u_0672_s01,ins_u_0672_001,{},v2.3.0-buggy +evt_001382,u_0313,signup_completed,2026-06-10T15:35:00Z,u_0313_s01,ins_u_0313_002,{},v2.3.0-buggy +evt_001383,u_0672,signup_completed,2026-06-10T15:36:00Z,u_0672_s01,ins_u_0672_002,{},v2.3.0-buggy +evt_001384,u_0647,session_abandoned,2026-06-10T15:43:00Z,u_0647_s01,ins_u_0647_003,{},v2.3.0-buggy +evt_001385,u_0672,profile_saved,2026-06-10T15:44:00Z,u_0672_s01,ins_u_0672_003,{},v2.3.0-buggy +evt_001386,u_0313,profile_saved,2026-06-10T15:45:00Z,u_0313_s01,ins_u_0313_003,{},v2.3.0-buggy +evt_001387,u_0725,onboarding_completed,2026-06-10T15:45:00Z,u_0725_s01,ins_u_0725_005,"{""completed_at"": ""2026-06-10T15:33:00Z""}",v2.3.0-buggy +evt_001388,u_0403,onboarding_completed,2026-06-10T15:47:00Z,u_0403_s01,ins_u_0403_006,"{""completed_at"": ""2026-06-10T15:43:00Z""}",v2.3.0-buggy +evt_001389,u_0672,onboarding_step_viewed,2026-06-10T15:47:00Z,u_0672_s01,ins_u_0672_004,{},v2.3.0-buggy +evt_001390,u_0313,onboarding_step_viewed,2026-06-10T15:51:00Z,u_0313_s01,ins_u_0313_004,{},v2.3.0-buggy +evt_001391,u_0559,activation_completed,2026-06-10T15:52:00Z,u_0559_s01,ins_u_0559_006,{},v2.3.0-buggy +evt_001392,u_0313,feature_used,2026-06-10T16:00:00Z,u_0313_s01,ins_u_0313_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001393,u_0725,activation_completed,2026-06-10T16:00:00Z,u_0725_s01,ins_u_0725_006,{},v2.3.0-buggy +evt_001394,u_0673,activation_completed,2026-06-10T16:05:00Z,u_0673_s01,ins_u_0673_006,{},v2.3.0-buggy +evt_001395,u_0206,signup_started,2026-06-10T16:11:00Z,u_0206_s01,ins_u_0206_001,{},v2.3.0-buggy +evt_001396,u_0672,onboarding_completed,2026-06-10T16:11:00Z,u_0672_s01,ins_u_0672_005,"{""completed_at"": ""2026-06-10T16:22:00Z""}",v2.3.0-buggy +evt_001397,u_0453,signup_started,2026-06-10T16:13:00Z,u_0453_s01,ins_u_0453_001,{},v2.3.0-buggy +evt_001398,u_0453,signup_completed,2026-06-10T16:14:00Z,u_0453_s01,ins_u_0453_002,{},v2.3.0-buggy +evt_001399,u_0206,signup_completed,2026-06-10T16:16:00Z,u_0206_s01,ins_u_0206_002,{},v2.3.0-buggy +evt_001400,u_0453,profile_saved,2026-06-10T16:18:00Z,u_0453_s01,ins_u_0453_003,{},v2.3.0-buggy +evt_001401,u_0162,signup_started,2026-06-10T16:19:00Z,u_0162_s01,ins_u_0162_001,{},v2.3.0-buggy +evt_001402,u_0313,onboarding_completed,2026-06-10T16:21:00Z,u_0313_s01,ins_u_0313_006,"{""completed_at"": ""2026-06-10T16:23:00Z""}",v2.3.0-buggy +evt_001403,u_0206,profile_saved,2026-06-10T16:23:00Z,u_0206_s01,ins_u_0206_003,{},v2.3.0-buggy +evt_001404,u_0453,onboarding_step_viewed,2026-06-10T16:23:00Z,u_0453_s01,ins_u_0453_004,{},v2.3.0-buggy +evt_001405,u_0677,signup_started,2026-06-10T16:24:00Z,u_0677_s01,ins_u_0677_001,{},v2.3.0-buggy +evt_001406,u_0162,signup_completed,2026-06-10T16:27:00Z,u_0162_s01,ins_u_0162_002,{},v2.3.0-buggy +evt_001407,u_0206,onboarding_step_viewed,2026-06-10T16:28:00Z,u_0206_s01,ins_u_0206_004,{},v2.3.0-buggy +evt_001408,u_0162,onboarding_completed,2026-06-10T16:29:00Z,u_0162_s01,ins_u_0162_003,{},v2.3.0-buggy +evt_001409,u_0364,signup_started,2026-06-10T16:30:00Z,u_0364_s01,ins_u_0364_001,{},v2.3.0-buggy +evt_001410,u_0677,signup_completed,2026-06-10T16:32:00Z,u_0677_s01,ins_u_0677_002,{},v2.3.0-buggy +evt_001411,u_0162,session_abandoned,2026-06-10T16:33:00Z,u_0162_s01,ins_u_0162_004,{},v2.3.0-buggy +evt_001412,u_0529,signup_started,2026-06-10T16:33:00Z,u_0529_s01,ins_u_0529_001,{},v2.3.0-buggy +evt_001413,u_0453,feature_used,2026-06-10T16:34:00Z,u_0453_s01,ins_u_0453_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001414,u_0529,signup_completed,2026-06-10T16:34:00Z,u_0529_s01,ins_u_0529_002,{},v2.3.0-buggy +evt_001415,u_0677,profile_saved,2026-06-10T16:34:00Z,u_0677_s01,ins_u_0677_003,{},v2.3.0-buggy +evt_001416,u_0367,signup_started,2026-06-10T16:35:00Z,u_0367_s01,ins_u_0367_001,{},v2.3.0-buggy +evt_001417,u_0529,onboarding_completed,2026-06-10T16:35:00Z,u_0529_s01,ins_u_0529_003,{},v2.3.0-buggy +evt_001418,u_0677,error_shown,2026-06-10T16:35:00Z,u_0677_s01,ins_u_0677_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001419,u_0668,signup_started,2026-06-10T16:36:00Z,u_0668_s01,ins_u_0668_001,{},v2.3.0-buggy +evt_001420,u_0193,signup_started,2026-06-10T16:38:00Z,u_0193_s01,ins_u_0193_001,{},v2.3.0-buggy +evt_001421,u_0364,signup_completed,2026-06-10T16:38:00Z,u_0364_s01,ins_u_0364_002,{},v2.3.0-buggy +evt_001422,u_0367,signup_completed,2026-06-10T16:38:00Z,u_0367_s01,ins_u_0367_002,{},v2.3.0-buggy +evt_001423,u_0529,session_abandoned,2026-06-10T16:38:00Z,u_0529_s01,ins_u_0529_004,{},v2.3.0-buggy +evt_001424,u_0367,onboarding_completed,2026-06-10T16:39:00Z,u_0367_s01,ins_u_0367_003,{},v2.3.0-buggy +evt_001425,u_0668,signup_completed,2026-06-10T16:39:00Z,u_0668_s01,ins_u_0668_002,{},v2.3.0-buggy +evt_001426,u_0677,onboarding_step_viewed,2026-06-10T16:39:00Z,u_0677_s01,ins_u_0677_005,{},v2.3.0-buggy +evt_001427,u_0193,signup_completed,2026-06-10T16:42:00Z,u_0193_s01,ins_u_0193_002,{},v2.3.0-buggy +evt_001428,u_0364,profile_saved,2026-06-10T16:43:00Z,u_0364_s01,ins_u_0364_003,{},v2.3.0-buggy +evt_001429,u_0364,error_shown,2026-06-10T16:44:00Z,u_0364_s01,ins_u_0364_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001430,u_0297,signup_started,2026-06-10T16:46:00Z,u_0297_s01,ins_u_0297_001,{},v2.3.0-buggy +evt_001431,u_0364,onboarding_step_viewed,2026-06-10T16:46:00Z,u_0364_s01,ins_u_0364_005,{},v2.3.0-buggy +evt_001432,u_0367,session_abandoned,2026-06-10T16:47:00Z,u_0367_s01,ins_u_0367_004,{},v2.3.0-buggy +evt_001433,u_0193,profile_saved,2026-06-10T16:49:00Z,u_0193_s01,ins_u_0193_003,{},v2.3.0-buggy +evt_001434,u_0297,signup_completed,2026-06-10T16:49:00Z,u_0297_s01,ins_u_0297_002,{},v2.3.0-buggy +evt_001435,u_0668,profile_saved,2026-06-10T16:49:00Z,u_0668_s01,ins_u_0668_003,{},v2.3.0-buggy +evt_001436,u_0677,feature_used,2026-06-10T16:51:00Z,u_0677_s01,ins_u_0677_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001437,u_0193,onboarding_step_viewed,2026-06-10T16:52:00Z,u_0193_s01,ins_u_0193_004,{},v2.3.0-buggy +evt_001438,u_0206,onboarding_completed,2026-06-10T16:52:00Z,u_0206_s01,ins_u_0206_005,"{""completed_at"": ""2026-06-10T16:50:00Z""}",v2.3.0-buggy +evt_001439,u_0668,onboarding_step_viewed,2026-06-10T16:55:00Z,u_0668_s01,ins_u_0668_004,{},v2.3.0-buggy +evt_001440,u_0297,session_abandoned,2026-06-10T16:56:00Z,u_0297_s01,ins_u_0297_003,{},v2.3.0-buggy +evt_001441,u_0453,onboarding_completed,2026-06-10T16:58:00Z,u_0453_s01,ins_u_0453_006,"{""completed_at"": ""2026-06-10T16:56:00Z""}",v2.3.0-buggy +evt_001442,u_0364,feature_used,2026-06-10T17:05:00Z,u_0364_s01,ins_u_0364_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_001443,u_0560,signup_started,2026-06-10T17:09:00Z,u_0560_s01,ins_u_0560_001,{},v2.3.0-buggy +evt_001444,u_0560,signup_completed,2026-06-10T17:13:00Z,u_0560_s01,ins_u_0560_002,{},v2.3.0-buggy +evt_001445,u_0193,onboarding_completed,2026-06-10T17:16:00Z,u_0193_s01,ins_u_0193_005,"{""completed_at"": ""2026-06-10T17:16:00Z""}",v2.3.0-buggy +evt_001446,u_0364,onboarding_completed,2026-06-10T17:17:00Z,u_0364_s01,ins_u_0364_007,"{""completed_at"": ""2026-06-10T17:20:00Z""}",v2.3.0-buggy +evt_001447,u_0677,onboarding_completed,2026-06-10T17:17:00Z,u_0677_s01,ins_u_0677_007,"{""completed_at"": ""2026-06-10T17:07:00Z""}",v2.3.0-buggy +evt_001448,u_0668,onboarding_completed,2026-06-10T17:19:00Z,u_0668_s01,ins_u_0668_005,"{""completed_at"": ""2026-06-10T17:18:00Z""}",v2.3.0-buggy +evt_001449,u_0560,profile_saved,2026-06-10T17:20:00Z,u_0560_s01,ins_u_0560_003,{},v2.3.0-buggy +evt_001450,u_0015,signup_started,2026-06-10T17:23:00Z,u_0015_s01,ins_u_0015_001,{},v2.3.0-buggy +evt_001451,u_0015,signup_completed,2026-06-10T17:24:00Z,u_0015_s01,ins_u_0015_002,{},v2.3.0-buggy +evt_001452,u_0560,onboarding_step_viewed,2026-06-10T17:25:00Z,u_0560_s01,ins_u_0560_004,{},v2.3.0-buggy +evt_001453,u_0156,signup_started,2026-06-10T17:28:00Z,u_0156_s01,ins_u_0156_001,{},v2.3.0-buggy +evt_001454,u_0453,activation_completed,2026-06-10T17:28:00Z,u_0453_s01,ins_u_0453_007,{},v2.3.0-buggy +evt_001455,u_0364,activation_completed,2026-06-10T17:29:00Z,u_0364_s01,ins_u_0364_008,{},v2.3.0-buggy +evt_001456,u_0015,profile_saved,2026-06-10T17:32:00Z,u_0015_s01,ins_u_0015_003,{},v2.3.0-buggy +evt_001457,u_0156,session_abandoned,2026-06-10T17:33:00Z,u_0156_s01,ins_u_0156_002,{},v2.3.0-buggy +evt_001458,u_0015,onboarding_step_viewed,2026-06-10T17:35:00Z,u_0015_s01,ins_u_0015_004,{},v2.3.0-buggy +evt_001459,u_0560,feature_used,2026-06-10T17:40:00Z,u_0560_s01,ins_u_0560_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001460,u_0668,activation_completed,2026-06-10T17:40:00Z,u_0668_s01,ins_u_0668_006,{},v2.3.0-buggy +evt_001461,u_0123,signup_started,2026-06-10T17:42:00Z,u_0123_s01,ins_u_0123_001,{},v2.3.0-buggy +evt_001462,u_0780,signup_started,2026-06-10T17:44:00Z,u_0780_s01,ins_u_0780_001,{},v2.3.0-buggy +evt_001463,u_0123,signup_completed,2026-06-10T17:45:00Z,u_0123_s01,ins_u_0123_002,{},v2.3.0-buggy +evt_001464,u_0560,onboarding_completed,2026-06-10T17:46:00Z,u_0560_s01,ins_u_0560_006,"{""completed_at"": ""2026-06-10T17:50:00Z""}",v2.3.0-buggy +evt_001465,u_0123,profile_saved,2026-06-10T17:47:00Z,u_0123_s01,ins_u_0123_003,{},v2.3.0-buggy +evt_001466,u_0780,signup_completed,2026-06-10T17:48:00Z,u_0780_s01,ins_u_0780_002,{},v2.3.0-buggy +evt_001467,u_0123,onboarding_step_viewed,2026-06-10T17:51:00Z,u_0123_s01,ins_u_0123_004,{},v2.3.0-buggy +evt_001468,u_0780,profile_saved,2026-06-10T17:52:00Z,u_0780_s01,ins_u_0780_003,{},v2.3.0-buggy +evt_001469,u_0705,signup_started,2026-06-10T17:53:00Z,u_0705_s01,ins_u_0705_001,{},v2.3.0-buggy +evt_001470,u_0780,error_shown,2026-06-10T17:53:00Z,u_0780_s01,ins_u_0780_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001471,u_0744,signup_started,2026-06-10T17:54:00Z,u_0744_s01,ins_u_0744_001,{},v2.3.0-buggy +evt_001472,u_0123,feature_used,2026-06-10T17:55:00Z,u_0123_s01,ins_u_0123_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001473,u_0123,feature_used,2026-06-10T17:56:00Z,u_0123_s01,ins_u_0123_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001474,u_0705,signup_completed,2026-06-10T17:58:00Z,u_0705_s01,ins_u_0705_002,{},v2.3.0-buggy +evt_001475,u_0780,onboarding_step_viewed,2026-06-10T17:58:00Z,u_0780_s01,ins_u_0780_005,{},v2.3.0-buggy +evt_001476,u_0705,signup_completed,2026-06-10T17:59:00Z,u_0705_s01,ins_u_0705_002,{},v2.3.0-buggy +evt_001477,u_0705,profile_saved,2026-06-10T18:01:00Z,u_0705_s01,ins_u_0705_003,{},v2.3.0-buggy +evt_001478,u_0744,signup_completed,2026-06-10T18:01:00Z,u_0744_s01,ins_u_0744_002,{},v2.3.0-buggy +evt_001479,u_0785,signup_started,2026-06-10T18:01:00Z,u_0785_s01,ins_u_0785_001,{},v2.3.0-buggy +evt_001480,u_0705,error_shown,2026-06-10T18:02:00Z,u_0705_s01,ins_u_0705_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001481,u_0744,signup_completed,2026-06-10T18:02:00Z,u_0744_s01,ins_u_0744_002,{},v2.3.0-buggy +evt_001482,u_0705,onboarding_step_viewed,2026-06-10T18:03:00Z,u_0705_s01,ins_u_0705_005,{},v2.3.0-buggy +evt_001483,u_0015,onboarding_completed,2026-06-10T18:06:00Z,u_0015_s01,ins_u_0015_005,"{""completed_at"": ""2026-06-10T18:09:00Z""}",v2.3.0-buggy +evt_001484,u_0744,session_abandoned,2026-06-10T18:06:00Z,u_0744_s01,ins_u_0744_003,{},v2.3.0-buggy +evt_001485,u_0278,signup_started,2026-06-10T18:07:00Z,u_0278_s01,ins_u_0278_001,{},v2.3.0-buggy +evt_001486,u_0780,feature_used,2026-06-10T18:07:00Z,u_0780_s01,ins_u_0780_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_001487,u_0785,signup_completed,2026-06-10T18:07:00Z,u_0785_s01,ins_u_0785_002,{},v2.3.0-buggy +evt_001488,u_0278,signup_completed,2026-06-10T18:10:00Z,u_0278_s01,ins_u_0278_002,{},v2.3.0-buggy +evt_001489,u_0278,profile_saved,2026-06-10T18:12:00Z,u_0278_s01,ins_u_0278_003,{},v2.3.0-buggy +evt_001490,u_0123,onboarding_completed,2026-06-10T18:14:00Z,u_0123_s01,ins_u_0123_006,"{""completed_at"": ""2026-06-10T18:25:00Z""}",v2.3.0-buggy +evt_001491,u_0560,activation_completed,2026-06-10T18:14:00Z,u_0560_s01,ins_u_0560_007,{},v2.3.0-buggy +evt_001492,u_0639,signup_started,2026-06-10T18:14:00Z,u_0639_s01,ins_u_0639_001,{},v2.3.0-buggy +evt_001493,u_0278,onboarding_step_viewed,2026-06-10T18:15:00Z,u_0278_s01,ins_u_0278_004,{},v2.3.0-buggy +evt_001494,u_0682,signup_started,2026-06-10T18:15:00Z,u_0682_s01,ins_u_0682_001,{},v2.3.0-buggy +evt_001495,u_0785,profile_saved,2026-06-10T18:16:00Z,u_0785_s01,ins_u_0785_003,{},v2.3.0-buggy +evt_001496,u_0307,signup_started,2026-06-10T18:17:00Z,u_0307_s01,ins_u_0307_001,{},v2.3.0-buggy +evt_001497,u_0682,signup_completed,2026-06-10T18:17:00Z,u_0682_s01,ins_u_0682_002,{},v2.3.0-buggy +evt_001498,u_0307,signup_completed,2026-06-10T18:21:00Z,u_0307_s01,ins_u_0307_002,{},v2.3.0-buggy +evt_001499,u_0639,session_abandoned,2026-06-10T18:21:00Z,u_0639_s01,ins_u_0639_002,{},v2.3.0-buggy +evt_001500,u_0242,signup_started,2026-06-10T18:22:00Z,u_0242_s01,ins_u_0242_001,{},v2.3.0-buggy +evt_001501,u_0307,onboarding_completed,2026-06-10T18:22:00Z,u_0307_s01,ins_u_0307_003,{},v2.3.0-buggy +evt_001502,u_0785,onboarding_step_viewed,2026-06-10T18:22:00Z,u_0785_s01,ins_u_0785_004,{},v2.3.0-buggy +evt_001503,u_0015,activation_completed,2026-06-10T18:25:00Z,u_0015_s01,ins_u_0015_006,{},v2.3.0-buggy +evt_001504,u_0242,signup_completed,2026-06-10T18:25:00Z,u_0242_s01,ins_u_0242_002,{},v2.3.0-buggy +evt_001505,u_0682,profile_saved,2026-06-10T18:25:00Z,u_0682_s01,ins_u_0682_003,{},v2.3.0-buggy +evt_001506,u_0705,feature_used,2026-06-10T18:25:00Z,u_0705_s01,ins_u_0705_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001507,u_0780,onboarding_completed,2026-06-10T18:25:00Z,u_0780_s01,ins_u_0780_007,"{""completed_at"": ""2026-06-10T18:29:00Z""}",v2.3.0-buggy +evt_001508,u_0785,feature_used,2026-06-10T18:28:00Z,u_0785_s01,ins_u_0785_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001509,u_0242,profile_saved,2026-06-10T18:29:00Z,u_0242_s01,ins_u_0242_003,{},v2.3.0-buggy +evt_001510,u_0307,session_abandoned,2026-06-10T18:30:00Z,u_0307_s01,ins_u_0307_004,{},v2.3.0-buggy +evt_001511,u_0682,onboarding_step_viewed,2026-06-10T18:30:00Z,u_0682_s01,ins_u_0682_004,{},v2.3.0-buggy +evt_001512,u_0242,onboarding_step_viewed,2026-06-10T18:31:00Z,u_0242_s01,ins_u_0242_004,{},v2.3.0-buggy +evt_001513,u_0705,onboarding_completed,2026-06-10T18:35:00Z,u_0705_s01,ins_u_0705_007,"{""completed_at"": ""2026-06-10T18:32:00Z""}",v2.3.0-buggy +evt_001514,u_0705,onboarding_completed,2026-06-10T18:36:00Z,u_0705_s01,ins_u_0705_007,"{""completed_at"": ""2026-06-10T18:32:00Z""}",v2.3.0-buggy +evt_001515,u_0611,signup_started,2026-06-10T18:38:00Z,u_0611_s01,ins_u_0611_001,{},v2.3.0-buggy +evt_001516,u_0123,activation_completed,2026-06-10T18:41:00Z,u_0123_s01,ins_u_0123_007,{},v2.3.0-buggy +evt_001517,u_0242,feature_used,2026-06-10T18:41:00Z,u_0242_s01,ins_u_0242_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001518,u_0611,session_abandoned,2026-06-10T18:42:00Z,u_0611_s01,ins_u_0611_002,{},v2.3.0-buggy +evt_001519,u_0785,onboarding_completed,2026-06-10T18:50:00Z,u_0785_s01,ins_u_0785_006,"{""completed_at"": ""2026-06-10T18:46:00Z""}",v2.3.0-buggy +evt_001520,u_0219,signup_started,2026-06-10T18:52:00Z,u_0219_s01,ins_u_0219_001,{},v2.3.0-buggy +evt_001521,u_0278,onboarding_completed,2026-06-10T18:57:00Z,u_0278_s01,ins_u_0278_005,"{""completed_at"": ""2026-06-10T18:50:00Z""}",v2.3.0-buggy +evt_001522,u_0219,signup_completed,2026-06-10T18:59:00Z,u_0219_s01,ins_u_0219_002,{},v2.3.0-buggy +evt_001523,u_0705,activation_completed,2026-06-10T19:02:00Z,u_0705_s01,ins_u_0705_008,{},v2.3.0-buggy +evt_001524,u_0219,profile_saved,2026-06-10T19:03:00Z,u_0219_s01,ins_u_0219_003,{},v2.3.0-buggy +evt_001525,u_0783,signup_started,2026-06-10T19:03:00Z,u_0783_s01,ins_u_0783_001,{},v2.3.0-buggy +evt_001526,u_0219,onboarding_step_viewed,2026-06-10T19:06:00Z,u_0219_s01,ins_u_0219_004,{},v2.3.0-buggy +evt_001527,u_0783,signup_completed,2026-06-10T19:06:00Z,u_0783_s01,ins_u_0783_002,{},v2.3.0-buggy +evt_001528,u_0783,upsell_modal_shown,2026-06-10T19:07:00Z,u_0783_s01,ins_u_0783_003,{},v2.3.0-buggy +evt_001529,u_0278,activation_completed,2026-06-10T19:08:00Z,u_0278_s01,ins_u_0278_006,{},v2.3.0-buggy +evt_001530,u_0682,onboarding_completed,2026-06-10T19:09:00Z,u_0682_s01,ins_u_0682_005,"{""completed_at"": ""2026-06-10T18:52:00Z""}",v2.3.0-buggy +evt_001531,u_0783,profile_saved,2026-06-10T19:09:00Z,u_0783_s01,ins_u_0783_004,{},v2.3.0-buggy +evt_001532,u_0242,onboarding_completed,2026-06-10T19:10:00Z,u_0242_s01,ins_u_0242_006,"{""completed_at"": ""2026-06-10T19:01:00Z""}",v2.3.0-buggy +evt_001533,u_0192,signup_started,2026-06-10T19:11:00Z,u_0192_s01,ins_u_0192_001,{},v2.3.0-buggy +evt_001534,u_0783,onboarding_step_viewed,2026-06-10T19:12:00Z,u_0783_s01,ins_u_0783_005,{},v2.3.0-buggy +evt_001535,u_0192,signup_completed,2026-06-10T19:13:00Z,u_0192_s01,ins_u_0192_002,{},v2.3.0-buggy +evt_001536,u_0269,signup_started,2026-06-10T19:18:00Z,u_0269_s01,ins_u_0269_001,{},v2.3.0-buggy +evt_001537,u_0523,signup_started,2026-06-10T19:20:00Z,u_0523_s01,ins_u_0523_001,{},v2.3.0-buggy +evt_001538,u_0523,signup_completed,2026-06-10T19:21:00Z,u_0523_s01,ins_u_0523_002,{},v2.3.0-buggy +evt_001539,u_0158,signup_started,2026-06-10T19:22:00Z,u_0158_s01,ins_u_0158_001,{},v2.3.0-buggy +evt_001540,u_0192,profile_saved,2026-06-10T19:23:00Z,u_0192_s01,ins_u_0192_003,{},v2.3.0-buggy +evt_001541,u_0219,feature_used,2026-06-10T19:23:00Z,u_0219_s01,ins_u_0219_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001542,u_0269,signup_completed,2026-06-10T19:23:00Z,u_0269_s01,ins_u_0269_002,{},v2.3.0-buggy +evt_001543,u_0523,profile_saved,2026-06-10T19:24:00Z,u_0523_s01,ins_u_0523_003,{},v2.3.0-buggy +evt_001544,u_0192,onboarding_step_viewed,2026-06-10T19:25:00Z,u_0192_s01,ins_u_0192_004,{},v2.3.0-buggy +evt_001545,u_0474,signup_started,2026-06-10T19:27:00Z,u_0474_s01,ins_u_0474_001,{},v2.3.0-buggy +evt_001546,u_0158,session_abandoned,2026-06-10T19:29:00Z,u_0158_s01,ins_u_0158_002,{},v2.3.0-buggy +evt_001547,u_0269,profile_saved,2026-06-10T19:29:00Z,u_0269_s01,ins_u_0269_003,{},v2.3.0-buggy +evt_001548,u_0523,onboarding_step_viewed,2026-06-10T19:29:00Z,u_0523_s01,ins_u_0523_004,{},v2.3.0-buggy +evt_001549,u_0523,feature_used,2026-06-10T19:32:00Z,u_0523_s01,ins_u_0523_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001550,u_0219,onboarding_completed,2026-06-10T19:34:00Z,u_0219_s01,ins_u_0219_006,"{""completed_at"": ""2026-06-10T19:40:00Z""}",v2.3.0-buggy +evt_001551,u_0474,signup_completed,2026-06-10T19:34:00Z,u_0474_s01,ins_u_0474_002,{},v2.3.0-buggy +evt_001552,u_0192,feature_used,2026-06-10T19:38:00Z,u_0192_s01,ins_u_0192_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001553,u_0163,signup_started,2026-06-10T19:39:00Z,u_0163_s01,ins_u_0163_001,{},v2.3.0-buggy +evt_001554,u_0474,profile_saved,2026-06-10T19:41:00Z,u_0474_s01,ins_u_0474_003,{},v2.3.0-buggy +evt_001555,u_0682,activation_completed,2026-06-10T19:41:00Z,u_0682_s01,ins_u_0682_006,{},v2.3.0-buggy +evt_001556,u_0474,error_shown,2026-06-10T19:42:00Z,u_0474_s01,ins_u_0474_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001557,u_0538,signup_started,2026-06-10T19:43:00Z,u_0538_s01,ins_u_0538_001,{},v2.3.0-buggy +evt_001558,u_0163,signup_completed,2026-06-10T19:44:00Z,u_0163_s01,ins_u_0163_002,{},v2.3.0-buggy +evt_001559,u_0474,onboarding_step_viewed,2026-06-10T19:44:00Z,u_0474_s01,ins_u_0474_005,{},v2.3.0-buggy +evt_001560,u_0163,profile_saved,2026-06-10T19:49:00Z,u_0163_s01,ins_u_0163_003,{},v2.3.0-buggy +evt_001561,u_0269,feature_used,2026-06-10T19:49:00Z,u_0269_s01,ins_u_0269_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001562,u_0163,error_shown,2026-06-10T19:50:00Z,u_0163_s01,ins_u_0163_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001563,u_0538,signup_completed,2026-06-10T19:50:00Z,u_0538_s01,ins_u_0538_002,{},v2.3.0-buggy +evt_001564,u_0163,onboarding_step_viewed,2026-06-10T19:51:00Z,u_0163_s01,ins_u_0163_005,{},v2.3.0-buggy +evt_001565,u_0219,activation_completed,2026-06-10T19:51:00Z,u_0219_s01,ins_u_0219_007,{},v2.3.0-buggy +evt_001566,u_0783,onboarding_completed,2026-06-10T19:54:00Z,u_0783_s01,ins_u_0783_006,"{""completed_at"": ""2026-06-10T19:39:00Z""}",v2.3.0-buggy +evt_001567,u_0538,profile_saved,2026-06-10T20:00:00Z,u_0538_s01,ins_u_0538_003,{},v2.3.0-buggy +evt_001568,u_0538,onboarding_step_viewed,2026-06-10T20:03:00Z,u_0538_s01,ins_u_0538_004,{},v2.3.0-buggy +evt_001569,u_0050,signup_started,2026-06-10T20:05:00Z,u_0050_s01,ins_u_0050_001,{},v2.3.0-buggy +evt_001570,u_0523,onboarding_completed,2026-06-10T20:05:00Z,u_0523_s01,ins_u_0523_006,"{""completed_at"": ""2026-06-10T19:54:00Z""}",v2.3.0-buggy +evt_001571,u_0050,signup_completed,2026-06-10T20:13:00Z,u_0050_s01,ins_u_0050_002,{},v2.3.0-buggy +evt_001572,u_0269,onboarding_completed,2026-06-10T20:14:00Z,u_0269_s01,ins_u_0269_005,"{""completed_at"": ""2026-06-10T20:01:00Z""}",v2.3.0-buggy +evt_001573,u_0587,signup_started,2026-06-10T20:14:00Z,u_0587_s01,ins_u_0587_001,{},v2.3.0-buggy +evt_001574,u_0216,signup_started,2026-06-10T20:16:00Z,u_0216_s01,ins_u_0216_001,{},v2.3.0-buggy +evt_001575,u_0474,onboarding_completed,2026-06-10T20:16:00Z,u_0474_s01,ins_u_0474_006,"{""completed_at"": ""2026-06-10T20:10:00Z""}",v2.3.0-buggy +evt_001576,u_0216,signup_completed,2026-06-10T20:18:00Z,u_0216_s01,ins_u_0216_002,{},v2.3.0-buggy +evt_001577,u_0216,onboarding_completed,2026-06-10T20:20:00Z,u_0216_s01,ins_u_0216_003,{},v2.3.0-buggy +evt_001578,u_0227,signup_started,2026-06-10T20:20:00Z,u_0227_s01,ins_u_0227_001,{},v2.3.0-buggy +evt_001579,u_0587,signup_completed,2026-06-10T20:20:00Z,u_0587_s01,ins_u_0587_002,{},v2.3.0-buggy +evt_001580,u_0587,onboarding_completed,2026-06-10T20:22:00Z,u_0587_s01,ins_u_0587_003,{},v2.3.0-buggy +evt_001581,u_0050,profile_saved,2026-06-10T20:23:00Z,u_0050_s01,ins_u_0050_003,{},v2.3.0-buggy +evt_001582,u_0216,session_abandoned,2026-06-10T20:24:00Z,u_0216_s01,ins_u_0216_004,{},v2.3.0-buggy +evt_001583,u_0227,signup_completed,2026-06-10T20:25:00Z,u_0227_s01,ins_u_0227_002,{},v2.3.0-buggy +evt_001584,u_0407,signup_started,2026-06-10T20:26:00Z,u_0407_s01,ins_u_0407_001,{},v2.3.0-buggy +evt_001585,u_0538,onboarding_completed,2026-06-10T20:27:00Z,u_0538_s01,ins_u_0538_005,"{""completed_at"": ""2026-06-10T20:32:00Z""}",v2.3.0-buggy +evt_001586,u_0587,session_abandoned,2026-06-10T20:27:00Z,u_0587_s01,ins_u_0587_004,{},v2.3.0-buggy +evt_001587,u_0050,onboarding_step_viewed,2026-06-10T20:29:00Z,u_0050_s01,ins_u_0050_004,{},v2.3.0-buggy +evt_001588,u_0407,signup_completed,2026-06-10T20:29:00Z,u_0407_s01,ins_u_0407_002,{},v2.3.0-buggy +evt_001589,u_0407,onboarding_completed,2026-06-10T20:31:00Z,u_0407_s01,ins_u_0407_003,{},v2.3.0-buggy +evt_001590,u_0163,onboarding_completed,2026-06-10T20:32:00Z,u_0163_s01,ins_u_0163_006,"{""completed_at"": ""2026-06-10T20:25:00Z""}",v2.3.0-buggy +evt_001591,u_0211,signup_started,2026-06-10T20:32:00Z,u_0211_s01,ins_u_0211_001,{},v2.3.0-buggy +evt_001592,u_0227,profile_saved,2026-06-10T20:33:00Z,u_0227_s01,ins_u_0227_003,{},v2.3.0-buggy +evt_001593,u_0407,session_abandoned,2026-06-10T20:33:00Z,u_0407_s01,ins_u_0407_004,{},v2.3.0-buggy +evt_001594,u_0211,signup_completed,2026-06-10T20:40:00Z,u_0211_s01,ins_u_0211_002,{},v2.3.0-buggy +evt_001595,u_0196,signup_started,2026-06-10T20:41:00Z,u_0196_s01,ins_u_0196_001,{},v2.3.0-buggy +evt_001596,u_0211,onboarding_completed,2026-06-10T20:43:00Z,u_0211_s01,ins_u_0211_003,{},v2.3.0-buggy +evt_001597,u_0517,signup_started,2026-06-10T20:43:00Z,u_0517_s01,ins_u_0517_001,{},v2.3.0-buggy +evt_001598,u_0211,session_abandoned,2026-06-10T20:44:00Z,u_0211_s01,ins_u_0211_004,{},v2.3.0-buggy +evt_001599,u_0050,feature_used,2026-06-10T20:47:00Z,u_0050_s01,ins_u_0050_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001600,u_0517,signup_completed,2026-06-10T20:47:00Z,u_0517_s01,ins_u_0517_002,{},v2.3.0-buggy +evt_001601,u_0196,signup_completed,2026-06-10T20:49:00Z,u_0196_s01,ins_u_0196_002,{},v2.3.0-buggy +evt_001602,u_0050,onboarding_completed,2026-06-10T20:56:00Z,u_0050_s01,ins_u_0050_006,"{""completed_at"": ""2026-06-10T21:00:00Z""}",v2.3.0-buggy +evt_001603,u_0517,profile_saved,2026-06-10T20:56:00Z,u_0517_s01,ins_u_0517_003,{},v2.3.0-buggy +evt_001604,u_0212,signup_started,2026-06-10T20:57:00Z,u_0212_s01,ins_u_0212_001,{},v2.3.0-buggy +evt_001605,u_0408,signup_started,2026-06-10T20:57:00Z,u_0408_s01,ins_u_0408_001,{},v2.3.0-buggy +evt_001606,u_0196,session_abandoned,2026-06-10T20:58:00Z,u_0196_s01,ins_u_0196_003,{},v2.3.0-buggy +evt_001607,u_0227,onboarding_completed,2026-06-10T21:00:00Z,u_0227_s01,ins_u_0227_004,"{""completed_at"": ""2026-06-10T21:06:00Z""}",v2.3.0-buggy +evt_001608,u_0212,session_abandoned,2026-06-10T21:02:00Z,u_0212_s01,ins_u_0212_002,{},v2.3.0-buggy +evt_001609,u_0408,signup_completed,2026-06-10T21:05:00Z,u_0408_s01,ins_u_0408_002,{},v2.3.0-buggy +evt_001610,u_0408,profile_saved,2026-06-10T21:15:00Z,u_0408_s01,ins_u_0408_003,{},v2.3.0-buggy +evt_001611,u_0227,activation_completed,2026-06-10T21:19:00Z,u_0227_s01,ins_u_0227_005,{},v2.3.0-buggy +evt_001612,u_0408,onboarding_step_viewed,2026-06-10T21:19:00Z,u_0408_s01,ins_u_0408_004,{},v2.3.0-buggy +evt_001613,u_0050,activation_completed,2026-06-10T21:27:00Z,u_0050_s01,ins_u_0050_007,{},v2.3.0-buggy +evt_001614,u_0517,onboarding_completed,2026-06-10T21:29:00Z,u_0517_s01,ins_u_0517_004,"{""completed_at"": ""2026-06-10T21:25:00Z""}",v2.3.0-buggy +evt_001615,u_0408,feature_used,2026-06-10T21:34:00Z,u_0408_s01,ins_u_0408_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001616,u_0517,activation_completed,2026-06-10T21:55:00Z,u_0517_s01,ins_u_0517_005,{},v2.3.0-buggy +evt_001617,u_0408,activation_completed,2026-06-10T22:17:00Z,u_0408_s01,ins_u_0408_006,{},v2.3.0-buggy +evt_001618,u_0197,return_visit,2026-06-11T04:39:00Z,u_0197_s02,ins_u_0197_006,{},v2.3.0-buggy +evt_001619,u_0197,feature_used,2026-06-11T04:44:00Z,u_0197_s02,ins_u_0197_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001620,u_0680,signup_started,2026-06-11T08:03:00Z,u_0680_s01,ins_u_0680_001,{},v2.3.0-buggy +evt_001621,u_0680,signup_completed,2026-06-11T08:04:00Z,u_0680_s01,ins_u_0680_002,{},v2.3.0-buggy +evt_001622,u_0680,profile_saved,2026-06-11T08:14:00Z,u_0680_s01,ins_u_0680_003,{},v2.3.0-buggy +evt_001623,u_0052,signup_started,2026-06-11T08:18:00Z,u_0052_s01,ins_u_0052_001,{},v2.3.0-buggy +evt_001624,u_0653,signup_started,2026-06-11T08:19:00Z,u_0653_s01,ins_u_0653_001,{},v2.3.0-buggy +evt_001625,u_0052,signup_completed,2026-06-11T08:20:00Z,u_0052_s01,ins_u_0052_002,{},v2.3.0-buggy +evt_001626,u_0110,signup_started,2026-06-11T08:20:00Z,u_0110_s01,ins_u_0110_001,{},v2.3.0-buggy +evt_001627,u_0052,onboarding_completed,2026-06-11T08:21:00Z,u_0052_s01,ins_u_0052_003,{},v2.3.0-buggy +evt_001628,u_0653,signup_completed,2026-06-11T08:24:00Z,u_0653_s01,ins_u_0653_002,{},v2.3.0-buggy +evt_001629,u_0110,signup_completed,2026-06-11T08:26:00Z,u_0110_s01,ins_u_0110_002,{},v2.3.0-buggy +evt_001630,u_0110,upsell_modal_shown,2026-06-11T08:27:00Z,u_0110_s01,ins_u_0110_003,{},v2.3.0-buggy +evt_001631,u_0052,session_abandoned,2026-06-11T08:28:00Z,u_0052_s01,ins_u_0052_004,{},v2.3.0-buggy +evt_001632,u_0110,onboarding_completed,2026-06-11T08:29:00Z,u_0110_s01,ins_u_0110_004,{},v2.3.0-buggy +evt_001633,u_0653,session_abandoned,2026-06-11T08:33:00Z,u_0653_s01,ins_u_0653_003,{},v2.3.0-buggy +evt_001634,u_0110,session_abandoned,2026-06-11T08:34:00Z,u_0110_s01,ins_u_0110_005,{},v2.3.0-buggy +evt_001635,u_0603,signup_started,2026-06-11T08:35:00Z,u_0603_s01,ins_u_0603_001,{},v2.3.0-buggy +evt_001636,u_0603,signup_completed,2026-06-11T08:41:00Z,u_0603_s01,ins_u_0603_002,{},v2.3.0-buggy +evt_001637,u_0603,profile_saved,2026-06-11T08:45:00Z,u_0603_s01,ins_u_0603_003,{},v2.3.0-buggy +evt_001638,u_0680,onboarding_completed,2026-06-11T08:49:00Z,u_0680_s01,ins_u_0680_004,"{""completed_at"": ""2026-06-11T08:45:00Z""}",v2.3.0-buggy +evt_001639,u_0603,onboarding_step_viewed,2026-06-11T08:50:00Z,u_0603_s01,ins_u_0603_004,{},v2.3.0-buggy +evt_001640,u_0331,signup_started,2026-06-11T08:53:00Z,u_0331_s01,ins_u_0331_001,{},v2.3.0-buggy +evt_001641,u_0331,signup_completed,2026-06-11T08:56:00Z,u_0331_s01,ins_u_0331_002,{},v2.3.0-buggy +evt_001642,u_0331,profile_saved,2026-06-11T09:00:00Z,u_0331_s01,ins_u_0331_003,{},v2.3.0-buggy +evt_001643,u_0427,signup_started,2026-06-11T09:08:00Z,u_0427_s01,ins_u_0427_001,{},v2.3.0-buggy +evt_001644,u_0093,signup_started,2026-06-11T09:10:00Z,u_0093_s01,ins_u_0093_001,{},v2.3.0-buggy +evt_001645,u_0603,feature_used,2026-06-11T09:10:00Z,u_0603_s01,ins_u_0603_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001646,u_0427,signup_completed,2026-06-11T09:12:00Z,u_0427_s01,ins_u_0427_002,{},v2.3.0-buggy +evt_001647,u_0093,session_abandoned,2026-06-11T09:14:00Z,u_0093_s01,ins_u_0093_002,{},v2.3.0-buggy +evt_001648,u_0427,onboarding_completed,2026-06-11T09:15:00Z,u_0427_s01,ins_u_0427_003,{},v2.3.0-buggy +evt_001649,u_0427,session_abandoned,2026-06-11T09:20:00Z,u_0427_s01,ins_u_0427_004,{},v2.3.0-buggy +evt_001650,u_0603,onboarding_completed,2026-06-11T09:22:00Z,u_0603_s01,ins_u_0603_006,"{""completed_at"": ""2026-06-11T09:25:00Z""}",v2.3.0-buggy +evt_001651,u_0590,signup_started,2026-06-11T09:35:00Z,u_0590_s01,ins_u_0590_001,{},v2.3.0-buggy +evt_001652,u_0590,session_abandoned,2026-06-11T09:38:00Z,u_0590_s01,ins_u_0590_002,{},v2.3.0-buggy +evt_001653,u_0331,onboarding_completed,2026-06-11T09:39:00Z,u_0331_s01,ins_u_0331_004,"{""completed_at"": ""2026-06-11T09:29:00Z""}",v2.3.0-buggy +evt_001654,u_0363,signup_started,2026-06-11T09:40:00Z,u_0363_s01,ins_u_0363_001,{},v2.3.0-buggy +evt_001655,u_0363,signup_completed,2026-06-11T09:44:00Z,u_0363_s01,ins_u_0363_002,{},v2.3.0-buggy +evt_001656,u_0363,profile_saved,2026-06-11T09:53:00Z,u_0363_s01,ins_u_0363_003,{},v2.3.0-buggy +evt_001657,u_0596,signup_started,2026-06-11T09:54:00Z,u_0596_s01,ins_u_0596_001,{},v2.3.0-buggy +evt_001658,u_0596,signup_completed,2026-06-11T09:56:00Z,u_0596_s01,ins_u_0596_002,{},v2.3.0-buggy +evt_001659,u_0363,onboarding_step_viewed,2026-06-11T09:58:00Z,u_0363_s01,ins_u_0363_004,{},v2.3.0-buggy +evt_001660,u_0596,profile_saved,2026-06-11T10:00:00Z,u_0596_s01,ins_u_0596_003,{},v2.3.0-buggy +evt_001661,u_0704,signup_started,2026-06-11T10:01:00Z,u_0704_s01,ins_u_0704_001,{},v2.3.0-buggy +evt_001662,u_0596,onboarding_step_viewed,2026-06-11T10:02:00Z,u_0596_s01,ins_u_0596_004,{},v2.3.0-buggy +evt_001663,u_0704,signup_completed,2026-06-11T10:02:00Z,u_0704_s01,ins_u_0704_002,{},v2.3.0-buggy +evt_001664,u_0140,signup_started,2026-06-11T10:06:00Z,u_0140_s01,ins_u_0140_001,{},v2.3.0-buggy +evt_001665,u_0704,profile_saved,2026-06-11T10:10:00Z,u_0704_s01,ins_u_0704_003,{},v2.3.0-buggy +evt_001666,u_0140,signup_completed,2026-06-11T10:12:00Z,u_0140_s01,ins_u_0140_002,{},v2.3.0-buggy +evt_001667,u_0263,signup_started,2026-06-11T10:12:00Z,u_0263_s01,ins_u_0263_001,{},v2.3.0-buggy +evt_001668,u_0363,feature_used,2026-06-11T10:12:00Z,u_0363_s01,ins_u_0363_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001669,u_0263,signup_completed,2026-06-11T10:13:00Z,u_0263_s01,ins_u_0263_002,{},v2.3.0-buggy +evt_001670,u_0250,signup_started,2026-06-11T10:16:00Z,u_0250_s01,ins_u_0250_001,{},v2.3.0-buggy +evt_001671,u_0263,profile_saved,2026-06-11T10:16:00Z,u_0263_s01,ins_u_0263_003,{},v2.3.0-buggy +evt_001672,u_0704,onboarding_step_viewed,2026-06-11T10:16:00Z,u_0704_s01,ins_u_0704_004,{},v2.3.0-buggy +evt_001673,u_0246,signup_started,2026-06-11T10:17:00Z,u_0246_s01,ins_u_0246_001,{},v2.3.0-buggy +evt_001674,u_0250,signup_completed,2026-06-11T10:17:00Z,u_0250_s01,ins_u_0250_002,{},v2.3.0-buggy +evt_001675,u_0432,signup_started,2026-06-11T10:19:00Z,u_0432_s01,ins_u_0432_001,{},v2.3.0-buggy +evt_001676,u_0140,profile_saved,2026-06-11T10:20:00Z,u_0140_s01,ins_u_0140_003,{},v2.3.0-buggy +evt_001677,u_0497,signup_started,2026-06-11T10:20:00Z,u_0497_s01,ins_u_0497_001,{},v2.3.0-buggy +evt_001678,u_0263,onboarding_step_viewed,2026-06-11T10:21:00Z,u_0263_s01,ins_u_0263_004,{},v2.3.0-buggy +evt_001679,u_0432,signup_completed,2026-06-11T10:21:00Z,u_0432_s01,ins_u_0432_002,{},v2.3.0-buggy +evt_001680,u_0497,session_abandoned,2026-06-11T10:21:00Z,u_0497_s01,ins_u_0497_002,{},v2.3.0-buggy +evt_001681,u_0246,signup_completed,2026-06-11T10:25:00Z,u_0246_s01,ins_u_0246_002,{},v2.3.0-buggy +evt_001682,u_0250,profile_saved,2026-06-11T10:26:00Z,u_0250_s01,ins_u_0250_003,{},v2.3.0-buggy +evt_001683,u_0250,error_shown,2026-06-11T10:27:00Z,u_0250_s01,ins_u_0250_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001684,u_0432,profile_saved,2026-06-11T10:29:00Z,u_0432_s01,ins_u_0432_003,{},v2.3.0-buggy +evt_001685,u_0250,onboarding_step_viewed,2026-06-11T10:30:00Z,u_0250_s01,ins_u_0250_005,{},v2.3.0-buggy +evt_001686,u_0418,signup_started,2026-06-11T10:30:00Z,u_0418_s01,ins_u_0418_001,{},v2.3.0-buggy +evt_001687,u_0246,profile_saved,2026-06-11T10:31:00Z,u_0246_s01,ins_u_0246_003,{},v2.3.0-buggy +evt_001688,u_0246,error_shown,2026-06-11T10:32:00Z,u_0246_s01,ins_u_0246_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001689,u_0432,onboarding_step_viewed,2026-06-11T10:32:00Z,u_0432_s01,ins_u_0432_004,{},v2.3.0-buggy +evt_001690,u_0250,feature_used,2026-06-11T10:33:00Z,u_0250_s01,ins_u_0250_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_001691,u_0246,onboarding_step_viewed,2026-06-11T10:34:00Z,u_0246_s01,ins_u_0246_005,{},v2.3.0-buggy +evt_001692,u_0070,signup_started,2026-06-11T10:35:00Z,u_0070_s01,ins_u_0070_001,{},v2.3.0-buggy +evt_001693,u_0418,signup_completed,2026-06-11T10:36:00Z,u_0418_s01,ins_u_0418_002,{},v2.3.0-buggy +evt_001694,u_0263,feature_used,2026-06-11T10:39:00Z,u_0263_s01,ins_u_0263_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001695,u_0633,signup_started,2026-06-11T10:39:00Z,u_0633_s01,ins_u_0633_001,{},v2.3.0-buggy +evt_001696,u_0070,session_abandoned,2026-06-11T10:40:00Z,u_0070_s01,ins_u_0070_002,{},v2.3.0-buggy +evt_001697,u_0432,feature_used,2026-06-11T10:41:00Z,u_0432_s01,ins_u_0432_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001698,u_0246,feature_used,2026-06-11T10:44:00Z,u_0246_s01,ins_u_0246_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_001699,u_0704,onboarding_completed,2026-06-11T10:44:00Z,u_0704_s01,ins_u_0704_005,"{""completed_at"": ""2026-06-11T10:46:00Z""}",v2.3.0-buggy +evt_001700,u_0418,profile_saved,2026-06-11T10:45:00Z,u_0418_s01,ins_u_0418_003,{},v2.3.0-buggy +evt_001701,u_0263,onboarding_completed,2026-06-11T10:46:00Z,u_0263_s01,ins_u_0263_006,"{""completed_at"": ""2026-06-11T10:52:00Z""}",v2.3.0-buggy +evt_001702,u_0633,signup_completed,2026-06-11T10:47:00Z,u_0633_s01,ins_u_0633_002,{},v2.3.0-buggy +evt_001703,u_0418,onboarding_step_viewed,2026-06-11T10:48:00Z,u_0418_s01,ins_u_0418_004,{},v2.3.0-buggy +evt_001704,u_0122,signup_started,2026-06-11T10:49:00Z,u_0122_s01,ins_u_0122_001,{},v2.3.0-buggy +evt_001705,u_0140,onboarding_completed,2026-06-11T10:49:00Z,u_0140_s01,ins_u_0140_004,"{""completed_at"": ""2026-06-11T10:57:00Z""}",v2.3.0-buggy +evt_001706,u_0699,signup_started,2026-06-11T10:49:00Z,u_0699_s01,ins_u_0699_001,{},v2.3.0-buggy +evt_001707,u_0633,profile_saved,2026-06-11T10:51:00Z,u_0633_s01,ins_u_0633_003,{},v2.3.0-buggy +evt_001708,u_0122,session_abandoned,2026-06-11T10:54:00Z,u_0122_s01,ins_u_0122_002,{},v2.3.0-buggy +evt_001709,u_0699,signup_completed,2026-06-11T10:54:00Z,u_0699_s01,ins_u_0699_002,{},v2.3.0-buggy +evt_001710,u_0231,signup_started,2026-06-11T10:55:00Z,u_0231_s01,ins_u_0231_001,{},v2.3.0-buggy +evt_001711,u_0432,onboarding_completed,2026-06-11T10:55:00Z,u_0432_s01,ins_u_0432_006,"{""completed_at"": ""2026-06-11T11:04:00Z""}",v2.3.0-buggy +evt_001712,u_0009,signup_started,2026-06-11T10:56:00Z,u_0009_s01,ins_u_0009_001,{},v2.3.0-buggy +evt_001713,u_0633,onboarding_step_viewed,2026-06-11T10:56:00Z,u_0633_s01,ins_u_0633_004,{},v2.3.0-buggy +evt_001714,u_0009,signup_completed,2026-06-11T10:57:00Z,u_0009_s01,ins_u_0009_002,{},v2.3.0-buggy +evt_001715,u_0699,profile_saved,2026-06-11T10:58:00Z,u_0699_s01,ins_u_0699_003,{},v2.3.0-buggy +evt_001716,u_0231,signup_completed,2026-06-11T11:00:00Z,u_0231_s01,ins_u_0231_002,{},v2.3.0-buggy +evt_001717,u_0750,signup_started,2026-06-11T11:00:00Z,u_0750_s01,ins_u_0750_001,{},v2.3.0-buggy +evt_001718,u_0231,profile_saved,2026-06-11T11:03:00Z,u_0231_s01,ins_u_0231_003,{},v2.3.0-buggy +evt_001719,u_0009,profile_saved,2026-06-11T11:04:00Z,u_0009_s01,ins_u_0009_003,{},v2.3.0-buggy +evt_001720,u_0750,session_abandoned,2026-06-11T11:05:00Z,u_0750_s01,ins_u_0750_002,{},v2.3.0-buggy +evt_001721,u_0009,onboarding_step_viewed,2026-06-11T11:06:00Z,u_0009_s01,ins_u_0009_004,{},v2.3.0-buggy +evt_001722,u_0633,feature_used,2026-06-11T11:06:00Z,u_0633_s01,ins_u_0633_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001723,u_0231,onboarding_step_viewed,2026-06-11T11:07:00Z,u_0231_s01,ins_u_0231_004,{},v2.3.0-buggy +evt_001724,u_0418,feature_used,2026-06-11T11:08:00Z,u_0418_s01,ins_u_0418_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001725,u_0412,signup_started,2026-06-11T11:09:00Z,u_0412_s01,ins_u_0412_001,{},v2.3.0-buggy +evt_001726,u_0412,signup_completed,2026-06-11T11:13:00Z,u_0412_s01,ins_u_0412_002,{},v2.3.0-buggy +evt_001727,u_0230,signup_started,2026-06-11T11:15:00Z,u_0230_s01,ins_u_0230_001,{},v2.3.0-buggy +evt_001728,u_0358,signup_started,2026-06-11T11:18:00Z,u_0358_s01,ins_u_0358_001,{},v2.3.0-buggy +evt_001729,u_0230,session_abandoned,2026-06-11T11:20:00Z,u_0230_s01,ins_u_0230_002,{},v2.3.0-buggy +evt_001730,u_0358,signup_completed,2026-06-11T11:23:00Z,u_0358_s01,ins_u_0358_002,{},v2.3.0-buggy +evt_001731,u_0412,profile_saved,2026-06-11T11:23:00Z,u_0412_s01,ins_u_0412_003,{},v2.3.0-buggy +evt_001732,u_0358,upsell_modal_shown,2026-06-11T11:24:00Z,u_0358_s01,ins_u_0358_003,{},v2.3.0-buggy +evt_001733,u_0412,profile_saved,2026-06-11T11:24:00Z,u_0412_s01,ins_u_0412_003,{},v2.3.0-buggy +evt_001734,u_0140,activation_completed,2026-06-11T11:26:00Z,u_0140_s01,ins_u_0140_005,{},v2.3.0-buggy +evt_001735,u_0358,onboarding_completed,2026-06-11T11:26:00Z,u_0358_s01,ins_u_0358_004,{},v2.3.0-buggy +evt_001736,u_0784,signup_started,2026-06-11T11:26:00Z,u_0784_s01,ins_u_0784_001,{},v2.3.0-buggy +evt_001737,u_0412,onboarding_step_viewed,2026-06-11T11:27:00Z,u_0412_s01,ins_u_0412_004,{},v2.3.0-buggy +evt_001738,u_0358,session_abandoned,2026-06-11T11:29:00Z,u_0358_s01,ins_u_0358_005,{},v2.3.0-buggy +evt_001739,u_0418,onboarding_completed,2026-06-11T11:29:00Z,u_0418_s01,ins_u_0418_006,"{""completed_at"": ""2026-06-11T11:19:00Z""}",v2.3.0-buggy +evt_001740,u_0231,onboarding_completed,2026-06-11T11:31:00Z,u_0231_s01,ins_u_0231_005,"{""completed_at"": ""2026-06-11T11:35:00Z""}",v2.3.0-buggy +evt_001741,u_0009,onboarding_completed,2026-06-11T11:32:00Z,u_0009_s01,ins_u_0009_005,"{""completed_at"": ""2026-06-11T11:34:00Z""}",v2.3.0-buggy +evt_001742,u_0250,activation_completed,2026-06-11T11:32:00Z,u_0250_s01,ins_u_0250_007,{},v2.3.0-buggy +evt_001743,u_0784,signup_completed,2026-06-11T11:33:00Z,u_0784_s01,ins_u_0784_002,{},v2.3.0-buggy +evt_001744,u_0040,signup_started,2026-06-11T11:35:00Z,u_0040_s01,ins_u_0040_001,{},v2.3.0-buggy +evt_001745,u_0699,onboarding_completed,2026-06-11T11:37:00Z,u_0699_s01,ins_u_0699_004,"{""completed_at"": ""2026-06-11T11:27:00Z""}",v2.3.0-buggy +evt_001746,u_0784,profile_saved,2026-06-11T11:37:00Z,u_0784_s01,ins_u_0784_003,{},v2.3.0-buggy +evt_001747,u_0784,onboarding_step_viewed,2026-06-11T11:41:00Z,u_0784_s01,ins_u_0784_004,{},v2.3.0-buggy +evt_001748,u_0040,signup_completed,2026-06-11T11:42:00Z,u_0040_s01,ins_u_0040_002,{},v2.3.0-buggy +evt_001749,u_0412,feature_used,2026-06-11T11:43:00Z,u_0412_s01,ins_u_0412_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001750,u_0040,profile_saved,2026-06-11T11:49:00Z,u_0040_s01,ins_u_0040_003,{},v2.3.0-buggy +evt_001751,u_0418,activation_completed,2026-06-11T11:50:00Z,u_0418_s01,ins_u_0418_007,{},v2.3.0-buggy +evt_001752,u_0784,feature_used,2026-06-11T11:50:00Z,u_0784_s01,ins_u_0784_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001753,u_0231,activation_completed,2026-06-11T12:00:00Z,u_0231_s01,ins_u_0231_006,{},v2.3.0-buggy +evt_001754,u_0210,signup_started,2026-06-11T12:03:00Z,u_0210_s01,ins_u_0210_001,{},v2.3.0-buggy +evt_001755,u_0412,onboarding_completed,2026-06-11T12:05:00Z,u_0412_s01,ins_u_0412_006,"{""completed_at"": ""2026-06-11T11:59:00Z""}",v2.3.0-buggy +evt_001756,u_0451,signup_started,2026-06-11T12:06:00Z,u_0451_s01,ins_u_0451_001,{},v2.3.0-buggy +evt_001757,u_0210,session_abandoned,2026-06-11T12:08:00Z,u_0210_s01,ins_u_0210_002,{},v2.3.0-buggy +evt_001758,u_0656,signup_started,2026-06-11T12:08:00Z,u_0656_s01,ins_u_0656_001,{},v2.3.0-buggy +evt_001759,u_0384,signup_started,2026-06-11T12:14:00Z,u_0384_s01,ins_u_0384_001,{},v2.3.0-buggy +evt_001760,u_0451,session_abandoned,2026-06-11T12:14:00Z,u_0451_s01,ins_u_0451_002,{},v2.3.0-buggy +evt_001761,u_0040,onboarding_completed,2026-06-11T12:15:00Z,u_0040_s01,ins_u_0040_004,"{""completed_at"": ""2026-06-11T12:25:00Z""}",v2.3.0-buggy +evt_001762,u_0239,signup_started,2026-06-11T12:15:00Z,u_0239_s01,ins_u_0239_001,{},v2.3.0-buggy +evt_001763,u_0656,signup_completed,2026-06-11T12:15:00Z,u_0656_s01,ins_u_0656_002,{},v2.3.0-buggy +evt_001764,u_0656,profile_saved,2026-06-11T12:19:00Z,u_0656_s01,ins_u_0656_003,{},v2.3.0-buggy +evt_001765,u_0239,signup_completed,2026-06-11T12:20:00Z,u_0239_s01,ins_u_0239_002,{},v2.3.0-buggy +evt_001766,u_0412,activation_completed,2026-06-11T12:20:00Z,u_0412_s01,ins_u_0412_007,{},v2.3.0-buggy +evt_001767,u_0784,onboarding_completed,2026-06-11T12:20:00Z,u_0784_s01,ins_u_0784_006,"{""completed_at"": ""2026-06-11T12:12:00Z""}",v2.3.0-buggy +evt_001768,u_0384,signup_completed,2026-06-11T12:21:00Z,u_0384_s01,ins_u_0384_002,{},v2.3.0-buggy +evt_001769,u_0656,onboarding_step_viewed,2026-06-11T12:21:00Z,u_0656_s01,ins_u_0656_004,{},v2.3.0-buggy +evt_001770,u_0089,signup_started,2026-06-11T12:24:00Z,u_0089_s01,ins_u_0089_001,{},v2.3.0-buggy +evt_001771,u_0384,profile_saved,2026-06-11T12:24:00Z,u_0384_s01,ins_u_0384_003,{},v2.3.0-buggy +evt_001772,u_0384,onboarding_step_viewed,2026-06-11T12:26:00Z,u_0384_s01,ins_u_0384_004,{},v2.3.0-buggy +evt_001773,u_0239,profile_saved,2026-06-11T12:28:00Z,u_0239_s01,ins_u_0239_003,{},v2.3.0-buggy +evt_001774,u_0089,signup_completed,2026-06-11T12:29:00Z,u_0089_s01,ins_u_0089_002,{},v2.3.0-buggy +evt_001775,u_0239,onboarding_step_viewed,2026-06-11T12:34:00Z,u_0239_s01,ins_u_0239_004,{},v2.3.0-buggy +evt_001776,u_0150,signup_started,2026-06-11T12:35:00Z,u_0150_s01,ins_u_0150_001,{},v2.3.0-buggy +evt_001777,u_0089,profile_saved,2026-06-11T12:36:00Z,u_0089_s01,ins_u_0089_003,{},v2.3.0-buggy +evt_001778,u_0239,feature_used,2026-06-11T12:36:00Z,u_0239_s01,ins_u_0239_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001779,u_0150,session_abandoned,2026-06-11T12:41:00Z,u_0150_s01,ins_u_0150_002,{},v2.3.0-buggy +evt_001780,u_0613,signup_started,2026-06-11T12:43:00Z,u_0613_s01,ins_u_0613_001,{},v2.3.0-buggy +evt_001781,u_0656,feature_used,2026-06-11T12:43:00Z,u_0656_s01,ins_u_0656_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001782,u_0086,signup_started,2026-06-11T12:45:00Z,u_0086_s01,ins_u_0086_001,{},v2.3.0-buggy +evt_001783,u_0344,signup_started,2026-06-11T12:45:00Z,u_0344_s01,ins_u_0344_001,{},v2.3.0-buggy +evt_001784,u_0086,signup_completed,2026-06-11T12:46:00Z,u_0086_s01,ins_u_0086_002,{},v2.3.0-buggy +evt_001785,u_0086,profile_saved,2026-06-11T12:48:00Z,u_0086_s01,ins_u_0086_003,{},v2.3.0-buggy +evt_001786,u_0613,signup_completed,2026-06-11T12:48:00Z,u_0613_s01,ins_u_0613_002,{},v2.3.0-buggy +evt_001787,u_0656,onboarding_completed,2026-06-11T12:48:00Z,u_0656_s01,ins_u_0656_006,"{""completed_at"": ""2026-06-11T12:49:00Z""}",v2.3.0-buggy +evt_001788,u_0344,signup_completed,2026-06-11T12:49:00Z,u_0344_s01,ins_u_0344_002,{},v2.3.0-buggy +evt_001789,u_0326,signup_started,2026-06-11T12:51:00Z,u_0326_s01,ins_u_0326_001,{},v2.3.0-buggy +evt_001790,u_0326,signup_completed,2026-06-11T12:53:00Z,u_0326_s01,ins_u_0326_002,{},v2.3.0-buggy +evt_001791,u_0384,onboarding_completed,2026-06-11T12:53:00Z,u_0384_s01,ins_u_0384_005,"{""completed_at"": ""2026-06-11T12:58:00Z""}",v2.3.0-buggy +evt_001792,u_0086,onboarding_step_viewed,2026-06-11T12:54:00Z,u_0086_s01,ins_u_0086_004,{},v2.3.0-buggy +evt_001793,u_0089,feature_used,2026-06-11T12:54:00Z,u_0089_s01,ins_u_0089_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001794,u_0344,profile_saved,2026-06-11T12:54:00Z,u_0344_s01,ins_u_0344_003,{},v2.3.0-buggy +evt_001795,u_0239,onboarding_completed,2026-06-11T12:55:00Z,u_0239_s01,ins_u_0239_006,"{""completed_at"": ""2026-06-11T13:00:00Z""}",v2.3.0-buggy +evt_001796,u_0613,profile_saved,2026-06-11T12:55:00Z,u_0613_s01,ins_u_0613_003,{},v2.3.0-buggy +evt_001797,u_0182,signup_started,2026-06-11T12:56:00Z,u_0182_s01,ins_u_0182_001,{},v2.3.0-buggy +evt_001798,u_0344,onboarding_step_viewed,2026-06-11T12:56:00Z,u_0344_s01,ins_u_0344_004,{},v2.3.0-buggy +evt_001799,u_0041,signup_started,2026-06-11T12:59:00Z,u_0041_s01,ins_u_0041_001,{},v2.3.0-buggy +evt_001800,u_0182,signup_completed,2026-06-11T12:59:00Z,u_0182_s01,ins_u_0182_002,{},v2.3.0-buggy +evt_001801,u_0182,upsell_modal_shown,2026-06-11T13:00:00Z,u_0182_s01,ins_u_0182_003,{},v2.3.0-buggy +evt_001802,u_0613,onboarding_step_viewed,2026-06-11T13:00:00Z,u_0613_s01,ins_u_0613_004,{},v2.3.0-buggy +evt_001803,u_0086,feature_used,2026-06-11T13:01:00Z,u_0086_s01,ins_u_0086_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001804,u_0041,signup_completed,2026-06-11T13:02:00Z,u_0041_s01,ins_u_0041_002,{},v2.3.0-buggy +evt_001805,u_0182,onboarding_completed,2026-06-11T13:02:00Z,u_0182_s01,ins_u_0182_004,{},v2.3.0-buggy +evt_001806,u_0182,session_abandoned,2026-06-11T13:03:00Z,u_0182_s01,ins_u_0182_005,{},v2.3.0-buggy +evt_001807,u_0326,profile_saved,2026-06-11T13:03:00Z,u_0326_s01,ins_u_0326_003,{},v2.3.0-buggy +evt_001808,u_0089,onboarding_completed,2026-06-11T13:07:00Z,u_0089_s01,ins_u_0089_005,"{""completed_at"": ""2026-06-11T13:07:00Z""}",v2.3.0-buggy +evt_001809,u_0041,session_abandoned,2026-06-11T13:09:00Z,u_0041_s01,ins_u_0041_003,{},v2.3.0-buggy +evt_001810,u_0326,onboarding_step_viewed,2026-06-11T13:09:00Z,u_0326_s01,ins_u_0326_004,{},v2.3.0-buggy +evt_001811,u_0326,feature_used,2026-06-11T13:12:00Z,u_0326_s01,ins_u_0326_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001812,u_0086,onboarding_completed,2026-06-11T13:15:00Z,u_0086_s01,ins_u_0086_006,"{""completed_at"": ""2026-06-11T13:19:00Z""}",v2.3.0-buggy +evt_001813,u_0656,activation_completed,2026-06-11T13:15:00Z,u_0656_s01,ins_u_0656_007,{},v2.3.0-buggy +evt_001814,u_0306,signup_started,2026-06-11T13:18:00Z,u_0306_s01,ins_u_0306_001,{},v2.3.0-buggy +evt_001815,u_0139,signup_started,2026-06-11T13:20:00Z,u_0139_s01,ins_u_0139_001,{},v2.3.0-buggy +evt_001816,u_0139,signup_completed,2026-06-11T13:23:00Z,u_0139_s01,ins_u_0139_002,{},v2.3.0-buggy +evt_001817,u_0306,session_abandoned,2026-06-11T13:23:00Z,u_0306_s01,ins_u_0306_002,{},v2.3.0-buggy +evt_001818,u_0139,profile_saved,2026-06-11T13:25:00Z,u_0139_s01,ins_u_0139_003,{},v2.3.0-buggy +evt_001819,u_0139,profile_saved,2026-06-11T13:26:00Z,u_0139_s01,ins_u_0139_003,{},v2.3.0-buggy +evt_001820,u_0613,onboarding_completed,2026-06-11T13:29:00Z,u_0613_s01,ins_u_0613_005,"{""completed_at"": ""2026-06-11T13:28:00Z""}",v2.3.0-buggy +evt_001821,u_0139,onboarding_step_viewed,2026-06-11T13:31:00Z,u_0139_s01,ins_u_0139_004,{},v2.3.0-buggy +evt_001822,u_0510,signup_started,2026-06-11T13:31:00Z,u_0510_s01,ins_u_0510_001,{},v2.3.0-buggy +evt_001823,u_0584,signup_started,2026-06-11T13:31:00Z,u_0584_s01,ins_u_0584_001,{},v2.3.0-buggy +evt_001824,u_0344,onboarding_completed,2026-06-11T13:35:00Z,u_0344_s01,ins_u_0344_005,"{""completed_at"": ""2026-06-11T13:25:00Z""}",v2.3.0-buggy +evt_001825,u_0584,signup_completed,2026-06-11T13:35:00Z,u_0584_s01,ins_u_0584_002,{},v2.3.0-buggy +evt_001826,u_0510,signup_completed,2026-06-11T13:36:00Z,u_0510_s01,ins_u_0510_002,{},v2.3.0-buggy +evt_001827,u_0584,profile_saved,2026-06-11T13:38:00Z,u_0584_s01,ins_u_0584_003,{},v2.3.0-buggy +evt_001828,u_0384,activation_completed,2026-06-11T13:39:00Z,u_0384_s01,ins_u_0384_006,{},v2.3.0-buggy +evt_001829,u_0489,signup_started,2026-06-11T13:43:00Z,u_0489_s01,ins_u_0489_001,{},v2.3.0-buggy +evt_001830,u_0584,onboarding_step_viewed,2026-06-11T13:44:00Z,u_0584_s01,ins_u_0584_004,{},v2.3.0-buggy +evt_001831,u_0510,profile_saved,2026-06-11T13:46:00Z,u_0510_s01,ins_u_0510_003,{},v2.3.0-buggy +evt_001832,u_0489,signup_completed,2026-06-11T13:47:00Z,u_0489_s01,ins_u_0489_002,{},v2.3.0-buggy +evt_001833,u_0326,onboarding_completed,2026-06-11T13:48:00Z,u_0326_s01,ins_u_0326_006,"{""completed_at"": ""2026-06-11T13:39:00Z""}",v2.3.0-buggy +evt_001834,u_0510,onboarding_step_viewed,2026-06-11T13:48:00Z,u_0510_s01,ins_u_0510_004,{},v2.3.0-buggy +evt_001835,u_0489,profile_saved,2026-06-11T13:49:00Z,u_0489_s01,ins_u_0489_003,{},v2.3.0-buggy +evt_001836,u_0491,signup_started,2026-06-11T13:49:00Z,u_0491_s01,ins_u_0491_001,{},v2.3.0-buggy +evt_001837,u_0510,onboarding_step_viewed,2026-06-11T13:49:00Z,u_0510_s01,ins_u_0510_004,{},v2.3.0-buggy +evt_001838,u_0139,onboarding_completed,2026-06-11T13:51:00Z,u_0139_s01,ins_u_0139_005,"{""completed_at"": ""2026-06-11T13:57:00Z""}",v2.3.0-buggy +evt_001839,u_0491,signup_completed,2026-06-11T13:52:00Z,u_0491_s01,ins_u_0491_002,{},v2.3.0-buggy +evt_001840,u_0419,signup_started,2026-06-11T13:53:00Z,u_0419_s01,ins_u_0419_001,{},v2.3.0-buggy +evt_001841,u_0711,signup_started,2026-06-11T13:54:00Z,u_0711_s01,ins_u_0711_001,{},v2.3.0-buggy +evt_001842,u_0049,signup_started,2026-06-11T13:55:00Z,u_0049_s01,ins_u_0049_001,{},v2.3.0-buggy +evt_001843,u_0489,onboarding_step_viewed,2026-06-11T13:55:00Z,u_0489_s01,ins_u_0489_004,{},v2.3.0-buggy +evt_001844,u_0186,signup_started,2026-06-11T13:56:00Z,u_0186_s01,ins_u_0186_001,{},v2.3.0-buggy +evt_001845,u_0491,session_abandoned,2026-06-11T13:56:00Z,u_0491_s01,ins_u_0491_003,{},v2.3.0-buggy +evt_001846,u_0419,session_abandoned,2026-06-11T13:57:00Z,u_0419_s01,ins_u_0419_002,{},v2.3.0-buggy +evt_001847,u_0711,session_abandoned,2026-06-11T13:57:00Z,u_0711_s01,ins_u_0711_002,{},v2.3.0-buggy +evt_001848,u_0049,signup_completed,2026-06-11T13:58:00Z,u_0049_s01,ins_u_0049_002,{},v2.3.0-buggy +evt_001849,u_0722,signup_started,2026-06-11T13:58:00Z,u_0722_s01,ins_u_0722_001,{},v2.3.0-buggy +evt_001850,u_0186,signup_completed,2026-06-11T13:59:00Z,u_0186_s01,ins_u_0186_002,{},v2.3.0-buggy +evt_001851,u_0722,signup_completed,2026-06-11T13:59:00Z,u_0722_s01,ins_u_0722_002,{},v2.3.0-buggy +evt_001852,u_0186,upsell_modal_shown,2026-06-11T14:00:00Z,u_0186_s01,ins_u_0186_003,{},v2.3.0-buggy +evt_001853,u_0049,profile_saved,2026-06-11T14:03:00Z,u_0049_s01,ins_u_0049_003,{},v2.3.0-buggy +evt_001854,u_0186,session_abandoned,2026-06-11T14:06:00Z,u_0186_s01,ins_u_0186_004,{},v2.3.0-buggy +evt_001855,u_0346,signup_started,2026-06-11T14:07:00Z,u_0346_s01,ins_u_0346_001,{},v2.3.0-buggy +evt_001856,u_0371,signup_started,2026-06-11T14:07:00Z,u_0371_s01,ins_u_0371_001,{},v2.3.0-buggy +evt_001857,u_0584,onboarding_completed,2026-06-11T14:07:00Z,u_0584_s01,ins_u_0584_005,"{""completed_at"": ""2026-06-11T14:14:00Z""}",v2.3.0-buggy +evt_001858,u_0489,feature_used,2026-06-11T14:08:00Z,u_0489_s01,ins_u_0489_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001859,u_0722,profile_saved,2026-06-11T14:09:00Z,u_0722_s01,ins_u_0722_003,{},v2.3.0-buggy +evt_001860,u_0510,feature_used,2026-06-11T14:10:00Z,u_0510_s01,ins_u_0510_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_001861,u_0399,signup_started,2026-06-11T14:11:00Z,u_0399_s01,ins_u_0399_001,{},v2.3.0-buggy +evt_001862,u_0139,activation_completed,2026-06-11T14:12:00Z,u_0139_s01,ins_u_0139_006,{},v2.3.0-buggy +evt_001863,u_0187,signup_started,2026-06-11T14:12:00Z,u_0187_s01,ins_u_0187_001,{},v2.3.0-buggy +evt_001864,u_0049,feature_used,2026-06-11T14:13:00Z,u_0049_s01,ins_u_0049_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001865,u_0187,signup_completed,2026-06-11T14:13:00Z,u_0187_s01,ins_u_0187_002,{},v2.3.0-buggy +evt_001866,u_0346,signup_completed,2026-06-11T14:13:00Z,u_0346_s01,ins_u_0346_002,{},v2.3.0-buggy +evt_001867,u_0399,signup_completed,2026-06-11T14:13:00Z,u_0399_s01,ins_u_0399_002,{},v2.3.0-buggy +evt_001868,u_0187,upsell_modal_shown,2026-06-11T14:14:00Z,u_0187_s01,ins_u_0187_003,{},v2.3.0-buggy +evt_001869,u_0371,signup_completed,2026-06-11T14:15:00Z,u_0371_s01,ins_u_0371_002,{},v2.3.0-buggy +evt_001870,u_0346,onboarding_completed,2026-06-11T14:16:00Z,u_0346_s01,ins_u_0346_003,{},v2.3.0-buggy +evt_001871,u_0399,profile_saved,2026-06-11T14:17:00Z,u_0399_s01,ins_u_0399_003,{},v2.3.0-buggy +evt_001872,u_0346,session_abandoned,2026-06-11T14:18:00Z,u_0346_s01,ins_u_0346_004,{},v2.3.0-buggy +evt_001873,u_0399,onboarding_step_viewed,2026-06-11T14:21:00Z,u_0399_s01,ins_u_0399_004,{},v2.3.0-buggy +evt_001874,u_0510,onboarding_completed,2026-06-11T14:22:00Z,u_0510_s01,ins_u_0510_006,"{""completed_at"": ""2026-06-11T14:25:00Z""}",v2.3.0-buggy +evt_001875,u_0187,profile_saved,2026-06-11T14:23:00Z,u_0187_s01,ins_u_0187_004,{},v2.3.0-buggy +evt_001876,u_0371,profile_saved,2026-06-11T14:25:00Z,u_0371_s01,ins_u_0371_003,{},v2.3.0-buggy +evt_001877,u_0722,feature_used,2026-06-11T14:25:00Z,u_0722_s01,ins_u_0722_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_001878,u_0187,onboarding_step_viewed,2026-06-11T14:26:00Z,u_0187_s01,ins_u_0187_005,{},v2.3.0-buggy +evt_001879,u_0187,feature_used,2026-06-11T14:31:00Z,u_0187_s01,ins_u_0187_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001880,u_0399,feature_used,2026-06-11T14:33:00Z,u_0399_s01,ins_u_0399_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001881,u_0489,onboarding_completed,2026-06-11T14:33:00Z,u_0489_s01,ins_u_0489_006,"{""completed_at"": ""2026-06-11T14:19:00Z""}",v2.3.0-buggy +evt_001882,u_0399,feature_used,2026-06-11T14:34:00Z,u_0399_s01,ins_u_0399_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001883,u_0405,signup_started,2026-06-11T14:34:00Z,u_0405_s01,ins_u_0405_001,{},v2.3.0-buggy +evt_001884,u_0405,signup_completed,2026-06-11T14:38:00Z,u_0405_s01,ins_u_0405_002,{},v2.3.0-buggy +evt_001885,u_0722,onboarding_completed,2026-06-11T14:43:00Z,u_0722_s01,ins_u_0722_005,"{""completed_at"": ""2026-06-11T14:47:00Z""}",v2.3.0-buggy +evt_001886,u_0489,activation_completed,2026-06-11T14:44:00Z,u_0489_s01,ins_u_0489_007,{},v2.3.0-buggy +evt_001887,u_0670,signup_started,2026-06-11T14:45:00Z,u_0670_s01,ins_u_0670_001,{},v2.3.0-buggy +evt_001888,u_0049,onboarding_completed,2026-06-11T14:46:00Z,u_0049_s01,ins_u_0049_005,"{""completed_at"": ""2026-06-11T14:35:00Z""}",v2.3.0-buggy +evt_001889,u_0405,profile_saved,2026-06-11T14:47:00Z,u_0405_s01,ins_u_0405_003,{},v2.3.0-buggy +evt_001890,u_0686,signup_started,2026-06-11T14:47:00Z,u_0686_s01,ins_u_0686_001,{},v2.3.0-buggy +evt_001891,u_0381,signup_started,2026-06-11T14:48:00Z,u_0381_s01,ins_u_0381_001,{},v2.3.0-buggy +evt_001892,u_0405,error_shown,2026-06-11T14:48:00Z,u_0405_s01,ins_u_0405_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001893,u_0670,signup_completed,2026-06-11T14:50:00Z,u_0670_s01,ins_u_0670_002,{},v2.3.0-buggy +evt_001894,u_0405,onboarding_step_viewed,2026-06-11T14:51:00Z,u_0405_s01,ins_u_0405_005,{},v2.3.0-buggy +evt_001895,u_0670,upsell_modal_shown,2026-06-11T14:51:00Z,u_0670_s01,ins_u_0670_003,{},v2.3.0-buggy +evt_001896,u_0733,signup_started,2026-06-11T14:51:00Z,u_0733_s01,ins_u_0733_001,{},v2.3.0-buggy +evt_001897,u_0686,signup_completed,2026-06-11T14:53:00Z,u_0686_s01,ins_u_0686_002,{},v2.3.0-buggy +evt_001898,u_0187,onboarding_completed,2026-06-11T14:54:00Z,u_0187_s01,ins_u_0187_007,"{""completed_at"": ""2026-06-11T14:57:00Z""}",v2.3.0-buggy +evt_001899,u_0670,profile_saved,2026-06-11T14:54:00Z,u_0670_s01,ins_u_0670_004,{},v2.3.0-buggy +evt_001900,u_0381,signup_completed,2026-06-11T14:55:00Z,u_0381_s01,ins_u_0381_002,{},v2.3.0-buggy +evt_001901,u_0405,feature_used,2026-06-11T14:55:00Z,u_0405_s01,ins_u_0405_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001902,u_0686,session_abandoned,2026-06-11T14:57:00Z,u_0686_s01,ins_u_0686_003,{},v2.3.0-buggy +evt_001903,u_0381,profile_saved,2026-06-11T14:58:00Z,u_0381_s01,ins_u_0381_003,{},v2.3.0-buggy +evt_001904,u_0733,session_abandoned,2026-06-11T14:59:00Z,u_0733_s01,ins_u_0733_002,{},v2.3.0-buggy +evt_001905,u_0381,onboarding_step_viewed,2026-06-11T15:00:00Z,u_0381_s01,ins_u_0381_004,{},v2.3.0-buggy +evt_001906,u_0515,signup_started,2026-06-11T15:00:00Z,u_0515_s01,ins_u_0515_001,{},v2.3.0-buggy +evt_001907,u_0398,signup_started,2026-06-11T15:02:00Z,u_0398_s01,ins_u_0398_001,{},v2.3.0-buggy +evt_001908,u_0515,signup_completed,2026-06-11T15:03:00Z,u_0515_s01,ins_u_0515_002,{},v2.3.0-buggy +evt_001909,u_0398,signup_completed,2026-06-11T15:08:00Z,u_0398_s01,ins_u_0398_002,{},v2.3.0-buggy +evt_001910,u_0398,onboarding_completed,2026-06-11T15:11:00Z,u_0398_s01,ins_u_0398_003,{},v2.3.0-buggy +evt_001911,u_0398,session_abandoned,2026-06-11T15:12:00Z,u_0398_s01,ins_u_0398_004,{},v2.3.0-buggy +evt_001912,u_0515,profile_saved,2026-06-11T15:12:00Z,u_0515_s01,ins_u_0515_003,{},v2.3.0-buggy +evt_001913,u_0515,error_shown,2026-06-11T15:13:00Z,u_0515_s01,ins_u_0515_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_001914,u_0515,onboarding_step_viewed,2026-06-11T15:16:00Z,u_0515_s01,ins_u_0515_005,{},v2.3.0-buggy +evt_001915,u_0515,feature_used,2026-06-11T15:24:00Z,u_0515_s01,ins_u_0515_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001916,u_0670,onboarding_completed,2026-06-11T15:27:00Z,u_0670_s01,ins_u_0670_005,"{""completed_at"": ""2026-06-11T15:30:00Z""}",v2.3.0-buggy +evt_001917,u_0405,onboarding_completed,2026-06-11T15:28:00Z,u_0405_s01,ins_u_0405_007,"{""completed_at"": ""2026-06-11T15:26:00Z""}",v2.3.0-buggy +evt_001918,u_0731,signup_started,2026-06-11T15:36:00Z,u_0731_s01,ins_u_0731_001,{},v2.3.0-buggy +evt_001919,u_0209,signup_started,2026-06-11T15:38:00Z,u_0209_s01,ins_u_0209_001,{},v2.3.0-buggy +evt_001920,u_0561,signup_started,2026-06-11T15:38:00Z,u_0561_s01,ins_u_0561_001,{},v2.3.0-buggy +evt_001921,u_0381,onboarding_completed,2026-06-11T15:39:00Z,u_0381_s01,ins_u_0381_005,"{""completed_at"": ""2026-06-11T15:28:00Z""}",v2.3.0-buggy +evt_001922,u_0561,signup_completed,2026-06-11T15:41:00Z,u_0561_s01,ins_u_0561_002,{},v2.3.0-buggy +evt_001923,u_0731,signup_completed,2026-06-11T15:41:00Z,u_0731_s01,ins_u_0731_002,{},v2.3.0-buggy +evt_001924,u_0209,signup_completed,2026-06-11T15:42:00Z,u_0209_s01,ins_u_0209_002,{},v2.3.0-buggy +evt_001925,u_0561,upsell_modal_shown,2026-06-11T15:42:00Z,u_0561_s01,ins_u_0561_003,{},v2.3.0-buggy +evt_001926,u_0209,upsell_modal_shown,2026-06-11T15:43:00Z,u_0209_s01,ins_u_0209_003,{},v2.3.0-buggy +evt_001927,u_0209,profile_saved,2026-06-11T15:46:00Z,u_0209_s01,ins_u_0209_004,{},v2.3.0-buggy +evt_001928,u_0405,activation_completed,2026-06-11T15:46:00Z,u_0405_s01,ins_u_0405_008,{},v2.3.0-buggy +evt_001929,u_0561,session_abandoned,2026-06-11T15:46:00Z,u_0561_s01,ins_u_0561_004,{},v2.3.0-buggy +evt_001930,u_0731,profile_saved,2026-06-11T15:48:00Z,u_0731_s01,ins_u_0731_003,{},v2.3.0-buggy +evt_001931,u_0209,onboarding_step_viewed,2026-06-11T15:50:00Z,u_0209_s01,ins_u_0209_005,{},v2.3.0-buggy +evt_001932,u_0111,signup_started,2026-06-11T15:52:00Z,u_0111_s01,ins_u_0111_001,{},v2.3.0-buggy +evt_001933,u_0111,signup_completed,2026-06-11T15:56:00Z,u_0111_s01,ins_u_0111_002,{},v2.3.0-buggy +evt_001934,u_0515,onboarding_completed,2026-06-11T15:57:00Z,u_0515_s01,ins_u_0515_007,"{""completed_at"": ""2026-06-11T15:45:00Z""}",v2.3.0-buggy +evt_001935,u_0381,activation_completed,2026-06-11T15:58:00Z,u_0381_s01,ins_u_0381_006,{},v2.3.0-buggy +evt_001936,u_0670,activation_completed,2026-06-11T16:00:00Z,u_0670_s01,ins_u_0670_006,{},v2.3.0-buggy +evt_001937,u_0485,signup_started,2026-06-11T16:01:00Z,u_0485_s01,ins_u_0485_001,{},v2.3.0-buggy +evt_001938,u_0111,profile_saved,2026-06-11T16:02:00Z,u_0111_s01,ins_u_0111_003,{},v2.3.0-buggy +evt_001939,u_0082,signup_started,2026-06-11T16:05:00Z,u_0082_s01,ins_u_0082_001,{},v2.3.0-buggy +evt_001940,u_0485,signup_completed,2026-06-11T16:06:00Z,u_0485_s01,ins_u_0485_002,{},v2.3.0-buggy +evt_001941,u_0731,feature_used,2026-06-11T16:06:00Z,u_0731_s01,ins_u_0731_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001942,u_0111,onboarding_step_viewed,2026-06-11T16:07:00Z,u_0111_s01,ins_u_0111_004,{},v2.3.0-buggy +evt_001943,u_0082,signup_completed,2026-06-11T16:10:00Z,u_0082_s01,ins_u_0082_002,{},v2.3.0-buggy +evt_001944,u_0111,feature_used,2026-06-11T16:11:00Z,u_0111_s01,ins_u_0111_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001945,u_0270,signup_started,2026-06-11T16:11:00Z,u_0270_s01,ins_u_0270_001,{},v2.3.0-buggy +evt_001946,u_0082,profile_saved,2026-06-11T16:14:00Z,u_0082_s01,ins_u_0082_003,{},v2.3.0-buggy +evt_001947,u_0270,session_abandoned,2026-06-11T16:14:00Z,u_0270_s01,ins_u_0270_002,{},v2.3.0-buggy +evt_001948,u_0468,signup_started,2026-06-11T16:15:00Z,u_0468_s01,ins_u_0468_001,{},v2.3.0-buggy +evt_001949,u_0485,profile_saved,2026-06-11T16:15:00Z,u_0485_s01,ins_u_0485_003,{},v2.3.0-buggy +evt_001950,u_0082,onboarding_step_viewed,2026-06-11T16:16:00Z,u_0082_s01,ins_u_0082_004,{},v2.3.0-buggy +evt_001951,u_0515,activation_completed,2026-06-11T16:19:00Z,u_0515_s01,ins_u_0515_008,{},v2.3.0-buggy +evt_001952,u_0515,activation_completed,2026-06-11T16:20:00Z,u_0515_s01,ins_u_0515_008,{},v2.3.0-buggy +evt_001953,u_0468,signup_completed,2026-06-11T16:21:00Z,u_0468_s01,ins_u_0468_002,{},v2.3.0-buggy +evt_001954,u_0468,upsell_modal_shown,2026-06-11T16:22:00Z,u_0468_s01,ins_u_0468_003,{},v2.3.0-buggy +evt_001955,u_0209,onboarding_completed,2026-06-11T16:24:00Z,u_0209_s01,ins_u_0209_006,"{""completed_at"": ""2026-06-11T16:23:00Z""}",v2.3.0-buggy +evt_001956,u_0468,profile_saved,2026-06-11T16:26:00Z,u_0468_s01,ins_u_0468_004,{},v2.3.0-buggy +evt_001957,u_0468,onboarding_step_viewed,2026-06-11T16:28:00Z,u_0468_s01,ins_u_0468_005,{},v2.3.0-buggy +evt_001958,u_0485,feature_used,2026-06-11T16:31:00Z,u_0485_s01,ins_u_0485_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001959,u_0111,onboarding_completed,2026-06-11T16:33:00Z,u_0111_s01,ins_u_0111_006,"{""completed_at"": ""2026-06-11T16:35:00Z""}",v2.3.0-buggy +evt_001960,u_0209,activation_completed,2026-06-11T16:34:00Z,u_0209_s01,ins_u_0209_007,{},v2.3.0-buggy +evt_001961,u_0455,signup_started,2026-06-11T16:34:00Z,u_0455_s01,ins_u_0455_001,{},v2.3.0-buggy +evt_001962,u_0317,signup_started,2026-06-11T16:37:00Z,u_0317_s01,ins_u_0317_001,{},v2.3.0-buggy +evt_001963,u_0317,signup_completed,2026-06-11T16:39:00Z,u_0317_s01,ins_u_0317_002,{},v2.3.0-buggy +evt_001964,u_0455,signup_completed,2026-06-11T16:39:00Z,u_0455_s01,ins_u_0455_002,{},v2.3.0-buggy +evt_001965,u_0485,onboarding_completed,2026-06-11T16:45:00Z,u_0485_s01,ins_u_0485_005,"{""completed_at"": ""2026-06-11T16:42:00Z""}",v2.3.0-buggy +evt_001966,u_0575,signup_started,2026-06-11T16:45:00Z,u_0575_s01,ins_u_0575_001,{},v2.3.0-buggy +evt_001967,u_0455,profile_saved,2026-06-11T16:47:00Z,u_0455_s01,ins_u_0455_003,{},v2.3.0-buggy +evt_001968,u_0575,signup_completed,2026-06-11T16:47:00Z,u_0575_s01,ins_u_0575_002,{},v2.3.0-buggy +evt_001969,u_0082,onboarding_completed,2026-06-11T16:48:00Z,u_0082_s01,ins_u_0082_005,"{""completed_at"": ""2026-06-11T16:52:00Z""}",v2.3.0-buggy +evt_001970,u_0317,profile_saved,2026-06-11T16:48:00Z,u_0317_s01,ins_u_0317_003,{},v2.3.0-buggy +evt_001971,u_0575,profile_saved,2026-06-11T16:49:00Z,u_0575_s01,ins_u_0575_003,{},v2.3.0-buggy +evt_001972,u_0455,onboarding_step_viewed,2026-06-11T16:50:00Z,u_0455_s01,ins_u_0455_004,{},v2.3.0-buggy +evt_001973,u_0317,onboarding_step_viewed,2026-06-11T16:52:00Z,u_0317_s01,ins_u_0317_004,{},v2.3.0-buggy +evt_001974,u_0575,onboarding_step_viewed,2026-06-11T16:53:00Z,u_0575_s01,ins_u_0575_004,{},v2.3.0-buggy +evt_001975,u_0468,onboarding_completed,2026-06-11T16:58:00Z,u_0468_s01,ins_u_0468_006,"{""completed_at"": ""2026-06-11T17:00:00Z""}",v2.3.0-buggy +evt_001976,u_0455,feature_used,2026-06-11T17:02:00Z,u_0455_s01,ins_u_0455_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001977,u_0575,feature_used,2026-06-11T17:02:00Z,u_0575_s01,ins_u_0575_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_001978,u_0731,activation_completed,2026-06-11T17:03:00Z,u_0731_s01,ins_u_0731_005,{},v2.3.0-buggy +evt_001979,u_0351,signup_started,2026-06-11T17:08:00Z,u_0351_s01,ins_u_0351_001,{},v2.3.0-buggy +evt_001980,u_0143,signup_started,2026-06-11T17:13:00Z,u_0143_s01,ins_u_0143_001,{},v2.3.0-buggy +evt_001981,u_0351,signup_completed,2026-06-11T17:14:00Z,u_0351_s01,ins_u_0351_002,{},v2.3.0-buggy +evt_001982,u_0575,onboarding_completed,2026-06-11T17:16:00Z,u_0575_s01,ins_u_0575_006,"{""completed_at"": ""2026-06-11T17:17:00Z""}",v2.3.0-buggy +evt_001983,u_0351,profile_saved,2026-06-11T17:18:00Z,u_0351_s01,ins_u_0351_003,{},v2.3.0-buggy +evt_001984,u_0143,signup_completed,2026-06-11T17:20:00Z,u_0143_s01,ins_u_0143_002,{},v2.3.0-buggy +evt_001985,u_0317,onboarding_completed,2026-06-11T17:21:00Z,u_0317_s01,ins_u_0317_005,"{""completed_at"": ""2026-06-11T17:16:00Z""}",v2.3.0-buggy +evt_001986,u_0462,signup_started,2026-06-11T17:21:00Z,u_0462_s01,ins_u_0462_001,{},v2.3.0-buggy +evt_001987,u_0791,signup_started,2026-06-11T17:21:00Z,u_0791_s01,ins_u_0791_001,{},v2.3.0-buggy +evt_001988,u_0462,signup_completed,2026-06-11T17:23:00Z,u_0462_s01,ins_u_0462_002,{},v2.3.0-buggy +evt_001989,u_0455,onboarding_completed,2026-06-11T17:26:00Z,u_0455_s01,ins_u_0455_006,"{""completed_at"": ""2026-06-11T17:26:00Z""}",v2.3.0-buggy +evt_001990,u_0791,session_abandoned,2026-06-11T17:27:00Z,u_0791_s01,ins_u_0791_002,{},v2.3.0-buggy +evt_001991,u_0143,profile_saved,2026-06-11T17:28:00Z,u_0143_s01,ins_u_0143_003,{},v2.3.0-buggy +evt_001992,u_0143,onboarding_step_viewed,2026-06-11T17:30:00Z,u_0143_s01,ins_u_0143_004,{},v2.3.0-buggy +evt_001993,u_0462,profile_saved,2026-06-11T17:30:00Z,u_0462_s01,ins_u_0462_003,{},v2.3.0-buggy +evt_001994,u_0721,signup_started,2026-06-11T17:31:00Z,u_0721_s01,ins_u_0721_001,{},v2.3.0-buggy +evt_001995,u_0462,onboarding_step_viewed,2026-06-11T17:33:00Z,u_0462_s01,ins_u_0462_004,{},v2.3.0-buggy +evt_001996,u_0721,signup_completed,2026-06-11T17:34:00Z,u_0721_s01,ins_u_0721_002,{},v2.3.0-buggy +evt_001997,u_0721,upsell_modal_shown,2026-06-11T17:35:00Z,u_0721_s01,ins_u_0721_003,{},v2.3.0-buggy +evt_001998,u_0194,signup_started,2026-06-11T17:36:00Z,u_0194_s01,ins_u_0194_001,{},v2.3.0-buggy +evt_001999,u_0194,signup_completed,2026-06-11T17:38:00Z,u_0194_s01,ins_u_0194_002,{},v2.3.0-buggy +evt_002000,u_0194,profile_saved,2026-06-11T17:40:00Z,u_0194_s01,ins_u_0194_003,{},v2.3.0-buggy +evt_002001,u_0721,profile_saved,2026-06-11T17:40:00Z,u_0721_s01,ins_u_0721_004,{},v2.3.0-buggy +evt_002002,u_0772,signup_started,2026-06-11T17:43:00Z,u_0772_s01,ins_u_0772_001,{},v2.3.0-buggy +evt_002003,u_0143,feature_used,2026-06-11T17:44:00Z,u_0143_s01,ins_u_0143_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002004,u_0194,onboarding_step_viewed,2026-06-11T17:44:00Z,u_0194_s01,ins_u_0194_004,{},v2.3.0-buggy +evt_002005,u_0721,onboarding_step_viewed,2026-06-11T17:44:00Z,u_0721_s01,ins_u_0721_005,{},v2.3.0-buggy +evt_002006,u_0462,feature_used,2026-06-11T17:45:00Z,u_0462_s01,ins_u_0462_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002007,u_0772,signup_completed,2026-06-11T17:49:00Z,u_0772_s01,ins_u_0772_002,{},v2.3.0-buggy +evt_002008,u_0772,profile_saved,2026-06-11T17:51:00Z,u_0772_s01,ins_u_0772_003,{},v2.3.0-buggy +evt_002009,u_0395,signup_started,2026-06-11T17:52:00Z,u_0395_s01,ins_u_0395_001,{},v2.3.0-buggy +evt_002010,u_0395,signup_completed,2026-06-11T17:53:00Z,u_0395_s01,ins_u_0395_002,{},v2.3.0-buggy +evt_002011,u_0772,onboarding_step_viewed,2026-06-11T17:54:00Z,u_0772_s01,ins_u_0772_004,{},v2.3.0-buggy +evt_002012,u_0462,onboarding_completed,2026-06-11T17:56:00Z,u_0462_s01,ins_u_0462_006,"{""completed_at"": ""2026-06-11T17:56:00Z""}",v2.3.0-buggy +evt_002013,u_0143,onboarding_completed,2026-06-11T17:59:00Z,u_0143_s01,ins_u_0143_006,"{""completed_at"": ""2026-06-11T18:07:00Z""}",v2.3.0-buggy +evt_002014,u_0351,onboarding_completed,2026-06-11T18:01:00Z,u_0351_s01,ins_u_0351_004,"{""completed_at"": ""2026-06-11T17:44:00Z""}",v2.3.0-buggy +evt_002015,u_0395,profile_saved,2026-06-11T18:02:00Z,u_0395_s01,ins_u_0395_003,{},v2.3.0-buggy +evt_002016,u_0098,signup_started,2026-06-11T18:04:00Z,u_0098_s01,ins_u_0098_001,{},v2.3.0-buggy +evt_002017,u_0233,signup_started,2026-06-11T18:04:00Z,u_0233_s01,ins_u_0233_001,{},v2.3.0-buggy +evt_002018,u_0098,signup_completed,2026-06-11T18:05:00Z,u_0098_s01,ins_u_0098_002,{},v2.3.0-buggy +evt_002019,u_0190,signup_started,2026-06-11T18:05:00Z,u_0190_s01,ins_u_0190_001,{},v2.3.0-buggy +evt_002020,u_0233,session_abandoned,2026-06-11T18:05:00Z,u_0233_s01,ins_u_0233_002,{},v2.3.0-buggy +evt_002021,u_0589,signup_started,2026-06-11T18:05:00Z,u_0589_s01,ins_u_0589_001,{},v2.3.0-buggy +evt_002022,u_0190,signup_completed,2026-06-11T18:06:00Z,u_0190_s01,ins_u_0190_002,{},v2.3.0-buggy +evt_002023,u_0395,onboarding_step_viewed,2026-06-11T18:06:00Z,u_0395_s01,ins_u_0395_004,{},v2.3.0-buggy +evt_002024,u_0589,signup_completed,2026-06-11T18:12:00Z,u_0589_s01,ins_u_0589_002,{},v2.3.0-buggy +evt_002025,u_0098,profile_saved,2026-06-11T18:13:00Z,u_0098_s01,ins_u_0098_003,{},v2.3.0-buggy +evt_002026,u_0411,signup_started,2026-06-11T18:13:00Z,u_0411_s01,ins_u_0411_001,{},v2.3.0-buggy +evt_002027,u_0190,profile_saved,2026-06-11T18:14:00Z,u_0190_s01,ins_u_0190_003,{},v2.3.0-buggy +evt_002028,u_0696,signup_started,2026-06-11T18:14:00Z,u_0696_s01,ins_u_0696_001,{},v2.3.0-buggy +evt_002029,u_0098,onboarding_step_viewed,2026-06-11T18:15:00Z,u_0098_s01,ins_u_0098_004,{},v2.3.0-buggy +evt_002030,u_0411,signup_completed,2026-06-11T18:15:00Z,u_0411_s01,ins_u_0411_002,{},v2.3.0-buggy +evt_002031,u_0190,onboarding_step_viewed,2026-06-11T18:16:00Z,u_0190_s01,ins_u_0190_004,{},v2.3.0-buggy +evt_002032,u_0721,onboarding_completed,2026-06-11T18:16:00Z,u_0721_s01,ins_u_0721_006,"{""completed_at"": ""2026-06-11T18:07:00Z""}",v2.3.0-buggy +evt_002033,u_0696,signup_completed,2026-06-11T18:18:00Z,u_0696_s01,ins_u_0696_002,{},v2.3.0-buggy +evt_002034,u_0589,profile_saved,2026-06-11T18:19:00Z,u_0589_s01,ins_u_0589_003,{},v2.3.0-buggy +evt_002035,u_0696,profile_saved,2026-06-11T18:21:00Z,u_0696_s01,ins_u_0696_003,{},v2.3.0-buggy +evt_002036,u_0190,feature_used,2026-06-11T18:22:00Z,u_0190_s01,ins_u_0190_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002037,u_0411,profile_saved,2026-06-11T18:22:00Z,u_0411_s01,ins_u_0411_003,{},v2.3.0-buggy +evt_002038,u_0589,onboarding_step_viewed,2026-06-11T18:24:00Z,u_0589_s01,ins_u_0589_004,{},v2.3.0-buggy +evt_002039,u_0143,activation_completed,2026-06-11T18:25:00Z,u_0143_s01,ins_u_0143_007,{},v2.3.0-buggy +evt_002040,u_0696,onboarding_step_viewed,2026-06-11T18:26:00Z,u_0696_s01,ins_u_0696_004,{},v2.3.0-buggy +evt_002041,u_0411,onboarding_step_viewed,2026-06-11T18:28:00Z,u_0411_s01,ins_u_0411_004,{},v2.3.0-buggy +evt_002042,u_0572,signup_started,2026-06-11T18:31:00Z,u_0572_s01,ins_u_0572_001,{},v2.3.0-buggy +evt_002043,u_0098,feature_used,2026-06-11T18:32:00Z,u_0098_s01,ins_u_0098_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002044,u_0696,feature_used,2026-06-11T18:32:00Z,u_0696_s01,ins_u_0696_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002045,u_0572,signup_completed,2026-06-11T18:34:00Z,u_0572_s01,ins_u_0572_002,{},v2.3.0-buggy +evt_002046,u_0411,feature_used,2026-06-11T18:35:00Z,u_0411_s01,ins_u_0411_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002047,u_0589,feature_used,2026-06-11T18:35:00Z,u_0589_s01,ins_u_0589_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002048,u_0772,onboarding_completed,2026-06-11T18:35:00Z,u_0772_s01,ins_u_0772_005,"{""completed_at"": ""2026-06-11T18:24:00Z""}",v2.3.0-buggy +evt_002049,u_0251,signup_started,2026-06-11T18:38:00Z,u_0251_s01,ins_u_0251_001,{},v2.3.0-buggy +evt_002050,u_0572,profile_saved,2026-06-11T18:40:00Z,u_0572_s01,ins_u_0572_003,{},v2.3.0-buggy +evt_002051,u_0098,onboarding_completed,2026-06-11T18:42:00Z,u_0098_s01,ins_u_0098_006,"{""completed_at"": ""2026-06-11T18:40:00Z""}",v2.3.0-buggy +evt_002052,u_0251,signup_completed,2026-06-11T18:45:00Z,u_0251_s01,ins_u_0251_002,{},v2.3.0-buggy +evt_002053,u_0721,activation_completed,2026-06-11T18:45:00Z,u_0721_s01,ins_u_0721_007,{},v2.3.0-buggy +evt_002054,u_0572,onboarding_step_viewed,2026-06-11T18:46:00Z,u_0572_s01,ins_u_0572_004,{},v2.3.0-buggy +evt_002055,u_0772,activation_completed,2026-06-11T18:46:00Z,u_0772_s01,ins_u_0772_006,{},v2.3.0-buggy +evt_002056,u_0251,profile_saved,2026-06-11T18:47:00Z,u_0251_s01,ins_u_0251_003,{},v2.3.0-buggy +evt_002057,u_0251,onboarding_step_viewed,2026-06-11T18:50:00Z,u_0251_s01,ins_u_0251_004,{},v2.3.0-buggy +evt_002058,u_0271,signup_started,2026-06-11T18:52:00Z,u_0271_s01,ins_u_0271_001,{},v2.3.0-buggy +evt_002059,u_0251,feature_used,2026-06-11T18:55:00Z,u_0251_s01,ins_u_0251_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002060,u_0271,signup_completed,2026-06-11T18:58:00Z,u_0271_s01,ins_u_0271_002,{},v2.3.0-buggy +evt_002061,u_0696,onboarding_completed,2026-06-11T18:58:00Z,u_0696_s01,ins_u_0696_006,"{""completed_at"": ""2026-06-11T18:51:00Z""}",v2.3.0-buggy +evt_002062,u_0589,onboarding_completed,2026-06-11T19:01:00Z,u_0589_s01,ins_u_0589_006,"{""completed_at"": ""2026-06-11T18:49:00Z""}",v2.3.0-buggy +evt_002063,u_0572,feature_used,2026-06-11T19:04:00Z,u_0572_s01,ins_u_0572_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002064,u_0751,signup_started,2026-06-11T19:06:00Z,u_0751_s01,ins_u_0751_001,{},v2.3.0-buggy +evt_002065,u_0411,onboarding_completed,2026-06-11T19:07:00Z,u_0411_s01,ins_u_0411_006,"{""completed_at"": ""2026-06-11T18:50:00Z""}",v2.3.0-buggy +evt_002066,u_0751,signup_completed,2026-06-11T19:07:00Z,u_0751_s01,ins_u_0751_002,{},v2.3.0-buggy +evt_002067,u_0271,profile_saved,2026-06-11T19:08:00Z,u_0271_s01,ins_u_0271_003,{},v2.3.0-buggy +evt_002068,u_0696,activation_completed,2026-06-11T19:09:00Z,u_0696_s01,ins_u_0696_007,{},v2.3.0-buggy +evt_002069,u_0572,onboarding_completed,2026-06-11T19:10:00Z,u_0572_s01,ins_u_0572_006,"{""completed_at"": ""2026-06-11T19:20:00Z""}",v2.3.0-buggy +evt_002070,u_0411,activation_completed,2026-06-11T19:12:00Z,u_0411_s01,ins_u_0411_007,{},v2.3.0-buggy +evt_002071,u_0028,signup_started,2026-06-11T19:14:00Z,u_0028_s01,ins_u_0028_001,{},v2.3.0-buggy +evt_002072,u_0751,profile_saved,2026-06-11T19:15:00Z,u_0751_s01,ins_u_0751_003,{},v2.3.0-buggy +evt_002073,u_0028,signup_completed,2026-06-11T19:17:00Z,u_0028_s01,ins_u_0028_002,{},v2.3.0-buggy +evt_002074,u_0608,signup_started,2026-06-11T19:17:00Z,u_0608_s01,ins_u_0608_001,{},v2.3.0-buggy +evt_002075,u_0751,onboarding_step_viewed,2026-06-11T19:19:00Z,u_0751_s01,ins_u_0751_004,{},v2.3.0-buggy +evt_002076,u_0608,signup_completed,2026-06-11T19:21:00Z,u_0608_s01,ins_u_0608_002,{},v2.3.0-buggy +evt_002077,u_0028,profile_saved,2026-06-11T19:23:00Z,u_0028_s01,ins_u_0028_003,{},v2.3.0-buggy +evt_002078,u_0028,profile_saved,2026-06-11T19:24:00Z,u_0028_s01,ins_u_0028_003,{},v2.3.0-buggy +evt_002079,u_0251,onboarding_completed,2026-06-11T19:27:00Z,u_0251_s01,ins_u_0251_006,"{""completed_at"": ""2026-06-11T19:13:00Z""}",v2.3.0-buggy +evt_002080,u_0751,feature_used,2026-06-11T19:28:00Z,u_0751_s01,ins_u_0751_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002081,u_0608,profile_saved,2026-06-11T19:31:00Z,u_0608_s01,ins_u_0608_003,{},v2.3.0-buggy +evt_002082,u_0043,signup_started,2026-06-11T19:34:00Z,u_0043_s01,ins_u_0043_001,{},v2.3.0-buggy +evt_002083,u_0608,onboarding_step_viewed,2026-06-11T19:34:00Z,u_0608_s01,ins_u_0608_004,{},v2.3.0-buggy +evt_002084,u_0028,feature_used,2026-06-11T19:37:00Z,u_0028_s01,ins_u_0028_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_002085,u_0043,session_abandoned,2026-06-11T19:37:00Z,u_0043_s01,ins_u_0043_002,{},v2.3.0-buggy +evt_002086,u_0271,onboarding_completed,2026-06-11T19:44:00Z,u_0271_s01,ins_u_0271_004,"{""completed_at"": ""2026-06-11T19:39:00Z""}",v2.3.0-buggy +evt_002087,u_0608,feature_used,2026-06-11T19:47:00Z,u_0608_s01,ins_u_0608_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002088,u_0751,onboarding_completed,2026-06-11T19:49:00Z,u_0751_s01,ins_u_0751_006,"{""completed_at"": ""2026-06-11T19:44:00Z""}",v2.3.0-buggy +evt_002089,u_0251,activation_completed,2026-06-11T19:55:00Z,u_0251_s01,ins_u_0251_007,{},v2.3.0-buggy +evt_002090,u_0103,signup_started,2026-06-11T20:00:00Z,u_0103_s01,ins_u_0103_001,{},v2.3.0-buggy +evt_002091,u_0103,signup_completed,2026-06-11T20:01:00Z,u_0103_s01,ins_u_0103_002,{},v2.3.0-buggy +evt_002092,u_0028,onboarding_completed,2026-06-11T20:03:00Z,u_0028_s01,ins_u_0028_005,"{""completed_at"": ""2026-06-11T19:57:00Z""}",v2.3.0-buggy +evt_002093,u_0608,onboarding_completed,2026-06-11T20:04:00Z,u_0608_s01,ins_u_0608_006,"{""completed_at"": ""2026-06-11T20:00:00Z""}",v2.3.0-buggy +evt_002094,u_0103,profile_saved,2026-06-11T20:05:00Z,u_0103_s01,ins_u_0103_003,{},v2.3.0-buggy +evt_002095,u_0382,signup_started,2026-06-11T20:05:00Z,u_0382_s01,ins_u_0382_001,{},v2.3.0-buggy +evt_002096,u_0103,onboarding_step_viewed,2026-06-11T20:07:00Z,u_0103_s01,ins_u_0103_004,{},v2.3.0-buggy +evt_002097,u_0382,signup_completed,2026-06-11T20:07:00Z,u_0382_s01,ins_u_0382_002,{},v2.3.0-buggy +evt_002098,u_0382,profile_saved,2026-06-11T20:11:00Z,u_0382_s01,ins_u_0382_003,{},v2.3.0-buggy +evt_002099,u_0714,signup_started,2026-06-11T20:11:00Z,u_0714_s01,ins_u_0714_001,{},v2.3.0-buggy +evt_002100,u_0131,signup_started,2026-06-11T20:16:00Z,u_0131_s01,ins_u_0131_001,{},v2.3.0-buggy +evt_002101,u_0223,signup_started,2026-06-11T20:16:00Z,u_0223_s01,ins_u_0223_001,{},v2.3.0-buggy +evt_002102,u_0382,onboarding_step_viewed,2026-06-11T20:17:00Z,u_0382_s01,ins_u_0382_004,{},v2.3.0-buggy +evt_002103,u_0714,signup_completed,2026-06-11T20:18:00Z,u_0714_s01,ins_u_0714_002,{},v2.3.0-buggy +evt_002104,u_0131,signup_completed,2026-06-11T20:23:00Z,u_0131_s01,ins_u_0131_002,{},v2.3.0-buggy +evt_002105,u_0708,signup_started,2026-06-11T20:23:00Z,u_0708_s01,ins_u_0708_001,{},v2.3.0-buggy +evt_002106,u_0223,session_abandoned,2026-06-11T20:24:00Z,u_0223_s01,ins_u_0223_002,{},v2.3.0-buggy +evt_002107,u_0708,signup_completed,2026-06-11T20:24:00Z,u_0708_s01,ins_u_0708_002,{},v2.3.0-buggy +evt_002108,u_0714,profile_saved,2026-06-11T20:24:00Z,u_0714_s01,ins_u_0714_003,{},v2.3.0-buggy +evt_002109,u_0223,session_abandoned,2026-06-11T20:25:00Z,u_0223_s01,ins_u_0223_002,{},v2.3.0-buggy +evt_002110,u_0318,signup_started,2026-06-11T20:27:00Z,u_0318_s01,ins_u_0318_001,{},v2.3.0-buggy +evt_002111,u_0131,profile_saved,2026-06-11T20:28:00Z,u_0131_s01,ins_u_0131_003,{},v2.3.0-buggy +evt_002112,u_0708,session_abandoned,2026-06-11T20:28:00Z,u_0708_s01,ins_u_0708_003,{},v2.3.0-buggy +evt_002113,u_0131,profile_saved,2026-06-11T20:29:00Z,u_0131_s01,ins_u_0131_003,{},v2.3.0-buggy +evt_002114,u_0131,error_shown,2026-06-11T20:29:00Z,u_0131_s01,ins_u_0131_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002115,u_0714,onboarding_step_viewed,2026-06-11T20:29:00Z,u_0714_s01,ins_u_0714_004,{},v2.3.0-buggy +evt_002116,u_0318,session_abandoned,2026-06-11T20:30:00Z,u_0318_s01,ins_u_0318_002,{},v2.3.0-buggy +evt_002117,u_0131,onboarding_step_viewed,2026-06-11T20:33:00Z,u_0131_s01,ins_u_0131_005,{},v2.3.0-buggy +evt_002118,u_0103,onboarding_completed,2026-06-11T20:34:00Z,u_0103_s01,ins_u_0103_005,"{""completed_at"": ""2026-06-11T20:39:00Z""}",v2.3.0-buggy +evt_002119,u_0131,feature_used,2026-06-11T20:40:00Z,u_0131_s01,ins_u_0131_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002120,u_0421,signup_started,2026-06-11T20:43:00Z,u_0421_s01,ins_u_0421_001,{},v2.3.0-buggy +evt_002121,u_0608,activation_completed,2026-06-11T20:46:00Z,u_0608_s01,ins_u_0608_007,{},v2.3.0-buggy +evt_002122,u_0097,signup_started,2026-06-11T20:47:00Z,u_0097_s01,ins_u_0097_001,{},v2.3.0-buggy +evt_002123,u_0421,signup_completed,2026-06-11T20:47:00Z,u_0421_s01,ins_u_0421_002,{},v2.3.0-buggy +evt_002124,u_0382,onboarding_completed,2026-06-11T20:50:00Z,u_0382_s01,ins_u_0382_005,"{""completed_at"": ""2026-06-11T20:50:00Z""}",v2.3.0-buggy +evt_002125,u_0091,signup_started,2026-06-11T20:51:00Z,u_0091_s01,ins_u_0091_001,{},v2.3.0-buggy +evt_002126,u_0097,signup_completed,2026-06-11T20:51:00Z,u_0097_s01,ins_u_0097_002,{},v2.3.0-buggy +evt_002127,u_0421,profile_saved,2026-06-11T20:51:00Z,u_0421_s01,ins_u_0421_003,{},v2.3.0-buggy +evt_002128,u_0097,onboarding_completed,2026-06-11T20:52:00Z,u_0097_s01,ins_u_0097_003,{},v2.3.0-buggy +evt_002129,u_0421,error_shown,2026-06-11T20:52:00Z,u_0421_s01,ins_u_0421_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002130,u_0091,signup_completed,2026-06-11T20:54:00Z,u_0091_s01,ins_u_0091_002,{},v2.3.0-buggy +evt_002131,u_0097,session_abandoned,2026-06-11T20:56:00Z,u_0097_s01,ins_u_0097_004,{},v2.3.0-buggy +evt_002132,u_0421,onboarding_step_viewed,2026-06-11T20:57:00Z,u_0421_s01,ins_u_0421_005,{},v2.3.0-buggy +evt_002133,u_0714,onboarding_completed,2026-06-11T20:57:00Z,u_0714_s01,ins_u_0714_005,"{""completed_at"": ""2026-06-11T21:02:00Z""}",v2.3.0-buggy +evt_002134,u_0091,profile_saved,2026-06-11T20:59:00Z,u_0091_s01,ins_u_0091_003,{},v2.3.0-buggy +evt_002135,u_0342,signup_started,2026-06-11T20:59:00Z,u_0342_s01,ins_u_0342_001,{},v2.3.0-buggy +evt_002136,u_0421,feature_used,2026-06-11T21:00:00Z,u_0421_s01,ins_u_0421_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002137,u_0091,onboarding_step_viewed,2026-06-11T21:03:00Z,u_0091_s01,ins_u_0091_004,{},v2.3.0-buggy +evt_002138,u_0342,signup_completed,2026-06-11T21:05:00Z,u_0342_s01,ins_u_0342_002,{},v2.3.0-buggy +evt_002139,u_0342,onboarding_completed,2026-06-11T21:07:00Z,u_0342_s01,ins_u_0342_003,{},v2.3.0-buggy +evt_002140,u_0131,onboarding_completed,2026-06-11T21:10:00Z,u_0131_s01,ins_u_0131_007,"{""completed_at"": ""2026-06-11T21:02:00Z""}",v2.3.0-buggy +evt_002141,u_0342,session_abandoned,2026-06-11T21:13:00Z,u_0342_s01,ins_u_0342_004,{},v2.3.0-buggy +evt_002142,u_0091,feature_used,2026-06-11T21:17:00Z,u_0091_s01,ins_u_0091_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002143,u_0421,onboarding_completed,2026-06-11T21:36:00Z,u_0421_s01,ins_u_0421_007,"{""completed_at"": ""2026-06-11T21:22:00Z""}",v2.3.0-buggy +evt_002144,u_0091,activation_completed,2026-06-11T21:45:00Z,u_0091_s01,ins_u_0091_006,{},v2.3.0-buggy +evt_002145,u_0421,activation_completed,2026-06-11T21:57:00Z,u_0421_s01,ins_u_0421_008,{},v2.3.0-buggy +evt_002146,u_0300,return_visit,2026-06-11T22:30:00Z,u_0300_s02,ins_u_0300_009,{},v2.3.0-buggy +evt_002147,u_0232,return_visit,2026-06-11T23:23:00Z,u_0232_s02,ins_u_0232_007,{},v2.3.0-buggy +evt_002148,u_0232,feature_used,2026-06-11T23:28:00Z,u_0232_s02,ins_u_0232_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002149,u_0716,return_visit,2026-06-12T01:12:00Z,u_0716_s02,ins_u_0716_007,{},v2.3.0-buggy +evt_002150,u_0716,feature_used,2026-06-12T01:17:00Z,u_0716_s02,ins_u_0716_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002151,u_0025,signup_started,2026-06-12T08:10:00Z,u_0025_s01,ins_u_0025_001,{},v2.3.0-buggy +evt_002152,u_0025,signup_completed,2026-06-12T08:18:00Z,u_0025_s01,ins_u_0025_002,{},v2.3.0-buggy +evt_002153,u_0025,profile_saved,2026-06-12T08:21:00Z,u_0025_s01,ins_u_0025_003,{},v2.3.0-buggy +evt_002154,u_0789,signup_started,2026-06-12T08:24:00Z,u_0789_s01,ins_u_0789_001,{},v2.3.0-buggy +evt_002155,u_0025,onboarding_step_viewed,2026-06-12T08:26:00Z,u_0025_s01,ins_u_0025_004,{},v2.3.0-buggy +evt_002156,u_0789,signup_completed,2026-06-12T08:32:00Z,u_0789_s01,ins_u_0789_002,{},v2.3.0-buggy +evt_002157,u_0519,signup_started,2026-06-12T08:35:00Z,u_0519_s01,ins_u_0519_001,{},v2.3.0-buggy +evt_002158,u_0519,signup_completed,2026-06-12T08:36:00Z,u_0519_s01,ins_u_0519_002,{},v2.3.0-buggy +evt_002159,u_0789,profile_saved,2026-06-12T08:37:00Z,u_0789_s01,ins_u_0789_003,{},v2.3.0-buggy +evt_002160,u_0519,profile_saved,2026-06-12T08:46:00Z,u_0519_s01,ins_u_0519_003,{},v2.3.0-buggy +evt_002161,u_0025,onboarding_completed,2026-06-12T08:47:00Z,u_0025_s01,ins_u_0025_005,"{""completed_at"": ""2026-06-12T08:53:00Z""}",v2.3.0-buggy +evt_002162,u_0789,feature_used,2026-06-12T08:50:00Z,u_0789_s01,ins_u_0789_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002163,u_0519,onboarding_step_viewed,2026-06-12T08:52:00Z,u_0519_s01,ins_u_0519_004,{},v2.3.0-buggy +evt_002164,u_0701,signup_started,2026-06-12T08:58:00Z,u_0701_s01,ins_u_0701_001,{},v2.3.0-buggy +evt_002165,u_0701,signup_completed,2026-06-12T09:02:00Z,u_0701_s01,ins_u_0701_002,{},v2.3.0-buggy +evt_002166,u_0519,feature_used,2026-06-12T09:03:00Z,u_0519_s01,ins_u_0519_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002167,u_0701,profile_saved,2026-06-12T09:07:00Z,u_0701_s01,ins_u_0701_003,{},v2.3.0-buggy +evt_002168,u_0191,signup_started,2026-06-12T09:09:00Z,u_0191_s01,ins_u_0191_001,{},v2.3.0-buggy +evt_002169,u_0470,signup_started,2026-06-12T09:10:00Z,u_0470_s01,ins_u_0470_001,{},v2.3.0-buggy +evt_002170,u_0470,signup_completed,2026-06-12T09:11:00Z,u_0470_s01,ins_u_0470_002,{},v2.3.0-buggy +evt_002171,u_0701,onboarding_step_viewed,2026-06-12T09:13:00Z,u_0701_s01,ins_u_0701_004,{},v2.3.0-buggy +evt_002172,u_0701,feature_used,2026-06-12T09:14:00Z,u_0701_s01,ins_u_0701_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002173,u_0191,signup_completed,2026-06-12T09:15:00Z,u_0191_s01,ins_u_0191_002,{},v2.3.0-buggy +evt_002174,u_0519,onboarding_completed,2026-06-12T09:17:00Z,u_0519_s01,ins_u_0519_006,"{""completed_at"": ""2026-06-12T09:20:00Z""}",v2.3.0-buggy +evt_002175,u_0470,session_abandoned,2026-06-12T09:19:00Z,u_0470_s01,ins_u_0470_003,{},v2.3.0-buggy +evt_002176,u_0132,signup_started,2026-06-12T09:20:00Z,u_0132_s01,ins_u_0132_001,{},v2.3.0-buggy +evt_002177,u_0191,session_abandoned,2026-06-12T09:20:00Z,u_0191_s01,ins_u_0191_003,{},v2.3.0-buggy +evt_002178,u_0789,onboarding_completed,2026-06-12T09:20:00Z,u_0789_s01,ins_u_0789_005,"{""completed_at"": ""2026-06-12T09:12:00Z""}",v2.3.0-buggy +evt_002179,u_0033,signup_started,2026-06-12T09:21:00Z,u_0033_s01,ins_u_0033_001,{},v2.3.0-buggy +evt_002180,u_0132,signup_completed,2026-06-12T09:23:00Z,u_0132_s01,ins_u_0132_002,{},v2.3.0-buggy +evt_002181,u_0033,signup_completed,2026-06-12T09:27:00Z,u_0033_s01,ins_u_0033_002,{},v2.3.0-buggy +evt_002182,u_0132,profile_saved,2026-06-12T09:27:00Z,u_0132_s01,ins_u_0132_003,{},v2.3.0-buggy +evt_002183,u_0033,upsell_modal_shown,2026-06-12T09:28:00Z,u_0033_s01,ins_u_0033_003,{},v2.3.0-buggy +evt_002184,u_0033,onboarding_completed,2026-06-12T09:28:00Z,u_0033_s01,ins_u_0033_004,{},v2.3.0-buggy +evt_002185,u_0132,error_shown,2026-06-12T09:28:00Z,u_0132_s01,ins_u_0132_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002186,u_0033,session_abandoned,2026-06-12T09:32:00Z,u_0033_s01,ins_u_0033_005,{},v2.3.0-buggy +evt_002187,u_0132,onboarding_step_viewed,2026-06-12T09:32:00Z,u_0132_s01,ins_u_0132_005,{},v2.3.0-buggy +evt_002188,u_0291,signup_started,2026-06-12T09:33:00Z,u_0291_s01,ins_u_0291_001,{},v2.3.0-buggy +evt_002189,u_0701,onboarding_completed,2026-06-12T09:34:00Z,u_0701_s01,ins_u_0701_006,"{""completed_at"": ""2026-06-12T09:36:00Z""}",v2.3.0-buggy +evt_002190,u_0291,signup_completed,2026-06-12T09:35:00Z,u_0291_s01,ins_u_0291_002,{},v2.3.0-buggy +evt_002191,u_0132,feature_used,2026-06-12T09:36:00Z,u_0132_s01,ins_u_0132_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_002192,u_0790,signup_started,2026-06-12T09:41:00Z,u_0790_s01,ins_u_0790_001,{},v2.3.0-buggy +evt_002193,u_0291,profile_saved,2026-06-12T09:42:00Z,u_0291_s01,ins_u_0291_003,{},v2.3.0-buggy +evt_002194,u_0790,signup_completed,2026-06-12T09:42:00Z,u_0790_s01,ins_u_0790_002,{},v2.3.0-buggy +evt_002195,u_0598,signup_started,2026-06-12T09:45:00Z,u_0598_s01,ins_u_0598_001,{},v2.3.0-buggy +evt_002196,u_0068,signup_started,2026-06-12T09:46:00Z,u_0068_s01,ins_u_0068_001,{},v2.3.0-buggy +evt_002197,u_0266,signup_started,2026-06-12T09:47:00Z,u_0266_s01,ins_u_0266_001,{},v2.3.0-buggy +evt_002198,u_0291,onboarding_step_viewed,2026-06-12T09:47:00Z,u_0291_s01,ins_u_0291_004,{},v2.3.0-buggy +evt_002199,u_0790,profile_saved,2026-06-12T09:49:00Z,u_0790_s01,ins_u_0790_003,{},v2.3.0-buggy +evt_002200,u_0790,error_shown,2026-06-12T09:50:00Z,u_0790_s01,ins_u_0790_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002201,u_0266,signup_completed,2026-06-12T09:52:00Z,u_0266_s01,ins_u_0266_002,{},v2.3.0-buggy +evt_002202,u_0573,signup_started,2026-06-12T09:52:00Z,u_0573_s01,ins_u_0573_001,{},v2.3.0-buggy +evt_002203,u_0598,signup_completed,2026-06-12T09:52:00Z,u_0598_s01,ins_u_0598_002,{},v2.3.0-buggy +evt_002204,u_0472,signup_started,2026-06-12T09:53:00Z,u_0472_s01,ins_u_0472_001,{},v2.3.0-buggy +evt_002205,u_0068,signup_completed,2026-06-12T09:54:00Z,u_0068_s01,ins_u_0068_002,{},v2.3.0-buggy +evt_002206,u_0266,profile_saved,2026-06-12T09:54:00Z,u_0266_s01,ins_u_0266_003,{},v2.3.0-buggy +evt_002207,u_0472,session_abandoned,2026-06-12T09:54:00Z,u_0472_s01,ins_u_0472_002,{},v2.3.0-buggy +evt_002208,u_0266,onboarding_step_viewed,2026-06-12T09:56:00Z,u_0266_s01,ins_u_0266_004,{},v2.3.0-buggy +evt_002209,u_0598,profile_saved,2026-06-12T09:57:00Z,u_0598_s01,ins_u_0598_003,{},v2.3.0-buggy +evt_002210,u_0790,feature_used,2026-06-12T09:57:00Z,u_0790_s01,ins_u_0790_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002211,u_0598,onboarding_step_viewed,2026-06-12T09:59:00Z,u_0598_s01,ins_u_0598_004,{},v2.3.0-buggy +evt_002212,u_0630,signup_started,2026-06-12T09:59:00Z,u_0630_s01,ins_u_0630_001,{},v2.3.0-buggy +evt_002213,u_0573,signup_completed,2026-06-12T10:00:00Z,u_0573_s01,ins_u_0573_002,{},v2.3.0-buggy +evt_002214,u_0068,profile_saved,2026-06-12T10:01:00Z,u_0068_s01,ins_u_0068_003,{},v2.3.0-buggy +evt_002215,u_0113,signup_started,2026-06-12T10:01:00Z,u_0113_s01,ins_u_0113_001,{},v2.3.0-buggy +evt_002216,u_0630,signup_completed,2026-06-12T10:04:00Z,u_0630_s01,ins_u_0630_002,{},v2.3.0-buggy +evt_002217,u_0068,onboarding_step_viewed,2026-06-12T10:05:00Z,u_0068_s01,ins_u_0068_004,{},v2.3.0-buggy +evt_002218,u_0113,signup_completed,2026-06-12T10:07:00Z,u_0113_s01,ins_u_0113_002,{},v2.3.0-buggy +evt_002219,u_0266,feature_used,2026-06-12T10:08:00Z,u_0266_s01,ins_u_0266_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002220,u_0068,feature_used,2026-06-12T10:10:00Z,u_0068_s01,ins_u_0068_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002221,u_0573,profile_saved,2026-06-12T10:10:00Z,u_0573_s01,ins_u_0573_003,{},v2.3.0-buggy +evt_002222,u_0630,profile_saved,2026-06-12T10:13:00Z,u_0630_s01,ins_u_0630_003,{},v2.3.0-buggy +evt_002223,u_0573,onboarding_step_viewed,2026-06-12T10:14:00Z,u_0573_s01,ins_u_0573_004,{},v2.3.0-buggy +evt_002224,u_0113,profile_saved,2026-06-12T10:15:00Z,u_0113_s01,ins_u_0113_003,{},v2.3.0-buggy +evt_002225,u_0113,onboarding_step_viewed,2026-06-12T10:17:00Z,u_0113_s01,ins_u_0113_004,{},v2.3.0-buggy +evt_002226,u_0236,signup_started,2026-06-12T10:17:00Z,u_0236_s01,ins_u_0236_001,{},v2.3.0-buggy +evt_002227,u_0630,onboarding_step_viewed,2026-06-12T10:18:00Z,u_0630_s01,ins_u_0630_004,{},v2.3.0-buggy +evt_002228,u_0347,signup_started,2026-06-12T10:19:00Z,u_0347_s01,ins_u_0347_001,{},v2.3.0-buggy +evt_002229,u_0701,activation_completed,2026-06-12T10:20:00Z,u_0701_s01,ins_u_0701_007,{},v2.3.0-buggy +evt_002230,u_0573,feature_used,2026-06-12T10:21:00Z,u_0573_s01,ins_u_0573_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002231,u_0737,signup_started,2026-06-12T10:23:00Z,u_0737_s01,ins_u_0737_001,{},v2.3.0-buggy +evt_002232,u_0598,onboarding_completed,2026-06-12T10:24:00Z,u_0598_s01,ins_u_0598_005,"{""completed_at"": ""2026-06-12T10:36:00Z""}",v2.3.0-buggy +evt_002233,u_0236,signup_completed,2026-06-12T10:25:00Z,u_0236_s01,ins_u_0236_002,{},v2.3.0-buggy +evt_002234,u_0347,signup_completed,2026-06-12T10:26:00Z,u_0347_s01,ins_u_0347_002,{},v2.3.0-buggy +evt_002235,u_0236,profile_saved,2026-06-12T10:28:00Z,u_0236_s01,ins_u_0236_003,{},v2.3.0-buggy +evt_002236,u_0790,onboarding_completed,2026-06-12T10:28:00Z,u_0790_s01,ins_u_0790_006,"{""completed_at"": ""2026-06-12T10:26:00Z""}",v2.3.0-buggy +evt_002237,u_0737,signup_completed,2026-06-12T10:29:00Z,u_0737_s01,ins_u_0737_002,{},v2.3.0-buggy +evt_002238,u_0266,onboarding_completed,2026-06-12T10:31:00Z,u_0266_s01,ins_u_0266_006,"{""completed_at"": ""2026-06-12T10:29:00Z""}",v2.3.0-buggy +evt_002239,u_0236,onboarding_step_viewed,2026-06-12T10:33:00Z,u_0236_s01,ins_u_0236_004,{},v2.3.0-buggy +evt_002240,u_0347,profile_saved,2026-06-12T10:35:00Z,u_0347_s01,ins_u_0347_003,{},v2.3.0-buggy +evt_002241,u_0347,error_shown,2026-06-12T10:36:00Z,u_0347_s01,ins_u_0347_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002242,u_0347,onboarding_step_viewed,2026-06-12T10:37:00Z,u_0347_s01,ins_u_0347_005,{},v2.3.0-buggy +evt_002243,u_0737,profile_saved,2026-06-12T10:38:00Z,u_0737_s01,ins_u_0737_003,{},v2.3.0-buggy +evt_002244,u_0573,onboarding_completed,2026-06-12T10:39:00Z,u_0573_s01,ins_u_0573_006,"{""completed_at"": ""2026-06-12T10:45:00Z""}",v2.3.0-buggy +evt_002245,u_0737,onboarding_step_viewed,2026-06-12T10:40:00Z,u_0737_s01,ins_u_0737_004,{},v2.3.0-buggy +evt_002246,u_0113,onboarding_completed,2026-06-12T10:43:00Z,u_0113_s01,ins_u_0113_005,"{""completed_at"": ""2026-06-12T10:53:00Z""}",v2.3.0-buggy +evt_002247,u_0630,onboarding_completed,2026-06-12T10:46:00Z,u_0630_s01,ins_u_0630_005,"{""completed_at"": ""2026-06-12T10:45:00Z""}",v2.3.0-buggy +evt_002248,u_0236,feature_used,2026-06-12T10:47:00Z,u_0236_s01,ins_u_0236_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002249,u_0736,signup_started,2026-06-12T10:47:00Z,u_0736_s01,ins_u_0736_001,{},v2.3.0-buggy +evt_002250,u_0790,activation_completed,2026-06-12T10:48:00Z,u_0790_s01,ins_u_0790_007,{},v2.3.0-buggy +evt_002251,u_0736,signup_completed,2026-06-12T10:50:00Z,u_0736_s01,ins_u_0736_002,{},v2.3.0-buggy +evt_002252,u_0736,onboarding_completed,2026-06-12T10:53:00Z,u_0736_s01,ins_u_0736_003,{},v2.3.0-buggy +evt_002253,u_0236,onboarding_completed,2026-06-12T10:55:00Z,u_0236_s01,ins_u_0236_006,"{""completed_at"": ""2026-06-12T11:08:00Z""}",v2.3.0-buggy +evt_002254,u_0736,session_abandoned,2026-06-12T10:55:00Z,u_0736_s01,ins_u_0736_004,{},v2.3.0-buggy +evt_002255,u_0737,feature_used,2026-06-12T10:55:00Z,u_0737_s01,ins_u_0737_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002256,u_0598,activation_completed,2026-06-12T10:57:00Z,u_0598_s01,ins_u_0598_006,{},v2.3.0-buggy +evt_002257,u_0594,signup_started,2026-06-12T10:59:00Z,u_0594_s01,ins_u_0594_001,{},v2.3.0-buggy +evt_002258,u_0320,signup_started,2026-06-12T11:00:00Z,u_0320_s01,ins_u_0320_001,{},v2.3.0-buggy +evt_002259,u_0113,activation_completed,2026-06-12T11:02:00Z,u_0113_s01,ins_u_0113_006,{},v2.3.0-buggy +evt_002260,u_0113,activation_completed,2026-06-12T11:03:00Z,u_0113_s01,ins_u_0113_006,{},v2.3.0-buggy +evt_002261,u_0320,signup_completed,2026-06-12T11:03:00Z,u_0320_s01,ins_u_0320_002,{},v2.3.0-buggy +evt_002262,u_0737,onboarding_completed,2026-06-12T11:05:00Z,u_0737_s01,ins_u_0737_006,"{""completed_at"": ""2026-06-12T11:05:00Z""}",v2.3.0-buggy +evt_002263,u_0594,signup_completed,2026-06-12T11:06:00Z,u_0594_s01,ins_u_0594_002,{},v2.3.0-buggy +evt_002264,u_0183,signup_started,2026-06-12T11:10:00Z,u_0183_s01,ins_u_0183_001,{},v2.3.0-buggy +evt_002265,u_0594,profile_saved,2026-06-12T11:11:00Z,u_0594_s01,ins_u_0594_003,{},v2.3.0-buggy +evt_002266,u_0320,profile_saved,2026-06-12T11:13:00Z,u_0320_s01,ins_u_0320_003,{},v2.3.0-buggy +evt_002267,u_0320,onboarding_step_viewed,2026-06-12T11:15:00Z,u_0320_s01,ins_u_0320_004,{},v2.3.0-buggy +evt_002268,u_0065,signup_started,2026-06-12T11:16:00Z,u_0065_s01,ins_u_0065_001,{},v2.3.0-buggy +evt_002269,u_0594,onboarding_step_viewed,2026-06-12T11:17:00Z,u_0594_s01,ins_u_0594_004,{},v2.3.0-buggy +evt_002270,u_0065,signup_completed,2026-06-12T11:18:00Z,u_0065_s01,ins_u_0065_002,{},v2.3.0-buggy +evt_002271,u_0183,signup_completed,2026-06-12T11:18:00Z,u_0183_s01,ins_u_0183_002,{},v2.3.0-buggy +evt_002272,u_0703,signup_started,2026-06-12T11:23:00Z,u_0703_s01,ins_u_0703_001,{},v2.3.0-buggy +evt_002273,u_0065,profile_saved,2026-06-12T11:27:00Z,u_0065_s01,ins_u_0065_003,{},v2.3.0-buggy +evt_002274,u_0703,session_abandoned,2026-06-12T11:27:00Z,u_0703_s01,ins_u_0703_002,{},v2.3.0-buggy +evt_002275,u_0065,error_shown,2026-06-12T11:28:00Z,u_0065_s01,ins_u_0065_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002276,u_0183,profile_saved,2026-06-12T11:28:00Z,u_0183_s01,ins_u_0183_003,{},v2.3.0-buggy +evt_002277,u_0065,onboarding_step_viewed,2026-06-12T11:30:00Z,u_0065_s01,ins_u_0065_005,{},v2.3.0-buggy +evt_002278,u_0183,onboarding_step_viewed,2026-06-12T11:30:00Z,u_0183_s01,ins_u_0183_004,{},v2.3.0-buggy +evt_002279,u_0236,activation_completed,2026-06-12T11:32:00Z,u_0236_s01,ins_u_0236_007,{},v2.3.0-buggy +evt_002280,u_0320,feature_used,2026-06-12T11:33:00Z,u_0320_s01,ins_u_0320_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002281,u_0065,feature_used,2026-06-12T11:39:00Z,u_0065_s01,ins_u_0065_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002282,u_0183,feature_used,2026-06-12T11:45:00Z,u_0183_s01,ins_u_0183_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002283,u_0320,onboarding_completed,2026-06-12T11:45:00Z,u_0320_s01,ins_u_0320_006,"{""completed_at"": ""2026-06-12T11:45:00Z""}",v2.3.0-buggy +evt_002284,u_0645,signup_started,2026-06-12T11:48:00Z,u_0645_s01,ins_u_0645_001,{},v2.3.0-buggy +evt_002285,u_0645,session_abandoned,2026-06-12T11:55:00Z,u_0645_s01,ins_u_0645_002,{},v2.3.0-buggy +evt_002286,u_0065,onboarding_completed,2026-06-12T12:02:00Z,u_0065_s01,ins_u_0065_007,"{""completed_at"": ""2026-06-12T12:02:00Z""}",v2.3.0-buggy +evt_002287,u_0006,signup_started,2026-06-12T12:03:00Z,u_0006_s01,ins_u_0006_001,{},v2.3.0-buggy +evt_002288,u_0065,onboarding_completed,2026-06-12T12:03:00Z,u_0065_s01,ins_u_0065_007,"{""completed_at"": ""2026-06-12T12:02:00Z""}",v2.3.0-buggy +evt_002289,u_0324,signup_started,2026-06-12T12:07:00Z,u_0324_s01,ins_u_0324_001,{},v2.3.0-buggy +evt_002290,u_0324,signup_completed,2026-06-12T12:09:00Z,u_0324_s01,ins_u_0324_002,{},v2.3.0-buggy +evt_002291,u_0006,signup_completed,2026-06-12T12:10:00Z,u_0006_s01,ins_u_0006_002,{},v2.3.0-buggy +evt_002292,u_0684,signup_started,2026-06-12T12:12:00Z,u_0684_s01,ins_u_0684_001,{},v2.3.0-buggy +evt_002293,u_0322,signup_started,2026-06-12T12:14:00Z,u_0322_s01,ins_u_0322_001,{},v2.3.0-buggy +evt_002294,u_0684,session_abandoned,2026-06-12T12:14:00Z,u_0684_s01,ins_u_0684_002,{},v2.3.0-buggy +evt_002295,u_0006,profile_saved,2026-06-12T12:15:00Z,u_0006_s01,ins_u_0006_003,{},v2.3.0-buggy +evt_002296,u_0663,signup_started,2026-06-12T12:17:00Z,u_0663_s01,ins_u_0663_001,{},v2.3.0-buggy +evt_002297,u_0324,profile_saved,2026-06-12T12:18:00Z,u_0324_s01,ins_u_0324_003,{},v2.3.0-buggy +evt_002298,u_0006,onboarding_step_viewed,2026-06-12T12:19:00Z,u_0006_s01,ins_u_0006_004,{},v2.3.0-buggy +evt_002299,u_0336,signup_started,2026-06-12T12:19:00Z,u_0336_s01,ins_u_0336_001,{},v2.3.0-buggy +evt_002300,u_0663,signup_completed,2026-06-12T12:20:00Z,u_0663_s01,ins_u_0663_002,{},v2.3.0-buggy +evt_002301,u_0322,signup_completed,2026-06-12T12:21:00Z,u_0322_s01,ins_u_0322_002,{},v2.3.0-buggy +evt_002302,u_0324,onboarding_step_viewed,2026-06-12T12:22:00Z,u_0324_s01,ins_u_0324_004,{},v2.3.0-buggy +evt_002303,u_0336,signup_completed,2026-06-12T12:22:00Z,u_0336_s01,ins_u_0336_002,{},v2.3.0-buggy +evt_002304,u_0663,profile_saved,2026-06-12T12:22:00Z,u_0663_s01,ins_u_0663_003,{},v2.3.0-buggy +evt_002305,u_0322,profile_saved,2026-06-12T12:23:00Z,u_0322_s01,ins_u_0322_003,{},v2.3.0-buggy +evt_002306,u_0594,activation_completed,2026-06-12T12:26:00Z,u_0594_s01,ins_u_0594_005,{},v2.3.0-buggy +evt_002307,u_0663,onboarding_step_viewed,2026-06-12T12:26:00Z,u_0663_s01,ins_u_0663_004,{},v2.3.0-buggy +evt_002308,u_0006,feature_used,2026-06-12T12:29:00Z,u_0006_s01,ins_u_0006_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002309,u_0336,profile_saved,2026-06-12T12:29:00Z,u_0336_s01,ins_u_0336_003,{},v2.3.0-buggy +evt_002310,u_0336,error_shown,2026-06-12T12:30:00Z,u_0336_s01,ins_u_0336_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002311,u_0240,signup_started,2026-06-12T12:34:00Z,u_0240_s01,ins_u_0240_001,{},v2.3.0-buggy +evt_002312,u_0324,feature_used,2026-06-12T12:34:00Z,u_0324_s01,ins_u_0324_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002313,u_0336,onboarding_step_viewed,2026-06-12T12:35:00Z,u_0336_s01,ins_u_0336_005,{},v2.3.0-buggy +evt_002314,u_0183,activation_completed,2026-06-12T12:36:00Z,u_0183_s01,ins_u_0183_006,{},v2.3.0-buggy +evt_002315,u_0532,signup_started,2026-06-12T12:37:00Z,u_0532_s01,ins_u_0532_001,{},v2.3.0-buggy +evt_002316,u_0431,signup_started,2026-06-12T12:38:00Z,u_0431_s01,ins_u_0431_001,{},v2.3.0-buggy +evt_002317,u_0240,session_abandoned,2026-06-12T12:39:00Z,u_0240_s01,ins_u_0240_002,{},v2.3.0-buggy +evt_002318,u_0431,signup_completed,2026-06-12T12:41:00Z,u_0431_s01,ins_u_0431_002,{},v2.3.0-buggy +evt_002319,u_0781,signup_started,2026-06-12T12:42:00Z,u_0781_s01,ins_u_0781_001,{},v2.3.0-buggy +evt_002320,u_0532,session_abandoned,2026-06-12T12:43:00Z,u_0532_s01,ins_u_0532_002,{},v2.3.0-buggy +evt_002321,u_0781,session_abandoned,2026-06-12T12:49:00Z,u_0781_s01,ins_u_0781_002,{},v2.3.0-buggy +evt_002322,u_0431,profile_saved,2026-06-12T12:50:00Z,u_0431_s01,ins_u_0431_003,{},v2.3.0-buggy +evt_002323,u_0431,error_shown,2026-06-12T12:51:00Z,u_0431_s01,ins_u_0431_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002324,u_0431,onboarding_step_viewed,2026-06-12T12:53:00Z,u_0431_s01,ins_u_0431_005,{},v2.3.0-buggy +evt_002325,u_0067,signup_started,2026-06-12T12:55:00Z,u_0067_s01,ins_u_0067_001,{},v2.3.0-buggy +evt_002326,u_0324,onboarding_completed,2026-06-12T12:55:00Z,u_0324_s01,ins_u_0324_006,"{""completed_at"": ""2026-06-12T12:52:00Z""}",v2.3.0-buggy +evt_002327,u_0324,onboarding_completed,2026-06-12T12:56:00Z,u_0324_s01,ins_u_0324_006,"{""completed_at"": ""2026-06-12T12:52:00Z""}",v2.3.0-buggy +evt_002328,u_0006,onboarding_completed,2026-06-12T12:57:00Z,u_0006_s01,ins_u_0006_006,"{""completed_at"": ""2026-06-12T12:41:00Z""}",v2.3.0-buggy +evt_002329,u_0663,onboarding_completed,2026-06-12T13:00:00Z,u_0663_s01,ins_u_0663_005,"{""completed_at"": ""2026-06-12T12:56:00Z""}",v2.3.0-buggy +evt_002330,u_0067,signup_completed,2026-06-12T13:01:00Z,u_0067_s01,ins_u_0067_002,{},v2.3.0-buggy +evt_002331,u_0322,onboarding_completed,2026-06-12T13:01:00Z,u_0322_s01,ins_u_0322_004,"{""completed_at"": ""2026-06-12T13:03:00Z""}",v2.3.0-buggy +evt_002332,u_0067,profile_saved,2026-06-12T13:03:00Z,u_0067_s01,ins_u_0067_003,{},v2.3.0-buggy +evt_002333,u_0006,activation_completed,2026-06-12T13:04:00Z,u_0006_s01,ins_u_0006_007,{},v2.3.0-buggy +evt_002334,u_0067,onboarding_step_viewed,2026-06-12T13:06:00Z,u_0067_s01,ins_u_0067_004,{},v2.3.0-buggy +evt_002335,u_0431,feature_used,2026-06-12T13:12:00Z,u_0431_s01,ins_u_0431_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002336,u_0067,feature_used,2026-06-12T13:14:00Z,u_0067_s01,ins_u_0067_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002337,u_0536,signup_started,2026-06-12T13:17:00Z,u_0536_s01,ins_u_0536_001,{},v2.3.0-buggy +evt_002338,u_0431,onboarding_completed,2026-06-12T13:20:00Z,u_0431_s01,ins_u_0431_007,"{""completed_at"": ""2026-06-12T13:24:00Z""}",v2.3.0-buggy +evt_002339,u_0536,signup_completed,2026-06-12T13:25:00Z,u_0536_s01,ins_u_0536_002,{},v2.3.0-buggy +evt_002340,u_0322,activation_completed,2026-06-12T13:31:00Z,u_0322_s01,ins_u_0322_005,{},v2.3.0-buggy +evt_002341,u_0023,signup_started,2026-06-12T13:32:00Z,u_0023_s01,ins_u_0023_001,{},v2.3.0-buggy +evt_002342,u_0663,activation_completed,2026-06-12T13:32:00Z,u_0663_s01,ins_u_0663_006,{},v2.3.0-buggy +evt_002343,u_0067,onboarding_completed,2026-06-12T13:34:00Z,u_0067_s01,ins_u_0067_006,"{""completed_at"": ""2026-06-12T13:43:00Z""}",v2.3.0-buggy +evt_002344,u_0536,profile_saved,2026-06-12T13:34:00Z,u_0536_s01,ins_u_0536_003,{},v2.3.0-buggy +evt_002345,u_0023,signup_completed,2026-06-12T13:39:00Z,u_0023_s01,ins_u_0023_002,{},v2.3.0-buggy +evt_002346,u_0536,onboarding_step_viewed,2026-06-12T13:39:00Z,u_0536_s01,ins_u_0536_004,{},v2.3.0-buggy +evt_002347,u_0023,profile_saved,2026-06-12T13:44:00Z,u_0023_s01,ins_u_0023_003,{},v2.3.0-buggy +evt_002348,u_0023,onboarding_step_viewed,2026-06-12T13:48:00Z,u_0023_s01,ins_u_0023_004,{},v2.3.0-buggy +evt_002349,u_0067,activation_completed,2026-06-12T13:57:00Z,u_0067_s01,ins_u_0067_007,{},v2.3.0-buggy +evt_002350,u_0173,signup_started,2026-06-12T13:58:00Z,u_0173_s01,ins_u_0173_001,{},v2.3.0-buggy +evt_002351,u_0695,signup_started,2026-06-12T13:58:00Z,u_0695_s01,ins_u_0695_001,{},v2.3.0-buggy +evt_002352,u_0115,signup_started,2026-06-12T13:59:00Z,u_0115_s01,ins_u_0115_001,{},v2.3.0-buggy +evt_002353,u_0536,onboarding_completed,2026-06-12T14:00:00Z,u_0536_s01,ins_u_0536_005,"{""completed_at"": ""2026-06-12T14:05:00Z""}",v2.3.0-buggy +evt_002354,u_0115,signup_completed,2026-06-12T14:01:00Z,u_0115_s01,ins_u_0115_002,{},v2.3.0-buggy +evt_002355,u_0023,feature_used,2026-06-12T14:02:00Z,u_0023_s01,ins_u_0023_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002356,u_0148,signup_started,2026-06-12T14:02:00Z,u_0148_s01,ins_u_0148_001,{},v2.3.0-buggy +evt_002357,u_0173,signup_completed,2026-06-12T14:02:00Z,u_0173_s01,ins_u_0173_002,{},v2.3.0-buggy +evt_002358,u_0115,onboarding_completed,2026-06-12T14:04:00Z,u_0115_s01,ins_u_0115_003,{},v2.3.0-buggy +evt_002359,u_0173,onboarding_completed,2026-06-12T14:05:00Z,u_0173_s01,ins_u_0173_003,{},v2.3.0-buggy +evt_002360,u_0695,session_abandoned,2026-06-12T14:05:00Z,u_0695_s01,ins_u_0695_002,{},v2.3.0-buggy +evt_002361,u_0148,signup_completed,2026-06-12T14:07:00Z,u_0148_s01,ins_u_0148_002,{},v2.3.0-buggy +evt_002362,u_0115,session_abandoned,2026-06-12T14:08:00Z,u_0115_s01,ins_u_0115_004,{},v2.3.0-buggy +evt_002363,u_0173,session_abandoned,2026-06-12T14:11:00Z,u_0173_s01,ins_u_0173_004,{},v2.3.0-buggy +evt_002364,u_0148,profile_saved,2026-06-12T14:17:00Z,u_0148_s01,ins_u_0148_003,{},v2.3.0-buggy +evt_002365,u_0023,onboarding_completed,2026-06-12T14:19:00Z,u_0023_s01,ins_u_0023_006,"{""completed_at"": ""2026-06-12T14:24:00Z""}",v2.3.0-buggy +evt_002366,u_0148,onboarding_step_viewed,2026-06-12T14:20:00Z,u_0148_s01,ins_u_0148_004,{},v2.3.0-buggy +evt_002367,u_0148,feature_used,2026-06-12T14:25:00Z,u_0148_s01,ins_u_0148_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002368,u_0423,signup_started,2026-06-12T14:26:00Z,u_0423_s01,ins_u_0423_001,{},v2.3.0-buggy +evt_002369,u_0345,signup_started,2026-06-12T14:28:00Z,u_0345_s01,ins_u_0345_001,{},v2.3.0-buggy +evt_002370,u_0423,signup_completed,2026-06-12T14:29:00Z,u_0423_s01,ins_u_0423_002,{},v2.3.0-buggy +evt_002371,u_0676,signup_started,2026-06-12T14:29:00Z,u_0676_s01,ins_u_0676_001,{},v2.3.0-buggy +evt_002372,u_0423,signup_completed,2026-06-12T14:30:00Z,u_0423_s01,ins_u_0423_002,{},v2.3.0-buggy +evt_002373,u_0423,profile_saved,2026-06-12T14:31:00Z,u_0423_s01,ins_u_0423_003,{},v2.3.0-buggy +evt_002374,u_0345,session_abandoned,2026-06-12T14:36:00Z,u_0345_s01,ins_u_0345_002,{},v2.3.0-buggy +evt_002375,u_0676,signup_completed,2026-06-12T14:36:00Z,u_0676_s01,ins_u_0676_002,{},v2.3.0-buggy +evt_002376,u_0423,onboarding_step_viewed,2026-06-12T14:37:00Z,u_0423_s01,ins_u_0423_004,{},v2.3.0-buggy +evt_002377,u_0676,session_abandoned,2026-06-12T14:40:00Z,u_0676_s01,ins_u_0676_003,{},v2.3.0-buggy +evt_002378,u_0423,feature_used,2026-06-12T14:44:00Z,u_0423_s01,ins_u_0423_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002379,u_0452,signup_started,2026-06-12T14:44:00Z,u_0452_s01,ins_u_0452_001,{},v2.3.0-buggy +evt_002380,u_0452,signup_completed,2026-06-12T14:45:00Z,u_0452_s01,ins_u_0452_002,{},v2.3.0-buggy +evt_002381,u_0029,signup_started,2026-06-12T14:47:00Z,u_0029_s01,ins_u_0029_001,{},v2.3.0-buggy +evt_002382,u_0105,signup_started,2026-06-12T14:47:00Z,u_0105_s01,ins_u_0105_001,{},v2.3.0-buggy +evt_002383,u_0105,signup_completed,2026-06-12T14:52:00Z,u_0105_s01,ins_u_0105_002,{},v2.3.0-buggy +evt_002384,u_0452,profile_saved,2026-06-12T14:53:00Z,u_0452_s01,ins_u_0452_003,{},v2.3.0-buggy +evt_002385,u_0029,signup_completed,2026-06-12T14:54:00Z,u_0029_s01,ins_u_0029_002,{},v2.3.0-buggy +evt_002386,u_0029,profile_saved,2026-06-12T14:57:00Z,u_0029_s01,ins_u_0029_003,{},v2.3.0-buggy +evt_002387,u_0452,onboarding_step_viewed,2026-06-12T14:57:00Z,u_0452_s01,ins_u_0452_004,{},v2.3.0-buggy +evt_002388,u_0105,profile_saved,2026-06-12T15:01:00Z,u_0105_s01,ins_u_0105_003,{},v2.3.0-buggy +evt_002389,u_0029,onboarding_step_viewed,2026-06-12T15:02:00Z,u_0029_s01,ins_u_0029_004,{},v2.3.0-buggy +evt_002390,u_0205,signup_started,2026-06-12T15:02:00Z,u_0205_s01,ins_u_0205_001,{},v2.3.0-buggy +evt_002391,u_0792,signup_started,2026-06-12T15:02:00Z,u_0792_s01,ins_u_0792_001,{},v2.3.0-buggy +evt_002392,u_0029,onboarding_step_viewed,2026-06-12T15:03:00Z,u_0029_s01,ins_u_0029_004,{},v2.3.0-buggy +evt_002393,u_0105,onboarding_step_viewed,2026-06-12T15:03:00Z,u_0105_s01,ins_u_0105_004,{},v2.3.0-buggy +evt_002394,u_0205,signup_completed,2026-06-12T15:03:00Z,u_0205_s01,ins_u_0205_002,{},v2.3.0-buggy +evt_002395,u_0146,signup_started,2026-06-12T15:06:00Z,u_0146_s01,ins_u_0146_001,{},v2.3.0-buggy +evt_002396,u_0029,feature_used,2026-06-12T15:07:00Z,u_0029_s01,ins_u_0029_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002397,u_0792,signup_completed,2026-06-12T15:07:00Z,u_0792_s01,ins_u_0792_002,{},v2.3.0-buggy +evt_002398,u_0146,signup_completed,2026-06-12T15:08:00Z,u_0146_s01,ins_u_0146_002,{},v2.3.0-buggy +evt_002399,u_0792,signup_completed,2026-06-12T15:08:00Z,u_0792_s01,ins_u_0792_002,{},v2.3.0-buggy +evt_002400,u_0205,session_abandoned,2026-06-12T15:09:00Z,u_0205_s01,ins_u_0205_003,{},v2.3.0-buggy +evt_002401,u_0601,signup_started,2026-06-12T15:09:00Z,u_0601_s01,ins_u_0601_001,{},v2.3.0-buggy +evt_002402,u_0601,signup_completed,2026-06-12T15:10:00Z,u_0601_s01,ins_u_0601_002,{},v2.3.0-buggy +evt_002403,u_0146,profile_saved,2026-06-12T15:11:00Z,u_0146_s01,ins_u_0146_003,{},v2.3.0-buggy +evt_002404,u_0792,profile_saved,2026-06-12T15:14:00Z,u_0792_s01,ins_u_0792_003,{},v2.3.0-buggy +evt_002405,u_0601,profile_saved,2026-06-12T15:17:00Z,u_0601_s01,ins_u_0601_003,{},v2.3.0-buggy +evt_002406,u_0105,feature_used,2026-06-12T15:18:00Z,u_0105_s01,ins_u_0105_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002407,u_0601,error_shown,2026-06-12T15:18:00Z,u_0601_s01,ins_u_0601_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002408,u_0792,onboarding_step_viewed,2026-06-12T15:18:00Z,u_0792_s01,ins_u_0792_004,{},v2.3.0-buggy +evt_002409,u_0601,onboarding_step_viewed,2026-06-12T15:20:00Z,u_0601_s01,ins_u_0601_005,{},v2.3.0-buggy +evt_002410,u_0375,signup_started,2026-06-12T15:21:00Z,u_0375_s01,ins_u_0375_001,{},v2.3.0-buggy +evt_002411,u_0475,signup_started,2026-06-12T15:22:00Z,u_0475_s01,ins_u_0475_001,{},v2.3.0-buggy +evt_002412,u_0475,session_abandoned,2026-06-12T15:24:00Z,u_0475_s01,ins_u_0475_002,{},v2.3.0-buggy +evt_002413,u_0799,signup_started,2026-06-12T15:25:00Z,u_0799_s01,ins_u_0799_001,{},v2.3.0-buggy +evt_002414,u_0375,signup_completed,2026-06-12T15:27:00Z,u_0375_s01,ins_u_0375_002,{},v2.3.0-buggy +evt_002415,u_0792,feature_used,2026-06-12T15:27:00Z,u_0792_s01,ins_u_0792_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002416,u_0105,onboarding_completed,2026-06-12T15:29:00Z,u_0105_s01,ins_u_0105_006,"{""completed_at"": ""2026-06-12T15:35:00Z""}",v2.3.0-buggy +evt_002417,u_0452,onboarding_completed,2026-06-12T15:30:00Z,u_0452_s01,ins_u_0452_005,"{""completed_at"": ""2026-06-12T15:22:00Z""}",v2.3.0-buggy +evt_002418,u_0601,feature_used,2026-06-12T15:30:00Z,u_0601_s01,ins_u_0601_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002419,u_0254,signup_started,2026-06-12T15:33:00Z,u_0254_s01,ins_u_0254_001,{},v2.3.0-buggy +evt_002420,u_0799,signup_completed,2026-06-12T15:33:00Z,u_0799_s01,ins_u_0799_002,{},v2.3.0-buggy +evt_002421,u_0375,profile_saved,2026-06-12T15:35:00Z,u_0375_s01,ins_u_0375_003,{},v2.3.0-buggy +evt_002422,u_0029,onboarding_completed,2026-06-12T15:36:00Z,u_0029_s01,ins_u_0029_006,"{""completed_at"": ""2026-06-12T15:37:00Z""}",v2.3.0-buggy +evt_002423,u_0146,onboarding_completed,2026-06-12T15:39:00Z,u_0146_s01,ins_u_0146_004,"{""completed_at"": ""2026-06-12T15:37:00Z""}",v2.3.0-buggy +evt_002424,u_0375,onboarding_step_viewed,2026-06-12T15:39:00Z,u_0375_s01,ins_u_0375_004,{},v2.3.0-buggy +evt_002425,u_0057,signup_started,2026-06-12T15:40:00Z,u_0057_s01,ins_u_0057_001,{},v2.3.0-buggy +evt_002426,u_0254,session_abandoned,2026-06-12T15:40:00Z,u_0254_s01,ins_u_0254_002,{},v2.3.0-buggy +evt_002427,u_0057,signup_completed,2026-06-12T15:41:00Z,u_0057_s01,ins_u_0057_002,{},v2.3.0-buggy +evt_002428,u_0799,profile_saved,2026-06-12T15:42:00Z,u_0799_s01,ins_u_0799_003,{},v2.3.0-buggy +evt_002429,u_0601,onboarding_completed,2026-06-12T15:48:00Z,u_0601_s01,ins_u_0601_007,"{""completed_at"": ""2026-06-12T15:55:00Z""}",v2.3.0-buggy +evt_002430,u_0799,onboarding_step_viewed,2026-06-12T15:48:00Z,u_0799_s01,ins_u_0799_004,{},v2.3.0-buggy +evt_002431,u_0423,activation_completed,2026-06-12T15:49:00Z,u_0423_s01,ins_u_0423_006,{},v2.3.0-buggy +evt_002432,u_0057,profile_saved,2026-06-12T15:51:00Z,u_0057_s01,ins_u_0057_003,{},v2.3.0-buggy +evt_002433,u_0057,onboarding_step_viewed,2026-06-12T15:53:00Z,u_0057_s01,ins_u_0057_004,{},v2.3.0-buggy +evt_002434,u_0534,signup_started,2026-06-12T15:53:00Z,u_0534_s01,ins_u_0534_001,{},v2.3.0-buggy +evt_002435,u_0562,signup_started,2026-06-12T15:57:00Z,u_0562_s01,ins_u_0562_001,{},v2.3.0-buggy +evt_002436,u_0303,signup_started,2026-06-12T16:01:00Z,u_0303_s01,ins_u_0303_001,{},v2.3.0-buggy +evt_002437,u_0534,signup_completed,2026-06-12T16:01:00Z,u_0534_s01,ins_u_0534_002,{},v2.3.0-buggy +evt_002438,u_0534,onboarding_completed,2026-06-12T16:02:00Z,u_0534_s01,ins_u_0534_003,{},v2.3.0-buggy +evt_002439,u_0562,signup_completed,2026-06-12T16:02:00Z,u_0562_s01,ins_u_0562_002,{},v2.3.0-buggy +evt_002440,u_0057,feature_used,2026-06-12T16:03:00Z,u_0057_s01,ins_u_0057_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002441,u_0303,session_abandoned,2026-06-12T16:03:00Z,u_0303_s01,ins_u_0303_002,{},v2.3.0-buggy +evt_002442,u_0504,signup_started,2026-06-12T16:07:00Z,u_0504_s01,ins_u_0504_001,{},v2.3.0-buggy +evt_002443,u_0534,session_abandoned,2026-06-12T16:07:00Z,u_0534_s01,ins_u_0534_004,{},v2.3.0-buggy +evt_002444,u_0029,activation_completed,2026-06-12T16:09:00Z,u_0029_s01,ins_u_0029_007,{},v2.3.0-buggy +evt_002445,u_0562,profile_saved,2026-06-12T16:12:00Z,u_0562_s01,ins_u_0562_003,{},v2.3.0-buggy +evt_002446,u_0799,onboarding_completed,2026-06-12T16:13:00Z,u_0799_s01,ins_u_0799_005,"{""completed_at"": ""2026-06-12T16:09:00Z""}",v2.3.0-buggy +evt_002447,u_0504,signup_completed,2026-06-12T16:14:00Z,u_0504_s01,ins_u_0504_002,{},v2.3.0-buggy +evt_002448,u_0155,signup_started,2026-06-12T16:18:00Z,u_0155_s01,ins_u_0155_001,{},v2.3.0-buggy +evt_002449,u_0375,onboarding_completed,2026-06-12T16:20:00Z,u_0375_s01,ins_u_0375_005,"{""completed_at"": ""2026-06-12T16:08:00Z""}",v2.3.0-buggy +evt_002450,u_0504,profile_saved,2026-06-12T16:20:00Z,u_0504_s01,ins_u_0504_003,{},v2.3.0-buggy +evt_002451,u_0229,signup_started,2026-06-12T16:21:00Z,u_0229_s01,ins_u_0229_001,{},v2.3.0-buggy +evt_002452,u_0229,signup_completed,2026-06-12T16:23:00Z,u_0229_s01,ins_u_0229_002,{},v2.3.0-buggy +evt_002453,u_0504,onboarding_step_viewed,2026-06-12T16:24:00Z,u_0504_s01,ins_u_0504_004,{},v2.3.0-buggy +evt_002454,u_0155,session_abandoned,2026-06-12T16:25:00Z,u_0155_s01,ins_u_0155_002,{},v2.3.0-buggy +evt_002455,u_0792,activation_completed,2026-06-12T16:25:00Z,u_0792_s01,ins_u_0792_006,{},v2.3.0-buggy +evt_002456,u_0229,profile_saved,2026-06-12T16:28:00Z,u_0229_s01,ins_u_0229_003,{},v2.3.0-buggy +evt_002457,u_0229,error_shown,2026-06-12T16:29:00Z,u_0229_s01,ins_u_0229_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002458,u_0562,feature_used,2026-06-12T16:29:00Z,u_0562_s01,ins_u_0562_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_002459,u_0619,signup_started,2026-06-12T16:30:00Z,u_0619_s01,ins_u_0619_001,{},v2.3.0-buggy +evt_002460,u_0229,onboarding_step_viewed,2026-06-12T16:33:00Z,u_0229_s01,ins_u_0229_005,{},v2.3.0-buggy +evt_002461,u_0799,activation_completed,2026-06-12T16:33:00Z,u_0799_s01,ins_u_0799_006,{},v2.3.0-buggy +evt_002462,u_0740,signup_started,2026-06-12T16:34:00Z,u_0740_s01,ins_u_0740_001,{},v2.3.0-buggy +evt_002463,u_0619,signup_completed,2026-06-12T16:35:00Z,u_0619_s01,ins_u_0619_002,{},v2.3.0-buggy +evt_002464,u_0740,signup_completed,2026-06-12T16:37:00Z,u_0740_s01,ins_u_0740_002,{},v2.3.0-buggy +evt_002465,u_0057,activation_completed,2026-06-12T16:38:00Z,u_0057_s01,ins_u_0057_006,{},v2.3.0-buggy +evt_002466,u_0619,profile_saved,2026-06-12T16:43:00Z,u_0619_s01,ins_u_0619_003,{},v2.3.0-buggy +evt_002467,u_0096,signup_started,2026-06-12T16:44:00Z,u_0096_s01,ins_u_0096_001,{},v2.3.0-buggy +evt_002468,u_0096,signup_completed,2026-06-12T16:46:00Z,u_0096_s01,ins_u_0096_002,{},v2.3.0-buggy +evt_002469,u_0619,onboarding_step_viewed,2026-06-12T16:46:00Z,u_0619_s01,ins_u_0619_004,{},v2.3.0-buggy +evt_002470,u_0740,profile_saved,2026-06-12T16:47:00Z,u_0740_s01,ins_u_0740_003,{},v2.3.0-buggy +evt_002471,u_0096,profile_saved,2026-06-12T16:49:00Z,u_0096_s01,ins_u_0096_003,{},v2.3.0-buggy +evt_002472,u_0740,onboarding_step_viewed,2026-06-12T16:51:00Z,u_0740_s01,ins_u_0740_004,{},v2.3.0-buggy +evt_002473,u_0096,onboarding_step_viewed,2026-06-12T16:53:00Z,u_0096_s01,ins_u_0096_004,{},v2.3.0-buggy +evt_002474,u_0267,signup_started,2026-06-12T16:58:00Z,u_0267_s01,ins_u_0267_001,{},v2.3.0-buggy +evt_002475,u_0504,onboarding_completed,2026-06-12T16:59:00Z,u_0504_s01,ins_u_0504_005,"{""completed_at"": ""2026-06-12T16:52:00Z""}",v2.3.0-buggy +evt_002476,u_0370,signup_started,2026-06-12T17:01:00Z,u_0370_s01,ins_u_0370_001,{},v2.3.0-buggy +evt_002477,u_0740,feature_used,2026-06-12T17:01:00Z,u_0740_s01,ins_u_0740_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002478,u_0370,session_abandoned,2026-06-12T17:03:00Z,u_0370_s01,ins_u_0370_002,{},v2.3.0-buggy +evt_002479,u_0267,signup_completed,2026-06-12T17:06:00Z,u_0267_s01,ins_u_0267_002,{},v2.3.0-buggy +evt_002480,u_0605,signup_started,2026-06-12T17:06:00Z,u_0605_s01,ins_u_0605_001,{},v2.3.0-buggy +evt_002481,u_0229,onboarding_completed,2026-06-12T17:07:00Z,u_0229_s01,ins_u_0229_006,"{""completed_at"": ""2026-06-12T17:01:00Z""}",v2.3.0-buggy +evt_002482,u_0175,signup_started,2026-06-12T17:08:00Z,u_0175_s01,ins_u_0175_001,{},v2.3.0-buggy +evt_002483,u_0267,onboarding_completed,2026-06-12T17:09:00Z,u_0267_s01,ins_u_0267_003,{},v2.3.0-buggy +evt_002484,u_0605,signup_completed,2026-06-12T17:09:00Z,u_0605_s01,ins_u_0605_002,{},v2.3.0-buggy +evt_002485,u_0619,onboarding_completed,2026-06-12T17:09:00Z,u_0619_s01,ins_u_0619_005,"{""completed_at"": ""2026-06-12T17:11:00Z""}",v2.3.0-buggy +evt_002486,u_0175,signup_completed,2026-06-12T17:10:00Z,u_0175_s01,ins_u_0175_002,{},v2.3.0-buggy +evt_002487,u_0267,session_abandoned,2026-06-12T17:11:00Z,u_0267_s01,ins_u_0267_004,{},v2.3.0-buggy +evt_002488,u_0562,activation_completed,2026-06-12T17:11:00Z,u_0562_s01,ins_u_0562_005,{},v2.3.0-buggy +evt_002489,u_0175,profile_saved,2026-06-12T17:14:00Z,u_0175_s01,ins_u_0175_003,{},v2.3.0-buggy +evt_002490,u_0605,profile_saved,2026-06-12T17:15:00Z,u_0605_s01,ins_u_0605_003,{},v2.3.0-buggy +evt_002491,u_0175,onboarding_step_viewed,2026-06-12T17:17:00Z,u_0175_s01,ins_u_0175_004,{},v2.3.0-buggy +evt_002492,u_0551,signup_started,2026-06-12T17:17:00Z,u_0551_s01,ins_u_0551_001,{},v2.3.0-buggy +evt_002493,u_0229,activation_completed,2026-06-12T17:18:00Z,u_0229_s01,ins_u_0229_007,{},v2.3.0-buggy +evt_002494,u_0551,session_abandoned,2026-06-12T17:18:00Z,u_0551_s01,ins_u_0551_002,{},v2.3.0-buggy +evt_002495,u_0605,onboarding_step_viewed,2026-06-12T17:20:00Z,u_0605_s01,ins_u_0605_004,{},v2.3.0-buggy +evt_002496,u_0096,onboarding_completed,2026-06-12T17:25:00Z,u_0096_s01,ins_u_0096_005,"{""completed_at"": ""2026-06-12T17:26:00Z""}",v2.3.0-buggy +evt_002497,u_0605,feature_used,2026-06-12T17:25:00Z,u_0605_s01,ins_u_0605_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002498,u_0504,activation_completed,2026-06-12T17:35:00Z,u_0504_s01,ins_u_0504_006,{},v2.3.0-buggy +evt_002499,u_0787,signup_started,2026-06-12T17:35:00Z,u_0787_s01,ins_u_0787_001,{},v2.3.0-buggy +evt_002500,u_0787,signup_completed,2026-06-12T17:38:00Z,u_0787_s01,ins_u_0787_002,{},v2.3.0-buggy +evt_002501,u_0047,signup_started,2026-06-12T17:41:00Z,u_0047_s01,ins_u_0047_001,{},v2.3.0-buggy +evt_002502,u_0605,onboarding_completed,2026-06-12T17:42:00Z,u_0605_s01,ins_u_0605_006,"{""completed_at"": ""2026-06-12T17:48:00Z""}",v2.3.0-buggy +evt_002503,u_0787,profile_saved,2026-06-12T17:42:00Z,u_0787_s01,ins_u_0787_003,{},v2.3.0-buggy +evt_002504,u_0261,signup_started,2026-06-12T17:46:00Z,u_0261_s01,ins_u_0261_001,{},v2.3.0-buggy +evt_002505,u_0525,signup_started,2026-06-12T17:46:00Z,u_0525_s01,ins_u_0525_001,{},v2.3.0-buggy +evt_002506,u_0787,onboarding_step_viewed,2026-06-12T17:46:00Z,u_0787_s01,ins_u_0787_004,{},v2.3.0-buggy +evt_002507,u_0261,signup_completed,2026-06-12T17:48:00Z,u_0261_s01,ins_u_0261_002,{},v2.3.0-buggy +evt_002508,u_0525,signup_completed,2026-06-12T17:48:00Z,u_0525_s01,ins_u_0525_002,{},v2.3.0-buggy +evt_002509,u_0740,activation_completed,2026-06-12T17:48:00Z,u_0740_s01,ins_u_0740_006,{},v2.3.0-buggy +evt_002510,u_0047,session_abandoned,2026-06-12T17:49:00Z,u_0047_s01,ins_u_0047_002,{},v2.3.0-buggy +evt_002511,u_0261,profile_saved,2026-06-12T17:50:00Z,u_0261_s01,ins_u_0261_003,{},v2.3.0-buggy +evt_002512,u_0261,onboarding_step_viewed,2026-06-12T17:53:00Z,u_0261_s01,ins_u_0261_004,{},v2.3.0-buggy +evt_002513,u_0525,profile_saved,2026-06-12T17:53:00Z,u_0525_s01,ins_u_0525_003,{},v2.3.0-buggy +evt_002514,u_0096,activation_completed,2026-06-12T17:54:00Z,u_0096_s01,ins_u_0096_006,{},v2.3.0-buggy +evt_002515,u_0376,signup_started,2026-06-12T17:55:00Z,u_0376_s01,ins_u_0376_001,{},v2.3.0-buggy +evt_002516,u_0175,onboarding_completed,2026-06-12T17:58:00Z,u_0175_s01,ins_u_0175_005,"{""completed_at"": ""2026-06-12T17:48:00Z""}",v2.3.0-buggy +evt_002517,u_0525,onboarding_step_viewed,2026-06-12T17:58:00Z,u_0525_s01,ins_u_0525_004,{},v2.3.0-buggy +evt_002518,u_0175,activation_completed,2026-06-12T18:02:00Z,u_0175_s01,ins_u_0175_006,{},v2.3.0-buggy +evt_002519,u_0376,session_abandoned,2026-06-12T18:02:00Z,u_0376_s01,ins_u_0376_002,{},v2.3.0-buggy +evt_002520,u_0787,feature_used,2026-06-12T18:02:00Z,u_0787_s01,ins_u_0787_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002521,u_0261,feature_used,2026-06-12T18:04:00Z,u_0261_s01,ins_u_0261_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002522,u_0525,feature_used,2026-06-12T18:07:00Z,u_0525_s01,ins_u_0525_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002523,u_0102,signup_started,2026-06-12T18:10:00Z,u_0102_s01,ins_u_0102_001,{},v2.3.0-buggy +evt_002524,u_0495,signup_started,2026-06-12T18:10:00Z,u_0495_s01,ins_u_0495_001,{},v2.3.0-buggy +evt_002525,u_0221,signup_started,2026-06-12T18:12:00Z,u_0221_s01,ins_u_0221_001,{},v2.3.0-buggy +evt_002526,u_0495,signup_completed,2026-06-12T18:12:00Z,u_0495_s01,ins_u_0495_002,{},v2.3.0-buggy +evt_002527,u_0102,signup_completed,2026-06-12T18:15:00Z,u_0102_s01,ins_u_0102_002,{},v2.3.0-buggy +evt_002528,u_0221,session_abandoned,2026-06-12T18:15:00Z,u_0221_s01,ins_u_0221_002,{},v2.3.0-buggy +evt_002529,u_0234,signup_started,2026-06-12T18:16:00Z,u_0234_s01,ins_u_0234_001,{},v2.3.0-buggy +evt_002530,u_0605,activation_completed,2026-06-12T18:17:00Z,u_0605_s01,ins_u_0605_007,{},v2.3.0-buggy +evt_002531,u_0102,profile_saved,2026-06-12T18:18:00Z,u_0102_s01,ins_u_0102_003,{},v2.3.0-buggy +evt_002532,u_0425,signup_started,2026-06-12T18:18:00Z,u_0425_s01,ins_u_0425_001,{},v2.3.0-buggy +evt_002533,u_0495,profile_saved,2026-06-12T18:19:00Z,u_0495_s01,ins_u_0495_003,{},v2.3.0-buggy +evt_002534,u_0102,onboarding_step_viewed,2026-06-12T18:20:00Z,u_0102_s01,ins_u_0102_004,{},v2.3.0-buggy +evt_002535,u_0425,signup_completed,2026-06-12T18:21:00Z,u_0425_s01,ins_u_0425_002,{},v2.3.0-buggy +evt_002536,u_0198,signup_started,2026-06-12T18:22:00Z,u_0198_s01,ins_u_0198_001,{},v2.3.0-buggy +evt_002537,u_0234,signup_completed,2026-06-12T18:23:00Z,u_0234_s01,ins_u_0234_002,{},v2.3.0-buggy +evt_002538,u_0495,onboarding_step_viewed,2026-06-12T18:24:00Z,u_0495_s01,ins_u_0495_004,{},v2.3.0-buggy +evt_002539,u_0234,onboarding_completed,2026-06-12T18:25:00Z,u_0234_s01,ins_u_0234_003,{},v2.3.0-buggy +evt_002540,u_0787,onboarding_completed,2026-06-12T18:25:00Z,u_0787_s01,ins_u_0787_006,"{""completed_at"": ""2026-06-12T18:08:00Z""}",v2.3.0-buggy +evt_002541,u_0102,feature_used,2026-06-12T18:27:00Z,u_0102_s01,ins_u_0102_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002542,u_0198,session_abandoned,2026-06-12T18:27:00Z,u_0198_s01,ins_u_0198_002,{},v2.3.0-buggy +evt_002543,u_0425,profile_saved,2026-06-12T18:27:00Z,u_0425_s01,ins_u_0425_003,{},v2.3.0-buggy +evt_002544,u_0234,session_abandoned,2026-06-12T18:31:00Z,u_0234_s01,ins_u_0234_004,{},v2.3.0-buggy +evt_002545,u_0425,onboarding_step_viewed,2026-06-12T18:32:00Z,u_0425_s01,ins_u_0425_004,{},v2.3.0-buggy +evt_002546,u_0261,onboarding_completed,2026-06-12T18:33:00Z,u_0261_s01,ins_u_0261_006,"{""completed_at"": ""2026-06-12T18:27:00Z""}",v2.3.0-buggy +evt_002547,u_0385,signup_started,2026-06-12T18:38:00Z,u_0385_s01,ins_u_0385_001,{},v2.3.0-buggy +evt_002548,u_0385,signup_completed,2026-06-12T18:43:00Z,u_0385_s01,ins_u_0385_002,{},v2.3.0-buggy +evt_002549,u_0496,signup_started,2026-06-12T18:44:00Z,u_0496_s01,ins_u_0496_001,{},v2.3.0-buggy +evt_002550,u_0102,onboarding_completed,2026-06-12T18:46:00Z,u_0102_s01,ins_u_0102_006,"{""completed_at"": ""2026-06-12T18:48:00Z""}",v2.3.0-buggy +evt_002551,u_0787,activation_completed,2026-06-12T18:46:00Z,u_0787_s01,ins_u_0787_007,{},v2.3.0-buggy +evt_002552,u_0496,signup_completed,2026-06-12T18:47:00Z,u_0496_s01,ins_u_0496_002,{},v2.3.0-buggy +evt_002553,u_0385,profile_saved,2026-06-12T18:49:00Z,u_0385_s01,ins_u_0385_003,{},v2.3.0-buggy +evt_002554,u_0385,error_shown,2026-06-12T18:50:00Z,u_0385_s01,ins_u_0385_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002555,u_0496,profile_saved,2026-06-12T18:50:00Z,u_0496_s01,ins_u_0496_003,{},v2.3.0-buggy +evt_002556,u_0385,onboarding_step_viewed,2026-06-12T18:52:00Z,u_0385_s01,ins_u_0385_005,{},v2.3.0-buggy +evt_002557,u_0496,onboarding_step_viewed,2026-06-12T18:54:00Z,u_0496_s01,ins_u_0496_004,{},v2.3.0-buggy +evt_002558,u_0360,signup_started,2026-06-12T18:56:00Z,u_0360_s01,ins_u_0360_001,{},v2.3.0-buggy +evt_002559,u_0525,activation_completed,2026-06-12T18:56:00Z,u_0525_s01,ins_u_0525_006,{},v2.3.0-buggy +evt_002560,u_0360,session_abandoned,2026-06-12T19:02:00Z,u_0360_s01,ins_u_0360_002,{},v2.3.0-buggy +evt_002561,u_0026,signup_started,2026-06-12T19:03:00Z,u_0026_s01,ins_u_0026_001,{},v2.3.0-buggy +evt_002562,u_0425,onboarding_completed,2026-06-12T19:04:00Z,u_0425_s01,ins_u_0425_005,"{""completed_at"": ""2026-06-12T18:54:00Z""}",v2.3.0-buggy +evt_002563,u_0026,signup_completed,2026-06-12T19:06:00Z,u_0026_s01,ins_u_0026_002,{},v2.3.0-buggy +evt_002564,u_0385,feature_used,2026-06-12T19:08:00Z,u_0385_s01,ins_u_0385_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002565,u_0496,feature_used,2026-06-12T19:08:00Z,u_0496_s01,ins_u_0496_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002566,u_0628,signup_started,2026-06-12T19:08:00Z,u_0628_s01,ins_u_0628_001,{},v2.3.0-buggy +evt_002567,u_0650,signup_started,2026-06-12T19:08:00Z,u_0650_s01,ins_u_0650_001,{},v2.3.0-buggy +evt_002568,u_0628,signup_completed,2026-06-12T19:10:00Z,u_0628_s01,ins_u_0628_002,{},v2.3.0-buggy +evt_002569,u_0650,signup_completed,2026-06-12T19:12:00Z,u_0650_s01,ins_u_0650_002,{},v2.3.0-buggy +evt_002570,u_0026,session_abandoned,2026-06-12T19:15:00Z,u_0026_s01,ins_u_0026_003,{},v2.3.0-buggy +evt_002571,u_0628,profile_saved,2026-06-12T19:19:00Z,u_0628_s01,ins_u_0628_003,{},v2.3.0-buggy +evt_002572,u_0385,onboarding_completed,2026-06-12T19:21:00Z,u_0385_s01,ins_u_0385_007,"{""completed_at"": ""2026-06-12T19:26:00Z""}",v2.3.0-buggy +evt_002573,u_0628,onboarding_step_viewed,2026-06-12T19:21:00Z,u_0628_s01,ins_u_0628_004,{},v2.3.0-buggy +evt_002574,u_0650,session_abandoned,2026-06-12T19:21:00Z,u_0650_s01,ins_u_0650_003,{},v2.3.0-buggy +evt_002575,u_0410,signup_started,2026-06-12T19:26:00Z,u_0410_s01,ins_u_0410_001,{},v2.3.0-buggy +evt_002576,u_0410,signup_completed,2026-06-12T19:27:00Z,u_0410_s01,ins_u_0410_002,{},v2.3.0-buggy +evt_002577,u_0588,signup_started,2026-06-12T19:28:00Z,u_0588_s01,ins_u_0588_001,{},v2.3.0-buggy +evt_002578,u_0410,onboarding_completed,2026-06-12T19:30:00Z,u_0410_s01,ins_u_0410_003,{},v2.3.0-buggy +evt_002579,u_0102,activation_completed,2026-06-12T19:35:00Z,u_0102_s01,ins_u_0102_007,{},v2.3.0-buggy +evt_002580,u_0410,session_abandoned,2026-06-12T19:35:00Z,u_0410_s01,ins_u_0410_004,{},v2.3.0-buggy +evt_002581,u_0496,onboarding_completed,2026-06-12T19:35:00Z,u_0496_s01,ins_u_0496_006,"{""completed_at"": ""2026-06-12T19:30:00Z""}",v2.3.0-buggy +evt_002582,u_0588,signup_completed,2026-06-12T19:36:00Z,u_0588_s01,ins_u_0588_002,{},v2.3.0-buggy +evt_002583,u_0795,signup_started,2026-06-12T19:38:00Z,u_0795_s01,ins_u_0795_001,{},v2.3.0-buggy +evt_002584,u_0628,feature_used,2026-06-12T19:39:00Z,u_0628_s01,ins_u_0628_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002585,u_0385,activation_completed,2026-06-12T19:40:00Z,u_0385_s01,ins_u_0385_008,{},v2.3.0-buggy +evt_002586,u_0795,signup_completed,2026-06-12T19:43:00Z,u_0795_s01,ins_u_0795_002,{},v2.3.0-buggy +evt_002587,u_0588,profile_saved,2026-06-12T19:46:00Z,u_0588_s01,ins_u_0588_003,{},v2.3.0-buggy +evt_002588,u_0795,profile_saved,2026-06-12T19:46:00Z,u_0795_s01,ins_u_0795_003,{},v2.3.0-buggy +evt_002589,u_0588,onboarding_step_viewed,2026-06-12T19:50:00Z,u_0588_s01,ins_u_0588_004,{},v2.3.0-buggy +evt_002590,u_0795,onboarding_step_viewed,2026-06-12T19:50:00Z,u_0795_s01,ins_u_0795_004,{},v2.3.0-buggy +evt_002591,u_0547,signup_started,2026-06-12T19:59:00Z,u_0547_s01,ins_u_0547_001,{},v2.3.0-buggy +evt_002592,u_0628,onboarding_completed,2026-06-12T20:01:00Z,u_0628_s01,ins_u_0628_006,"{""completed_at"": ""2026-06-12T19:58:00Z""}",v2.3.0-buggy +evt_002593,u_0199,signup_started,2026-06-12T20:05:00Z,u_0199_s01,ins_u_0199_001,{},v2.3.0-buggy +evt_002594,u_0766,signup_started,2026-06-12T20:05:00Z,u_0766_s01,ins_u_0766_001,{},v2.3.0-buggy +evt_002595,u_0795,feature_used,2026-06-12T20:05:00Z,u_0795_s01,ins_u_0795_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002596,u_0547,signup_completed,2026-06-12T20:06:00Z,u_0547_s01,ins_u_0547_002,{},v2.3.0-buggy +evt_002597,u_0547,profile_saved,2026-06-12T20:08:00Z,u_0547_s01,ins_u_0547_003,{},v2.3.0-buggy +evt_002598,u_0022,signup_started,2026-06-12T20:10:00Z,u_0022_s01,ins_u_0022_001,{},v2.3.0-buggy +evt_002599,u_0588,feature_used,2026-06-12T20:11:00Z,u_0588_s01,ins_u_0588_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002600,u_0766,signup_completed,2026-06-12T20:11:00Z,u_0766_s01,ins_u_0766_002,{},v2.3.0-buggy +evt_002601,u_0766,signup_completed,2026-06-12T20:12:00Z,u_0766_s01,ins_u_0766_002,{},v2.3.0-buggy +evt_002602,u_0199,signup_completed,2026-06-12T20:13:00Z,u_0199_s01,ins_u_0199_002,{},v2.3.0-buggy +evt_002603,u_0199,onboarding_completed,2026-06-12T20:14:00Z,u_0199_s01,ins_u_0199_003,{},v2.3.0-buggy +evt_002604,u_0607,signup_started,2026-06-12T20:16:00Z,u_0607_s01,ins_u_0607_001,{},v2.3.0-buggy +evt_002605,u_0628,activation_completed,2026-06-12T20:16:00Z,u_0628_s01,ins_u_0628_007,{},v2.3.0-buggy +evt_002606,u_0022,signup_completed,2026-06-12T20:17:00Z,u_0022_s01,ins_u_0022_002,{},v2.3.0-buggy +evt_002607,u_0766,session_abandoned,2026-06-12T20:18:00Z,u_0766_s01,ins_u_0766_003,{},v2.3.0-buggy +evt_002608,u_0199,session_abandoned,2026-06-12T20:19:00Z,u_0199_s01,ins_u_0199_004,{},v2.3.0-buggy +evt_002609,u_0659,signup_started,2026-06-12T20:19:00Z,u_0659_s01,ins_u_0659_001,{},v2.3.0-buggy +evt_002610,u_0144,signup_started,2026-06-12T20:20:00Z,u_0144_s01,ins_u_0144_001,{},v2.3.0-buggy +evt_002611,u_0659,signup_completed,2026-06-12T20:20:00Z,u_0659_s01,ins_u_0659_002,{},v2.3.0-buggy +evt_002612,u_0144,signup_completed,2026-06-12T20:22:00Z,u_0144_s01,ins_u_0144_002,{},v2.3.0-buggy +evt_002613,u_0607,signup_completed,2026-06-12T20:22:00Z,u_0607_s01,ins_u_0607_002,{},v2.3.0-buggy +evt_002614,u_0659,onboarding_completed,2026-06-12T20:23:00Z,u_0659_s01,ins_u_0659_003,{},v2.3.0-buggy +evt_002615,u_0022,session_abandoned,2026-06-12T20:24:00Z,u_0022_s01,ins_u_0022_003,{},v2.3.0-buggy +evt_002616,u_0607,profile_saved,2026-06-12T20:25:00Z,u_0607_s01,ins_u_0607_003,{},v2.3.0-buggy +evt_002617,u_0039,signup_started,2026-06-12T20:26:00Z,u_0039_s01,ins_u_0039_001,{},v2.3.0-buggy +evt_002618,u_0607,onboarding_step_viewed,2026-06-12T20:27:00Z,u_0607_s01,ins_u_0607_004,{},v2.3.0-buggy +evt_002619,u_0659,session_abandoned,2026-06-12T20:28:00Z,u_0659_s01,ins_u_0659_004,{},v2.3.0-buggy +evt_002620,u_0659,session_abandoned,2026-06-12T20:29:00Z,u_0659_s01,ins_u_0659_004,{},v2.3.0-buggy +evt_002621,u_0144,profile_saved,2026-06-12T20:30:00Z,u_0144_s01,ins_u_0144_003,{},v2.3.0-buggy +evt_002622,u_0588,onboarding_completed,2026-06-12T20:31:00Z,u_0588_s01,ins_u_0588_006,"{""completed_at"": ""2026-06-12T20:24:00Z""}",v2.3.0-buggy +evt_002623,u_0144,onboarding_step_viewed,2026-06-12T20:32:00Z,u_0144_s01,ins_u_0144_004,{},v2.3.0-buggy +evt_002624,u_0547,feature_used,2026-06-12T20:33:00Z,u_0547_s01,ins_u_0547_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002625,u_0039,signup_completed,2026-06-12T20:34:00Z,u_0039_s01,ins_u_0039_002,{},v2.3.0-buggy +evt_002626,u_0039,onboarding_completed,2026-06-12T20:37:00Z,u_0039_s01,ins_u_0039_003,{},v2.3.0-buggy +evt_002627,u_0588,activation_completed,2026-06-12T20:37:00Z,u_0588_s01,ins_u_0588_007,{},v2.3.0-buggy +evt_002628,u_0039,session_abandoned,2026-06-12T20:38:00Z,u_0039_s01,ins_u_0039_004,{},v2.3.0-buggy +evt_002629,u_0547,onboarding_completed,2026-06-12T20:40:00Z,u_0547_s01,ins_u_0547_005,"{""completed_at"": ""2026-06-12T20:35:00Z""}",v2.3.0-buggy +evt_002630,u_0607,feature_used,2026-06-12T20:41:00Z,u_0607_s01,ins_u_0607_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002631,u_0289,signup_started,2026-06-12T20:45:00Z,u_0289_s01,ins_u_0289_001,{},v2.3.0-buggy +evt_002632,u_0643,signup_started,2026-06-12T20:49:00Z,u_0643_s01,ins_u_0643_001,{},v2.3.0-buggy +evt_002633,u_0289,session_abandoned,2026-06-12T20:50:00Z,u_0289_s01,ins_u_0289_002,{},v2.3.0-buggy +evt_002634,u_0144,feature_used,2026-06-12T20:52:00Z,u_0144_s01,ins_u_0144_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002635,u_0327,signup_started,2026-06-12T20:53:00Z,u_0327_s01,ins_u_0327_001,{},v2.3.0-buggy +evt_002636,u_0327,signup_completed,2026-06-12T20:54:00Z,u_0327_s01,ins_u_0327_002,{},v2.3.0-buggy +evt_002637,u_0643,signup_completed,2026-06-12T20:54:00Z,u_0643_s01,ins_u_0643_002,{},v2.3.0-buggy +evt_002638,u_0157,signup_started,2026-06-12T20:55:00Z,u_0157_s01,ins_u_0157_001,{},v2.3.0-buggy +evt_002639,u_0157,session_abandoned,2026-06-12T20:58:00Z,u_0157_s01,ins_u_0157_002,{},v2.3.0-buggy +evt_002640,u_0144,onboarding_completed,2026-06-12T20:59:00Z,u_0144_s01,ins_u_0144_006,"{""completed_at"": ""2026-06-12T21:02:00Z""}",v2.3.0-buggy +evt_002641,u_0157,session_abandoned,2026-06-12T20:59:00Z,u_0157_s01,ins_u_0157_002,{},v2.3.0-buggy +evt_002642,u_0327,profile_saved,2026-06-12T20:59:00Z,u_0327_s01,ins_u_0327_003,{},v2.3.0-buggy +evt_002643,u_0643,profile_saved,2026-06-12T21:02:00Z,u_0643_s01,ins_u_0643_003,{},v2.3.0-buggy +evt_002644,u_0607,onboarding_completed,2026-06-12T21:03:00Z,u_0607_s01,ins_u_0607_006,"{""completed_at"": ""2026-06-12T20:54:00Z""}",v2.3.0-buggy +evt_002645,u_0643,onboarding_step_viewed,2026-06-12T21:06:00Z,u_0643_s01,ins_u_0643_004,{},v2.3.0-buggy +evt_002646,u_0327,feature_used,2026-06-12T21:18:00Z,u_0327_s01,ins_u_0327_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002647,u_0643,feature_used,2026-06-12T21:19:00Z,u_0643_s01,ins_u_0643_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002648,u_0607,activation_completed,2026-06-12T21:24:00Z,u_0607_s01,ins_u_0607_007,{},v2.3.0-buggy +evt_002649,u_0144,activation_completed,2026-06-12T21:26:00Z,u_0144_s01,ins_u_0144_007,{},v2.3.0-buggy +evt_002650,u_0643,onboarding_completed,2026-06-12T21:34:00Z,u_0643_s01,ins_u_0643_006,"{""completed_at"": ""2026-06-12T21:33:00Z""}",v2.3.0-buggy +evt_002651,u_0327,onboarding_completed,2026-06-12T21:38:00Z,u_0327_s01,ins_u_0327_005,"{""completed_at"": ""2026-06-12T21:26:00Z""}",v2.3.0-buggy +evt_002652,u_0643,activation_completed,2026-06-12T22:13:00Z,u_0643_s01,ins_u_0643_007,{},v2.3.0-buggy +evt_002653,u_0403,return_visit,2026-06-13T00:02:00Z,u_0403_s02,ins_u_0403_007,{},v2.3.0-buggy +evt_002654,u_0435,return_visit,2026-06-13T01:17:00Z,u_0435_s02,ins_u_0435_007,{},v2.3.0-buggy +evt_002655,u_0435,feature_used,2026-06-13T01:22:00Z,u_0435_s02,ins_u_0435_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002656,u_0116,return_visit,2026-06-13T01:38:00Z,u_0116_s02,ins_u_0116_007,{},v2.3.0-buggy +evt_002657,u_0361,return_visit,2026-06-13T04:58:00Z,u_0361_s02,ins_u_0361_007,{},v2.3.0-buggy +evt_002658,u_0745,return_visit,2026-06-13T05:21:00Z,u_0745_s02,ins_u_0745_007,{},v2.3.0-buggy +evt_002659,u_0745,feature_used,2026-06-13T05:26:00Z,u_0745_s02,ins_u_0745_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002660,u_0275,return_visit,2026-06-13T06:47:00Z,u_0275_s02,ins_u_0275_005,{},v2.3.0-buggy +evt_002661,u_0227,return_visit,2026-06-13T07:20:00Z,u_0227_s02,ins_u_0227_006,{},v2.3.0-buggy +evt_002662,u_0227,feature_used,2026-06-13T07:25:00Z,u_0227_s02,ins_u_0227_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002663,u_0264,signup_started,2026-06-13T08:00:00Z,u_0264_s01,ins_u_0264_001,{},v2.3.0-buggy +evt_002664,u_0512,signup_started,2026-06-13T08:00:00Z,u_0512_s01,ins_u_0512_001,{},v2.3.0-buggy +evt_002665,u_0507,return_visit,2026-06-13T08:04:00Z,u_0507_s02,ins_u_0507_006,{},v2.3.0-buggy +evt_002666,u_0512,signup_completed,2026-06-13T08:04:00Z,u_0512_s01,ins_u_0512_002,{},v2.3.0-buggy +evt_002667,u_0174,signup_started,2026-06-13T08:05:00Z,u_0174_s01,ins_u_0174_001,{},v2.3.0-buggy +evt_002668,u_0174,signup_completed,2026-06-13T08:06:00Z,u_0174_s01,ins_u_0174_002,{},v2.3.0-buggy +evt_002669,u_0512,profile_saved,2026-06-13T08:06:00Z,u_0512_s01,ins_u_0512_003,{},v2.3.0-buggy +evt_002670,u_0264,signup_completed,2026-06-13T08:07:00Z,u_0264_s01,ins_u_0264_002,{},v2.3.0-buggy +evt_002671,u_0063,signup_started,2026-06-13T08:12:00Z,u_0063_s01,ins_u_0063_001,{},v2.3.0-buggy +evt_002672,u_0174,profile_saved,2026-06-13T08:12:00Z,u_0174_s01,ins_u_0174_003,{},v2.3.0-buggy +evt_002673,u_0174,error_shown,2026-06-13T08:13:00Z,u_0174_s01,ins_u_0174_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002674,u_0264,profile_saved,2026-06-13T08:14:00Z,u_0264_s01,ins_u_0264_003,{},v2.3.0-buggy +evt_002675,u_0063,signup_completed,2026-06-13T08:15:00Z,u_0063_s01,ins_u_0063_002,{},v2.3.0-buggy +evt_002676,u_0264,error_shown,2026-06-13T08:15:00Z,u_0264_s01,ins_u_0264_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002677,u_0264,onboarding_step_viewed,2026-06-13T08:17:00Z,u_0264_s01,ins_u_0264_005,{},v2.3.0-buggy +evt_002678,u_0174,onboarding_step_viewed,2026-06-13T08:18:00Z,u_0174_s01,ins_u_0174_005,{},v2.3.0-buggy +evt_002679,u_0328,signup_started,2026-06-13T08:19:00Z,u_0328_s01,ins_u_0328_001,{},v2.3.0-buggy +evt_002680,u_0063,session_abandoned,2026-06-13T08:20:00Z,u_0063_s01,ins_u_0063_003,{},v2.3.0-buggy +evt_002681,u_0328,signup_completed,2026-06-13T08:24:00Z,u_0328_s01,ins_u_0328_002,{},v2.3.0-buggy +evt_002682,u_0338,signup_started,2026-06-13T08:30:00Z,u_0338_s01,ins_u_0338_001,{},v2.3.0-buggy +evt_002683,u_0328,profile_saved,2026-06-13T08:32:00Z,u_0328_s01,ins_u_0328_003,{},v2.3.0-buggy +evt_002684,u_0338,signup_completed,2026-06-13T08:33:00Z,u_0338_s01,ins_u_0338_002,{},v2.3.0-buggy +evt_002685,u_0264,feature_used,2026-06-13T08:34:00Z,u_0264_s01,ins_u_0264_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_002686,u_0328,onboarding_step_viewed,2026-06-13T08:38:00Z,u_0328_s01,ins_u_0328_004,{},v2.3.0-buggy +evt_002687,u_0338,profile_saved,2026-06-13T08:39:00Z,u_0338_s01,ins_u_0338_003,{},v2.3.0-buggy +evt_002688,u_0138,signup_started,2026-06-13T08:41:00Z,u_0138_s01,ins_u_0138_001,{},v2.3.0-buggy +evt_002689,u_0264,onboarding_completed,2026-06-13T08:41:00Z,u_0264_s01,ins_u_0264_007,"{""completed_at"": ""2026-06-13T08:47:00Z""}",v2.3.0-buggy +evt_002690,u_0688,signup_started,2026-06-13T08:43:00Z,u_0688_s01,ins_u_0688_001,{},v2.3.0-buggy +evt_002691,u_0138,signup_completed,2026-06-13T08:44:00Z,u_0138_s01,ins_u_0138_002,{},v2.3.0-buggy +evt_002692,u_0338,onboarding_step_viewed,2026-06-13T08:44:00Z,u_0338_s01,ins_u_0338_004,{},v2.3.0-buggy +evt_002693,u_0512,onboarding_completed,2026-06-13T08:44:00Z,u_0512_s01,ins_u_0512_004,"{""completed_at"": ""2026-06-13T08:37:00Z""}",v2.3.0-buggy +evt_002694,u_0138,profile_saved,2026-06-13T08:48:00Z,u_0138_s01,ins_u_0138_003,{},v2.3.0-buggy +evt_002695,u_0688,signup_completed,2026-06-13T08:48:00Z,u_0688_s01,ins_u_0688_002,{},v2.3.0-buggy +evt_002696,u_0138,error_shown,2026-06-13T08:49:00Z,u_0138_s01,ins_u_0138_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002697,u_0286,signup_started,2026-06-13T08:50:00Z,u_0286_s01,ins_u_0286_001,{},v2.3.0-buggy +evt_002698,u_0138,onboarding_step_viewed,2026-06-13T08:53:00Z,u_0138_s01,ins_u_0138_005,{},v2.3.0-buggy +evt_002699,u_0688,profile_saved,2026-06-13T08:53:00Z,u_0688_s01,ins_u_0688_003,{},v2.3.0-buggy +evt_002700,u_0286,signup_completed,2026-06-13T08:56:00Z,u_0286_s01,ins_u_0286_002,{},v2.3.0-buggy +evt_002701,u_0688,onboarding_step_viewed,2026-06-13T08:56:00Z,u_0688_s01,ins_u_0688_004,{},v2.3.0-buggy +evt_002702,u_0153,signup_started,2026-06-13T08:58:00Z,u_0153_s01,ins_u_0153_001,{},v2.3.0-buggy +evt_002703,u_0666,return_visit,2026-06-13T08:58:00Z,u_0666_s02,ins_u_0666_008,{},v2.3.0-buggy +evt_002704,u_0138,feature_used,2026-06-13T09:00:00Z,u_0138_s01,ins_u_0138_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_002705,u_0286,profile_saved,2026-06-13T09:00:00Z,u_0286_s01,ins_u_0286_003,{},v2.3.0-buggy +evt_002706,u_0391,signup_started,2026-06-13T09:00:00Z,u_0391_s01,ins_u_0391_001,{},v2.3.0-buggy +evt_002707,u_0401,signup_started,2026-06-13T09:00:00Z,u_0401_s01,ins_u_0401_001,{},v2.3.0-buggy +evt_002708,u_0401,signup_completed,2026-06-13T09:01:00Z,u_0401_s01,ins_u_0401_002,{},v2.3.0-buggy +evt_002709,u_0153,signup_completed,2026-06-13T09:02:00Z,u_0153_s01,ins_u_0153_002,{},v2.3.0-buggy +evt_002710,u_0391,session_abandoned,2026-06-13T09:03:00Z,u_0391_s01,ins_u_0391_002,{},v2.3.0-buggy +evt_002711,u_0666,feature_used,2026-06-13T09:03:00Z,u_0666_s02,ins_u_0666_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002712,u_0401,profile_saved,2026-06-13T09:04:00Z,u_0401_s01,ins_u_0401_003,{},v2.3.0-buggy +evt_002713,u_0153,onboarding_completed,2026-06-13T09:05:00Z,u_0153_s01,ins_u_0153_003,{},v2.3.0-buggy +evt_002714,u_0286,onboarding_step_viewed,2026-06-13T09:05:00Z,u_0286_s01,ins_u_0286_004,{},v2.3.0-buggy +evt_002715,u_0383,signup_started,2026-06-13T09:05:00Z,u_0383_s01,ins_u_0383_001,{},v2.3.0-buggy +evt_002716,u_0174,activation_completed,2026-06-13T09:07:00Z,u_0174_s01,ins_u_0174_006,{},v2.3.0-buggy +evt_002717,u_0328,onboarding_completed,2026-06-13T09:07:00Z,u_0328_s01,ins_u_0328_005,"{""completed_at"": ""2026-06-13T09:00:00Z""}",v2.3.0-buggy +evt_002718,u_0383,signup_completed,2026-06-13T09:09:00Z,u_0383_s01,ins_u_0383_002,{},v2.3.0-buggy +evt_002719,u_0153,session_abandoned,2026-06-13T09:10:00Z,u_0153_s01,ins_u_0153_004,{},v2.3.0-buggy +evt_002720,u_0401,onboarding_step_viewed,2026-06-13T09:10:00Z,u_0401_s01,ins_u_0401_004,{},v2.3.0-buggy +evt_002721,u_0170,signup_started,2026-06-13T09:11:00Z,u_0170_s01,ins_u_0170_001,{},v2.3.0-buggy +evt_002722,u_0688,feature_used,2026-06-13T09:14:00Z,u_0688_s01,ins_u_0688_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002723,u_0383,profile_saved,2026-06-13T09:15:00Z,u_0383_s01,ins_u_0383_003,{},v2.3.0-buggy +evt_002724,u_0528,signup_started,2026-06-13T09:15:00Z,u_0528_s01,ins_u_0528_001,{},v2.3.0-buggy +evt_002725,u_0170,session_abandoned,2026-06-13T09:17:00Z,u_0170_s01,ins_u_0170_002,{},v2.3.0-buggy +evt_002726,u_0380,signup_started,2026-06-13T09:17:00Z,u_0380_s01,ins_u_0380_001,{},v2.3.0-buggy +evt_002727,u_0528,signup_completed,2026-06-13T09:17:00Z,u_0528_s01,ins_u_0528_002,{},v2.3.0-buggy +evt_002728,u_0401,feature_used,2026-06-13T09:19:00Z,u_0401_s01,ins_u_0401_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002729,u_0338,onboarding_completed,2026-06-13T09:20:00Z,u_0338_s01,ins_u_0338_005,"{""completed_at"": ""2026-06-13T09:07:00Z""}",v2.3.0-buggy +evt_002730,u_0380,signup_completed,2026-06-13T09:20:00Z,u_0380_s01,ins_u_0380_002,{},v2.3.0-buggy +evt_002731,u_0528,onboarding_completed,2026-06-13T09:20:00Z,u_0528_s01,ins_u_0528_003,{},v2.3.0-buggy +evt_002732,u_0286,feature_used,2026-06-13T09:21:00Z,u_0286_s01,ins_u_0286_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002733,u_0383,onboarding_step_viewed,2026-06-13T09:21:00Z,u_0383_s01,ins_u_0383_004,{},v2.3.0-buggy +evt_002734,u_0794,signup_started,2026-06-13T09:22:00Z,u_0794_s01,ins_u_0794_001,{},v2.3.0-buggy +evt_002735,u_0528,session_abandoned,2026-06-13T09:26:00Z,u_0528_s01,ins_u_0528_004,{},v2.3.0-buggy +evt_002736,u_0380,profile_saved,2026-06-13T09:27:00Z,u_0380_s01,ins_u_0380_003,{},v2.3.0-buggy +evt_002737,u_0688,onboarding_completed,2026-06-13T09:27:00Z,u_0688_s01,ins_u_0688_006,"{""completed_at"": ""2026-06-13T09:32:00Z""}",v2.3.0-buggy +evt_002738,u_0794,session_abandoned,2026-06-13T09:27:00Z,u_0794_s01,ins_u_0794_002,{},v2.3.0-buggy +evt_002739,u_0380,profile_saved,2026-06-13T09:28:00Z,u_0380_s01,ins_u_0380_003,{},v2.3.0-buggy +evt_002740,u_0380,onboarding_step_viewed,2026-06-13T09:30:00Z,u_0380_s01,ins_u_0380_004,{},v2.3.0-buggy +evt_002741,u_0138,onboarding_completed,2026-06-13T09:31:00Z,u_0138_s01,ins_u_0138_007,"{""completed_at"": ""2026-06-13T09:19:00Z""}",v2.3.0-buggy +evt_002742,u_0138,activation_completed,2026-06-13T09:34:00Z,u_0138_s01,ins_u_0138_008,{},v2.3.0-buggy +evt_002743,u_0393,signup_started,2026-06-13T09:34:00Z,u_0393_s01,ins_u_0393_001,{},v2.3.0-buggy +evt_002744,u_0338,activation_completed,2026-06-13T09:35:00Z,u_0338_s01,ins_u_0338_006,{},v2.3.0-buggy +evt_002745,u_0245,signup_started,2026-06-13T09:38:00Z,u_0245_s01,ins_u_0245_001,{},v2.3.0-buggy +evt_002746,u_0286,onboarding_completed,2026-06-13T09:38:00Z,u_0286_s01,ins_u_0286_006,"{""completed_at"": ""2026-06-13T09:26:00Z""}",v2.3.0-buggy +evt_002747,u_0393,signup_completed,2026-06-13T09:38:00Z,u_0393_s01,ins_u_0393_002,{},v2.3.0-buggy +evt_002748,u_0383,feature_used,2026-06-13T09:39:00Z,u_0383_s01,ins_u_0383_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002749,u_0393,upsell_modal_shown,2026-06-13T09:39:00Z,u_0393_s01,ins_u_0393_003,{},v2.3.0-buggy +evt_002750,u_0393,onboarding_completed,2026-06-13T09:39:00Z,u_0393_s01,ins_u_0393_004,{},v2.3.0-buggy +evt_002751,u_0200,signup_started,2026-06-13T09:42:00Z,u_0200_s01,ins_u_0200_001,{},v2.3.0-buggy +evt_002752,u_0539,signup_started,2026-06-13T09:44:00Z,u_0539_s01,ins_u_0539_001,{},v2.3.0-buggy +evt_002753,u_0245,session_abandoned,2026-06-13T09:46:00Z,u_0245_s01,ins_u_0245_002,{},v2.3.0-buggy +evt_002754,u_0401,onboarding_completed,2026-06-13T09:46:00Z,u_0401_s01,ins_u_0401_006,"{""completed_at"": ""2026-06-13T09:33:00Z""}",v2.3.0-buggy +evt_002755,u_0539,signup_completed,2026-06-13T09:46:00Z,u_0539_s01,ins_u_0539_002,{},v2.3.0-buggy +evt_002756,u_0393,session_abandoned,2026-06-13T09:47:00Z,u_0393_s01,ins_u_0393_005,{},v2.3.0-buggy +evt_002757,u_0200,signup_completed,2026-06-13T09:50:00Z,u_0200_s01,ins_u_0200_002,{},v2.3.0-buggy +evt_002758,u_0539,profile_saved,2026-06-13T09:51:00Z,u_0539_s01,ins_u_0539_003,{},v2.3.0-buggy +evt_002759,u_0383,onboarding_completed,2026-06-13T09:52:00Z,u_0383_s01,ins_u_0383_006,"{""completed_at"": ""2026-06-13T09:42:00Z""}",v2.3.0-buggy +evt_002760,u_0359,signup_started,2026-06-13T09:54:00Z,u_0359_s01,ins_u_0359_001,{},v2.3.0-buggy +evt_002761,u_0359,signup_completed,2026-06-13T09:57:00Z,u_0359_s01,ins_u_0359_002,{},v2.3.0-buggy +evt_002762,u_0539,onboarding_step_viewed,2026-06-13T09:57:00Z,u_0539_s01,ins_u_0539_004,{},v2.3.0-buggy +evt_002763,u_0200,profile_saved,2026-06-13T09:59:00Z,u_0200_s01,ins_u_0200_003,{},v2.3.0-buggy +evt_002764,u_0286,activation_completed,2026-06-13T10:01:00Z,u_0286_s01,ins_u_0286_007,{},v2.3.0-buggy +evt_002765,u_0448,signup_started,2026-06-13T10:04:00Z,u_0448_s01,ins_u_0448_001,{},v2.3.0-buggy +evt_002766,u_0200,onboarding_step_viewed,2026-06-13T10:05:00Z,u_0200_s01,ins_u_0200_004,{},v2.3.0-buggy +evt_002767,u_0359,profile_saved,2026-06-13T10:06:00Z,u_0359_s01,ins_u_0359_003,{},v2.3.0-buggy +evt_002768,u_0732,signup_started,2026-06-13T10:07:00Z,u_0732_s01,ins_u_0732_001,{},v2.3.0-buggy +evt_002769,u_0448,session_abandoned,2026-06-13T10:08:00Z,u_0448_s01,ins_u_0448_002,{},v2.3.0-buggy +evt_002770,u_0359,onboarding_step_viewed,2026-06-13T10:10:00Z,u_0359_s01,ins_u_0359_004,{},v2.3.0-buggy +evt_002771,u_0380,onboarding_completed,2026-06-13T10:10:00Z,u_0380_s01,ins_u_0380_005,"{""completed_at"": ""2026-06-13T09:59:00Z""}",v2.3.0-buggy +evt_002772,u_0539,feature_used,2026-06-13T10:11:00Z,u_0539_s01,ins_u_0539_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002773,u_0732,signup_completed,2026-06-13T10:13:00Z,u_0732_s01,ins_u_0732_002,{},v2.3.0-buggy +evt_002774,u_0359,feature_used,2026-06-13T10:14:00Z,u_0359_s01,ins_u_0359_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002775,u_0145,signup_started,2026-06-13T10:17:00Z,u_0145_s01,ins_u_0145_001,{},v2.3.0-buggy +evt_002776,u_0675,signup_started,2026-06-13T10:17:00Z,u_0675_s01,ins_u_0675_001,{},v2.3.0-buggy +evt_002777,u_0732,profile_saved,2026-06-13T10:17:00Z,u_0732_s01,ins_u_0732_003,{},v2.3.0-buggy +evt_002778,u_0675,signup_completed,2026-06-13T10:19:00Z,u_0675_s01,ins_u_0675_002,{},v2.3.0-buggy +evt_002779,u_0732,onboarding_step_viewed,2026-06-13T10:19:00Z,u_0732_s01,ins_u_0732_004,{},v2.3.0-buggy +evt_002780,u_0539,onboarding_completed,2026-06-13T10:21:00Z,u_0539_s01,ins_u_0539_006,"{""completed_at"": ""2026-06-13T10:17:00Z""}",v2.3.0-buggy +evt_002781,u_0145,signup_completed,2026-06-13T10:23:00Z,u_0145_s01,ins_u_0145_002,{},v2.3.0-buggy +evt_002782,u_0675,profile_saved,2026-06-13T10:26:00Z,u_0675_s01,ins_u_0675_003,{},v2.3.0-buggy +evt_002783,u_0675,error_shown,2026-06-13T10:27:00Z,u_0675_s01,ins_u_0675_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002784,u_0145,profile_saved,2026-06-13T10:29:00Z,u_0145_s01,ins_u_0145_003,{},v2.3.0-buggy +evt_002785,u_0145,onboarding_step_viewed,2026-06-13T10:33:00Z,u_0145_s01,ins_u_0145_004,{},v2.3.0-buggy +evt_002786,u_0473,signup_started,2026-06-13T10:33:00Z,u_0473_s01,ins_u_0473_001,{},v2.3.0-buggy +evt_002787,u_0160,signup_started,2026-06-13T10:36:00Z,u_0160_s01,ins_u_0160_001,{},v2.3.0-buggy +evt_002788,u_0200,onboarding_completed,2026-06-13T10:36:00Z,u_0200_s01,ins_u_0200_005,"{""completed_at"": ""2026-06-13T10:28:00Z""}",v2.3.0-buggy +evt_002789,u_0566,signup_started,2026-06-13T10:36:00Z,u_0566_s01,ins_u_0566_001,{},v2.3.0-buggy +evt_002790,u_0473,session_abandoned,2026-06-13T10:37:00Z,u_0473_s01,ins_u_0473_002,{},v2.3.0-buggy +evt_002791,u_0566,signup_completed,2026-06-13T10:38:00Z,u_0566_s01,ins_u_0566_002,{},v2.3.0-buggy +evt_002792,u_0675,feature_used,2026-06-13T10:38:00Z,u_0675_s01,ins_u_0675_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002793,u_0160,signup_completed,2026-06-13T10:39:00Z,u_0160_s01,ins_u_0160_002,{},v2.3.0-buggy +evt_002794,u_0417,signup_started,2026-06-13T10:39:00Z,u_0417_s01,ins_u_0417_001,{},v2.3.0-buggy +evt_002795,u_0145,feature_used,2026-06-13T10:40:00Z,u_0145_s01,ins_u_0145_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002796,u_0566,onboarding_completed,2026-06-13T10:40:00Z,u_0566_s01,ins_u_0566_003,{},v2.3.0-buggy +evt_002797,u_0123,return_visit,2026-06-13T10:42:00Z,u_0123_s02,ins_u_0123_008,{},v2.3.0-buggy +evt_002798,u_0732,onboarding_completed,2026-06-13T10:43:00Z,u_0732_s01,ins_u_0732_005,"{""completed_at"": ""2026-06-13T10:57:00Z""}",v2.3.0-buggy +evt_002799,u_0566,session_abandoned,2026-06-13T10:44:00Z,u_0566_s01,ins_u_0566_004,{},v2.3.0-buggy +evt_002800,u_0160,profile_saved,2026-06-13T10:45:00Z,u_0160_s01,ins_u_0160_003,{},v2.3.0-buggy +evt_002801,u_0359,onboarding_completed,2026-06-13T10:45:00Z,u_0359_s01,ins_u_0359_006,"{""completed_at"": ""2026-06-13T10:32:00Z""}",v2.3.0-buggy +evt_002802,u_0359,onboarding_completed,2026-06-13T10:46:00Z,u_0359_s01,ins_u_0359_006,"{""completed_at"": ""2026-06-13T10:32:00Z""}",v2.3.0-buggy +evt_002803,u_0417,session_abandoned,2026-06-13T10:46:00Z,u_0417_s01,ins_u_0417_002,{},v2.3.0-buggy +evt_002804,u_0123,feature_used,2026-06-13T10:47:00Z,u_0123_s02,ins_u_0123_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002805,u_0160,onboarding_step_viewed,2026-06-13T10:48:00Z,u_0160_s01,ins_u_0160_004,{},v2.3.0-buggy +evt_002806,u_0433,signup_started,2026-06-13T10:52:00Z,u_0433_s01,ins_u_0433_001,{},v2.3.0-buggy +evt_002807,u_0433,signup_completed,2026-06-13T10:53:00Z,u_0433_s01,ins_u_0433_002,{},v2.3.0-buggy +evt_002808,u_0675,onboarding_completed,2026-06-13T10:53:00Z,u_0675_s01,ins_u_0675_006,"{""completed_at"": ""2026-06-13T11:00:00Z""}",v2.3.0-buggy +evt_002809,u_0692,signup_started,2026-06-13T10:53:00Z,u_0692_s01,ins_u_0692_001,{},v2.3.0-buggy +evt_002810,u_0145,onboarding_completed,2026-06-13T10:58:00Z,u_0145_s01,ins_u_0145_006,"{""completed_at"": ""2026-06-13T11:05:00Z""}",v2.3.0-buggy +evt_002811,u_0692,session_abandoned,2026-06-13T10:58:00Z,u_0692_s01,ins_u_0692_002,{},v2.3.0-buggy +evt_002812,u_0433,profile_saved,2026-06-13T11:00:00Z,u_0433_s01,ins_u_0433_003,{},v2.3.0-buggy +evt_002813,u_0576,signup_started,2026-06-13T11:00:00Z,u_0576_s01,ins_u_0576_001,{},v2.3.0-buggy +evt_002814,u_0296,signup_started,2026-06-13T11:01:00Z,u_0296_s01,ins_u_0296_001,{},v2.3.0-buggy +evt_002815,u_0576,session_abandoned,2026-06-13T11:01:00Z,u_0576_s01,ins_u_0576_002,{},v2.3.0-buggy +evt_002816,u_0296,signup_completed,2026-06-13T11:03:00Z,u_0296_s01,ins_u_0296_002,{},v2.3.0-buggy +evt_002817,u_0433,onboarding_step_viewed,2026-06-13T11:03:00Z,u_0433_s01,ins_u_0433_004,{},v2.3.0-buggy +evt_002818,u_0296,profile_saved,2026-06-13T11:09:00Z,u_0296_s01,ins_u_0296_003,{},v2.3.0-buggy +evt_002819,u_0200,activation_completed,2026-06-13T11:12:00Z,u_0200_s01,ins_u_0200_006,{},v2.3.0-buggy +evt_002820,u_0296,onboarding_step_viewed,2026-06-13T11:14:00Z,u_0296_s01,ins_u_0296_004,{},v2.3.0-buggy +evt_002821,u_0160,onboarding_completed,2026-06-13T11:16:00Z,u_0160_s01,ins_u_0160_005,"{""completed_at"": ""2026-06-13T11:21:00Z""}",v2.3.0-buggy +evt_002822,u_0171,signup_started,2026-06-13T11:17:00Z,u_0171_s01,ins_u_0171_001,{},v2.3.0-buggy +evt_002823,u_0296,feature_used,2026-06-13T11:17:00Z,u_0296_s01,ins_u_0296_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002824,u_0635,signup_started,2026-06-13T11:21:00Z,u_0635_s01,ins_u_0635_001,{},v2.3.0-buggy +evt_002825,u_0549,signup_started,2026-06-13T11:22:00Z,u_0549_s01,ins_u_0549_001,{},v2.3.0-buggy +evt_002826,u_0171,signup_completed,2026-06-13T11:24:00Z,u_0171_s01,ins_u_0171_002,{},v2.3.0-buggy +evt_002827,u_0433,feature_used,2026-06-13T11:25:00Z,u_0433_s01,ins_u_0433_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002828,u_0467,signup_started,2026-06-13T11:26:00Z,u_0467_s01,ins_u_0467_001,{},v2.3.0-buggy +evt_002829,u_0549,signup_completed,2026-06-13T11:27:00Z,u_0549_s01,ins_u_0549_002,{},v2.3.0-buggy +evt_002830,u_0635,signup_completed,2026-06-13T11:29:00Z,u_0635_s01,ins_u_0635_002,{},v2.3.0-buggy +evt_002831,u_0549,profile_saved,2026-06-13T11:31:00Z,u_0549_s01,ins_u_0549_003,{},v2.3.0-buggy +evt_002832,u_0467,signup_completed,2026-06-13T11:32:00Z,u_0467_s01,ins_u_0467_002,{},v2.3.0-buggy +evt_002833,u_0549,onboarding_step_viewed,2026-06-13T11:33:00Z,u_0549_s01,ins_u_0549_004,{},v2.3.0-buggy +evt_002834,u_0635,profile_saved,2026-06-13T11:33:00Z,u_0635_s01,ins_u_0635_003,{},v2.3.0-buggy +evt_002835,u_0171,profile_saved,2026-06-13T11:34:00Z,u_0171_s01,ins_u_0171_003,{},v2.3.0-buggy +evt_002836,u_0145,activation_completed,2026-06-13T11:36:00Z,u_0145_s01,ins_u_0145_007,{},v2.3.0-buggy +evt_002837,u_0171,onboarding_step_viewed,2026-06-13T11:36:00Z,u_0171_s01,ins_u_0171_004,{},v2.3.0-buggy +evt_002838,u_0467,profile_saved,2026-06-13T11:36:00Z,u_0467_s01,ins_u_0467_003,{},v2.3.0-buggy +evt_002839,u_0635,onboarding_step_viewed,2026-06-13T11:38:00Z,u_0635_s01,ins_u_0635_004,{},v2.3.0-buggy +evt_002840,u_0433,onboarding_completed,2026-06-13T11:42:00Z,u_0433_s01,ins_u_0433_006,"{""completed_at"": ""2026-06-13T11:26:00Z""}",v2.3.0-buggy +evt_002841,u_0467,onboarding_step_viewed,2026-06-13T11:42:00Z,u_0467_s01,ins_u_0467_004,{},v2.3.0-buggy +evt_002842,u_0171,feature_used,2026-06-13T11:47:00Z,u_0171_s01,ins_u_0171_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002843,u_0635,feature_used,2026-06-13T11:48:00Z,u_0635_s01,ins_u_0635_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002844,u_0296,onboarding_completed,2026-06-13T11:49:00Z,u_0296_s01,ins_u_0296_006,"{""completed_at"": ""2026-06-13T11:46:00Z""}",v2.3.0-buggy +evt_002845,u_0296,activation_completed,2026-06-13T11:57:00Z,u_0296_s01,ins_u_0296_007,{},v2.3.0-buggy +evt_002846,u_0622,signup_started,2026-06-13T12:02:00Z,u_0622_s01,ins_u_0622_001,{},v2.3.0-buggy +evt_002847,u_0133,signup_started,2026-06-13T12:03:00Z,u_0133_s01,ins_u_0133_001,{},v2.3.0-buggy +evt_002848,u_0635,onboarding_completed,2026-06-13T12:07:00Z,u_0635_s01,ins_u_0635_006,"{""completed_at"": ""2026-06-13T12:09:00Z""}",v2.3.0-buggy +evt_002849,u_0549,onboarding_completed,2026-06-13T12:08:00Z,u_0549_s01,ins_u_0549_005,"{""completed_at"": ""2026-06-13T12:10:00Z""}",v2.3.0-buggy +evt_002850,u_0622,signup_completed,2026-06-13T12:08:00Z,u_0622_s01,ins_u_0622_002,{},v2.3.0-buggy +evt_002851,u_0133,session_abandoned,2026-06-13T12:09:00Z,u_0133_s01,ins_u_0133_002,{},v2.3.0-buggy +evt_002852,u_0768,signup_started,2026-06-13T12:13:00Z,u_0768_s01,ins_u_0768_001,{},v2.3.0-buggy +evt_002853,u_0171,onboarding_completed,2026-06-13T12:14:00Z,u_0171_s01,ins_u_0171_006,"{""completed_at"": ""2026-06-13T12:00:00Z""}",v2.3.0-buggy +evt_002854,u_0636,signup_started,2026-06-13T12:14:00Z,u_0636_s01,ins_u_0636_001,{},v2.3.0-buggy +evt_002855,u_0768,signup_completed,2026-06-13T12:16:00Z,u_0768_s01,ins_u_0768_002,{},v2.3.0-buggy +evt_002856,u_0622,profile_saved,2026-06-13T12:18:00Z,u_0622_s01,ins_u_0622_003,{},v2.3.0-buggy +evt_002857,u_0768,onboarding_completed,2026-06-13T12:18:00Z,u_0768_s01,ins_u_0768_003,{},v2.3.0-buggy +evt_002858,u_0467,onboarding_completed,2026-06-13T12:19:00Z,u_0467_s01,ins_u_0467_005,"{""completed_at"": ""2026-06-13T12:13:00Z""}",v2.3.0-buggy +evt_002859,u_0636,signup_completed,2026-06-13T12:21:00Z,u_0636_s01,ins_u_0636_002,{},v2.3.0-buggy +evt_002860,u_0768,session_abandoned,2026-06-13T12:21:00Z,u_0768_s01,ins_u_0768_004,{},v2.3.0-buggy +evt_002861,u_0800,signup_started,2026-06-13T12:21:00Z,u_0800_s01,ins_u_0800_001,{},v2.3.0-buggy +evt_002862,u_0730,signup_started,2026-06-13T12:22:00Z,u_0730_s01,ins_u_0730_001,{},v2.3.0-buggy +evt_002863,u_0154,signup_started,2026-06-13T12:24:00Z,u_0154_s01,ins_u_0154_001,{},v2.3.0-buggy +evt_002864,u_0636,profile_saved,2026-06-13T12:25:00Z,u_0636_s01,ins_u_0636_003,{},v2.3.0-buggy +evt_002865,u_0154,signup_completed,2026-06-13T12:26:00Z,u_0154_s01,ins_u_0154_002,{},v2.3.0-buggy +evt_002866,u_0800,signup_completed,2026-06-13T12:27:00Z,u_0800_s01,ins_u_0800_002,{},v2.3.0-buggy +evt_002867,u_0636,onboarding_step_viewed,2026-06-13T12:28:00Z,u_0636_s01,ins_u_0636_004,{},v2.3.0-buggy +evt_002868,u_0549,activation_completed,2026-06-13T12:29:00Z,u_0549_s01,ins_u_0549_006,{},v2.3.0-buggy +evt_002869,u_0622,feature_used,2026-06-13T12:29:00Z,u_0622_s01,ins_u_0622_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_002870,u_0730,signup_completed,2026-06-13T12:29:00Z,u_0730_s01,ins_u_0730_002,{},v2.3.0-buggy +evt_002871,u_0171,activation_completed,2026-06-13T12:30:00Z,u_0171_s01,ins_u_0171_007,{},v2.3.0-buggy +evt_002872,u_0800,profile_saved,2026-06-13T12:30:00Z,u_0800_s01,ins_u_0800_003,{},v2.3.0-buggy +evt_002873,u_0800,onboarding_step_viewed,2026-06-13T12:33:00Z,u_0800_s01,ins_u_0800_004,{},v2.3.0-buggy +evt_002874,u_0137,signup_started,2026-06-13T12:35:00Z,u_0137_s01,ins_u_0137_001,{},v2.3.0-buggy +evt_002875,u_0154,profile_saved,2026-06-13T12:36:00Z,u_0154_s01,ins_u_0154_003,{},v2.3.0-buggy +evt_002876,u_0137,signup_completed,2026-06-13T12:37:00Z,u_0137_s01,ins_u_0137_002,{},v2.3.0-buggy +evt_002877,u_0730,session_abandoned,2026-06-13T12:37:00Z,u_0730_s01,ins_u_0730_003,{},v2.3.0-buggy +evt_002878,u_0154,onboarding_step_viewed,2026-06-13T12:39:00Z,u_0154_s01,ins_u_0154_004,{},v2.3.0-buggy +evt_002879,u_0237,signup_started,2026-06-13T12:40:00Z,u_0237_s01,ins_u_0237_001,{},v2.3.0-buggy +evt_002880,u_0636,feature_used,2026-06-13T12:40:00Z,u_0636_s01,ins_u_0636_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002881,u_0058,signup_started,2026-06-13T12:41:00Z,u_0058_s01,ins_u_0058_001,{},v2.3.0-buggy +evt_002882,u_0124,return_visit,2026-06-13T12:44:00Z,u_0124_s02,ins_u_0124_007,{},v2.3.0-buggy +evt_002883,u_0095,signup_started,2026-06-13T12:45:00Z,u_0095_s01,ins_u_0095_001,{},v2.3.0-buggy +evt_002884,u_0137,session_abandoned,2026-06-13T12:46:00Z,u_0137_s01,ins_u_0137_003,{},v2.3.0-buggy +evt_002885,u_0237,signup_completed,2026-06-13T12:47:00Z,u_0237_s01,ins_u_0237_002,{},v2.3.0-buggy +evt_002886,u_0352,signup_started,2026-06-13T12:47:00Z,u_0352_s01,ins_u_0352_001,{},v2.3.0-buggy +evt_002887,u_0622,onboarding_completed,2026-06-13T12:47:00Z,u_0622_s01,ins_u_0622_005,"{""completed_at"": ""2026-06-13T12:56:00Z""}",v2.3.0-buggy +evt_002888,u_0154,feature_used,2026-06-13T12:48:00Z,u_0154_s01,ins_u_0154_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002889,u_0237,onboarding_completed,2026-06-13T12:48:00Z,u_0237_s01,ins_u_0237_003,{},v2.3.0-buggy +evt_002890,u_0058,signup_completed,2026-06-13T12:49:00Z,u_0058_s01,ins_u_0058_002,{},v2.3.0-buggy +evt_002891,u_0352,signup_completed,2026-06-13T12:49:00Z,u_0352_s01,ins_u_0352_002,{},v2.3.0-buggy +evt_002892,u_0095,signup_completed,2026-06-13T12:50:00Z,u_0095_s01,ins_u_0095_002,{},v2.3.0-buggy +evt_002893,u_0095,profile_saved,2026-06-13T12:52:00Z,u_0095_s01,ins_u_0095_003,{},v2.3.0-buggy +evt_002894,u_0237,session_abandoned,2026-06-13T12:52:00Z,u_0237_s01,ins_u_0237_004,{},v2.3.0-buggy +evt_002895,u_0352,profile_saved,2026-06-13T12:53:00Z,u_0352_s01,ins_u_0352_003,{},v2.3.0-buggy +evt_002896,u_0352,onboarding_step_viewed,2026-06-13T12:55:00Z,u_0352_s01,ins_u_0352_004,{},v2.3.0-buggy +evt_002897,u_0636,onboarding_completed,2026-06-13T12:55:00Z,u_0636_s01,ins_u_0636_006,"{""completed_at"": ""2026-06-13T12:59:00Z""}",v2.3.0-buggy +evt_002898,u_0058,profile_saved,2026-06-13T12:59:00Z,u_0058_s01,ins_u_0058_003,{},v2.3.0-buggy +evt_002899,u_0800,onboarding_completed,2026-06-13T13:01:00Z,u_0800_s01,ins_u_0800_005,"{""completed_at"": ""2026-06-13T13:09:00Z""}",v2.3.0-buggy +evt_002900,u_0095,feature_used,2026-06-13T13:03:00Z,u_0095_s01,ins_u_0095_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002901,u_0130,signup_started,2026-06-13T13:06:00Z,u_0130_s01,ins_u_0130_001,{},v2.3.0-buggy +evt_002902,u_0365,signup_started,2026-06-13T13:09:00Z,u_0365_s01,ins_u_0365_001,{},v2.3.0-buggy +evt_002903,u_0622,activation_completed,2026-06-13T13:09:00Z,u_0622_s01,ins_u_0622_006,{},v2.3.0-buggy +evt_002904,u_0130,signup_completed,2026-06-13T13:10:00Z,u_0130_s01,ins_u_0130_002,{},v2.3.0-buggy +evt_002905,u_0365,signup_completed,2026-06-13T13:10:00Z,u_0365_s01,ins_u_0365_002,{},v2.3.0-buggy +evt_002906,u_0348,signup_started,2026-06-13T13:12:00Z,u_0348_s01,ins_u_0348_001,{},v2.3.0-buggy +evt_002907,u_0058,feature_used,2026-06-13T13:13:00Z,u_0058_s01,ins_u_0058_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_002908,u_0129,signup_started,2026-06-13T13:14:00Z,u_0129_s01,ins_u_0129_001,{},v2.3.0-buggy +evt_002909,u_0130,profile_saved,2026-06-13T13:15:00Z,u_0130_s01,ins_u_0130_003,{},v2.3.0-buggy +evt_002910,u_0315,signup_started,2026-06-13T13:17:00Z,u_0315_s01,ins_u_0315_001,{},v2.3.0-buggy +evt_002911,u_0129,signup_completed,2026-06-13T13:18:00Z,u_0129_s01,ins_u_0129_002,{},v2.3.0-buggy +evt_002912,u_0348,signup_completed,2026-06-13T13:19:00Z,u_0348_s01,ins_u_0348_002,{},v2.3.0-buggy +evt_002913,u_0365,profile_saved,2026-06-13T13:19:00Z,u_0365_s01,ins_u_0365_003,{},v2.3.0-buggy +evt_002914,u_0129,onboarding_completed,2026-06-13T13:20:00Z,u_0129_s01,ins_u_0129_003,{},v2.3.0-buggy +evt_002915,u_0315,signup_completed,2026-06-13T13:20:00Z,u_0315_s01,ins_u_0315_002,{},v2.3.0-buggy +evt_002916,u_0352,onboarding_completed,2026-06-13T13:20:00Z,u_0352_s01,ins_u_0352_005,"{""completed_at"": ""2026-06-13T13:22:00Z""}",v2.3.0-buggy +evt_002917,u_0130,onboarding_step_viewed,2026-06-13T13:21:00Z,u_0130_s01,ins_u_0130_004,{},v2.3.0-buggy +evt_002918,u_0348,profile_saved,2026-06-13T13:22:00Z,u_0348_s01,ins_u_0348_003,{},v2.3.0-buggy +evt_002919,u_0365,onboarding_step_viewed,2026-06-13T13:23:00Z,u_0365_s01,ins_u_0365_004,{},v2.3.0-buggy +evt_002920,u_0348,onboarding_step_viewed,2026-06-13T13:24:00Z,u_0348_s01,ins_u_0348_004,{},v2.3.0-buggy +evt_002921,u_0095,onboarding_completed,2026-06-13T13:26:00Z,u_0095_s01,ins_u_0095_005,"{""completed_at"": ""2026-06-13T13:30:00Z""}",v2.3.0-buggy +evt_002922,u_0129,session_abandoned,2026-06-13T13:26:00Z,u_0129_s01,ins_u_0129_004,{},v2.3.0-buggy +evt_002923,u_0315,profile_saved,2026-06-13T13:27:00Z,u_0315_s01,ins_u_0315_003,{},v2.3.0-buggy +evt_002924,u_0487,signup_started,2026-06-13T13:27:00Z,u_0487_s01,ins_u_0487_001,{},v2.3.0-buggy +evt_002925,u_0315,onboarding_step_viewed,2026-06-13T13:29:00Z,u_0315_s01,ins_u_0315_004,{},v2.3.0-buggy +evt_002926,u_0503,signup_started,2026-06-13T13:32:00Z,u_0503_s01,ins_u_0503_001,{},v2.3.0-buggy +evt_002927,u_0487,signup_completed,2026-06-13T13:35:00Z,u_0487_s01,ins_u_0487_002,{},v2.3.0-buggy +evt_002928,u_0503,signup_completed,2026-06-13T13:36:00Z,u_0503_s01,ins_u_0503_002,{},v2.3.0-buggy +evt_002929,u_0058,onboarding_completed,2026-06-13T13:39:00Z,u_0058_s01,ins_u_0058_005,"{""completed_at"": ""2026-06-13T13:31:00Z""}",v2.3.0-buggy +evt_002930,u_0348,feature_used,2026-06-13T13:42:00Z,u_0348_s01,ins_u_0348_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002931,u_0735,signup_started,2026-06-13T13:42:00Z,u_0735_s01,ins_u_0735_001,{},v2.3.0-buggy +evt_002932,u_0487,profile_saved,2026-06-13T13:43:00Z,u_0487_s01,ins_u_0487_003,{},v2.3.0-buggy +evt_002933,u_0503,profile_saved,2026-06-13T13:44:00Z,u_0503_s01,ins_u_0503_003,{},v2.3.0-buggy +evt_002934,u_0168,signup_started,2026-06-13T13:45:00Z,u_0168_s01,ins_u_0168_001,{},v2.3.0-buggy +evt_002935,u_0487,onboarding_step_viewed,2026-06-13T13:46:00Z,u_0487_s01,ins_u_0487_004,{},v2.3.0-buggy +evt_002936,u_0748,signup_started,2026-06-13T13:46:00Z,u_0748_s01,ins_u_0748_001,{},v2.3.0-buggy +evt_002937,u_0315,feature_used,2026-06-13T13:47:00Z,u_0315_s01,ins_u_0315_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002938,u_0735,signup_completed,2026-06-13T13:47:00Z,u_0735_s01,ins_u_0735_002,{},v2.3.0-buggy +evt_002939,u_0748,signup_completed,2026-06-13T13:49:00Z,u_0748_s01,ins_u_0748_002,{},v2.3.0-buggy +evt_002940,u_0503,onboarding_step_viewed,2026-06-13T13:50:00Z,u_0503_s01,ins_u_0503_004,{},v2.3.0-buggy +evt_002941,u_0541,signup_started,2026-06-13T13:51:00Z,u_0541_s01,ins_u_0541_001,{},v2.3.0-buggy +evt_002942,u_0168,signup_completed,2026-06-13T13:52:00Z,u_0168_s01,ins_u_0168_002,{},v2.3.0-buggy +evt_002943,u_0130,onboarding_completed,2026-06-13T13:53:00Z,u_0130_s01,ins_u_0130_005,"{""completed_at"": ""2026-06-13T13:51:00Z""}",v2.3.0-buggy +evt_002944,u_0168,upsell_modal_shown,2026-06-13T13:53:00Z,u_0168_s01,ins_u_0168_003,{},v2.3.0-buggy +evt_002945,u_0735,session_abandoned,2026-06-13T13:53:00Z,u_0735_s01,ins_u_0735_003,{},v2.3.0-buggy +evt_002946,u_0748,profile_saved,2026-06-13T13:53:00Z,u_0748_s01,ins_u_0748_003,{},v2.3.0-buggy +evt_002947,u_0168,profile_saved,2026-06-13T13:55:00Z,u_0168_s01,ins_u_0168_004,{},v2.3.0-buggy +evt_002948,u_0541,signup_completed,2026-06-13T13:55:00Z,u_0541_s01,ins_u_0541_002,{},v2.3.0-buggy +evt_002949,u_0168,error_shown,2026-06-13T13:56:00Z,u_0168_s01,ins_u_0168_005,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_002950,u_0095,activation_completed,2026-06-13T13:57:00Z,u_0095_s01,ins_u_0095_006,{},v2.3.0-buggy +evt_002951,u_0348,onboarding_completed,2026-06-13T13:57:00Z,u_0348_s01,ins_u_0348_006,"{""completed_at"": ""2026-06-13T13:55:00Z""}",v2.3.0-buggy +evt_002952,u_0748,onboarding_step_viewed,2026-06-13T13:57:00Z,u_0748_s01,ins_u_0748_004,{},v2.3.0-buggy +evt_002953,u_0503,feature_used,2026-06-13T14:00:00Z,u_0503_s01,ins_u_0503_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002954,u_0748,feature_used,2026-06-13T14:00:00Z,u_0748_s01,ins_u_0748_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_002955,u_0168,onboarding_step_viewed,2026-06-13T14:01:00Z,u_0168_s01,ins_u_0168_006,{},v2.3.0-buggy +evt_002956,u_0365,onboarding_completed,2026-06-13T14:01:00Z,u_0365_s01,ins_u_0365_005,"{""completed_at"": ""2026-06-13T13:49:00Z""}",v2.3.0-buggy +evt_002957,u_0315,onboarding_completed,2026-06-13T14:02:00Z,u_0315_s01,ins_u_0315_006,"{""completed_at"": ""2026-06-13T13:59:00Z""}",v2.3.0-buggy +evt_002958,u_0487,feature_used,2026-06-13T14:02:00Z,u_0487_s01,ins_u_0487_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002959,u_0541,profile_saved,2026-06-13T14:05:00Z,u_0541_s01,ins_u_0541_003,{},v2.3.0-buggy +evt_002960,u_0777,signup_started,2026-06-13T14:05:00Z,u_0777_s01,ins_u_0777_001,{},v2.3.0-buggy +evt_002961,u_0777,signup_completed,2026-06-13T14:09:00Z,u_0777_s01,ins_u_0777_002,{},v2.3.0-buggy +evt_002962,u_0541,onboarding_step_viewed,2026-06-13T14:11:00Z,u_0541_s01,ins_u_0541_004,{},v2.3.0-buggy +evt_002963,u_0503,onboarding_completed,2026-06-13T14:13:00Z,u_0503_s01,ins_u_0503_006,"{""completed_at"": ""2026-06-13T14:10:00Z""}",v2.3.0-buggy +evt_002964,u_0777,session_abandoned,2026-06-13T14:18:00Z,u_0777_s01,ins_u_0777_003,{},v2.3.0-buggy +evt_002965,u_0168,feature_used,2026-06-13T14:19:00Z,u_0168_s01,ins_u_0168_007,"{""feature"": ""board""}",v2.3.0-buggy +evt_002966,u_0546,signup_started,2026-06-13T14:19:00Z,u_0546_s01,ins_u_0546_001,{},v2.3.0-buggy +evt_002967,u_0771,signup_started,2026-06-13T14:19:00Z,u_0771_s01,ins_u_0771_001,{},v2.3.0-buggy +evt_002968,u_0542,signup_started,2026-06-13T14:21:00Z,u_0542_s01,ins_u_0542_001,{},v2.3.0-buggy +evt_002969,u_0542,signup_completed,2026-06-13T14:26:00Z,u_0542_s01,ins_u_0542_002,{},v2.3.0-buggy +evt_002970,u_0771,session_abandoned,2026-06-13T14:26:00Z,u_0771_s01,ins_u_0771_002,{},v2.3.0-buggy +evt_002971,u_0546,signup_completed,2026-06-13T14:27:00Z,u_0546_s01,ins_u_0546_002,{},v2.3.0-buggy +evt_002972,u_0168,onboarding_completed,2026-06-13T14:30:00Z,u_0168_s01,ins_u_0168_008,"{""completed_at"": ""2026-06-13T14:31:00Z""}",v2.3.0-buggy +evt_002973,u_0541,feature_used,2026-06-13T14:30:00Z,u_0541_s01,ins_u_0541_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_002974,u_0542,profile_saved,2026-06-13T14:31:00Z,u_0542_s01,ins_u_0542_003,{},v2.3.0-buggy +evt_002975,u_0159,signup_started,2026-06-13T14:32:00Z,u_0159_s01,ins_u_0159_001,{},v2.3.0-buggy +evt_002976,u_0644,signup_started,2026-06-13T14:32:00Z,u_0644_s01,ins_u_0644_001,{},v2.3.0-buggy +evt_002977,u_0454,signup_started,2026-06-13T14:34:00Z,u_0454_s01,ins_u_0454_001,{},v2.3.0-buggy +evt_002978,u_0546,profile_saved,2026-06-13T14:34:00Z,u_0546_s01,ins_u_0546_003,{},v2.3.0-buggy +evt_002979,u_0748,onboarding_completed,2026-06-13T14:34:00Z,u_0748_s01,ins_u_0748_006,"{""completed_at"": ""2026-06-13T14:25:00Z""}",v2.3.0-buggy +evt_002980,u_0159,signup_completed,2026-06-13T14:38:00Z,u_0159_s01,ins_u_0159_002,{},v2.3.0-buggy +evt_002981,u_0644,session_abandoned,2026-06-13T14:38:00Z,u_0644_s01,ins_u_0644_002,{},v2.3.0-buggy +evt_002982,u_0365,activation_completed,2026-06-13T14:39:00Z,u_0365_s01,ins_u_0365_006,{},v2.3.0-buggy +evt_002983,u_0159,onboarding_completed,2026-06-13T14:40:00Z,u_0159_s01,ins_u_0159_003,{},v2.3.0-buggy +evt_002984,u_0546,onboarding_step_viewed,2026-06-13T14:40:00Z,u_0546_s01,ins_u_0546_004,{},v2.3.0-buggy +evt_002985,u_0159,onboarding_completed,2026-06-13T14:41:00Z,u_0159_s01,ins_u_0159_003,{},v2.3.0-buggy +evt_002986,u_0454,signup_completed,2026-06-13T14:41:00Z,u_0454_s01,ins_u_0454_002,{},v2.3.0-buggy +evt_002987,u_0541,onboarding_completed,2026-06-13T14:41:00Z,u_0541_s01,ins_u_0541_006,"{""completed_at"": ""2026-06-13T14:40:00Z""}",v2.3.0-buggy +evt_002988,u_0454,profile_saved,2026-06-13T14:43:00Z,u_0454_s01,ins_u_0454_003,{},v2.3.0-buggy +evt_002989,u_0159,session_abandoned,2026-06-13T14:46:00Z,u_0159_s01,ins_u_0159_004,{},v2.3.0-buggy +evt_002990,u_0454,onboarding_step_viewed,2026-06-13T14:46:00Z,u_0454_s01,ins_u_0454_004,{},v2.3.0-buggy +evt_002991,u_0048,signup_started,2026-06-13T14:58:00Z,u_0048_s01,ins_u_0048_001,{},v2.3.0-buggy +evt_002992,u_0055,signup_started,2026-06-13T14:58:00Z,u_0055_s01,ins_u_0055_001,{},v2.3.0-buggy +evt_002993,u_0602,signup_started,2026-06-13T15:00:00Z,u_0602_s01,ins_u_0602_001,{},v2.3.0-buggy +evt_002994,u_0048,signup_completed,2026-06-13T15:02:00Z,u_0048_s01,ins_u_0048_002,{},v2.3.0-buggy +evt_002995,u_0055,signup_completed,2026-06-13T15:02:00Z,u_0055_s01,ins_u_0055_002,{},v2.3.0-buggy +evt_002996,u_0602,signup_completed,2026-06-13T15:03:00Z,u_0602_s01,ins_u_0602_002,{},v2.3.0-buggy +evt_002997,u_0048,session_abandoned,2026-06-13T15:06:00Z,u_0048_s01,ins_u_0048_003,{},v2.3.0-buggy +evt_002998,u_0602,profile_saved,2026-06-13T15:07:00Z,u_0602_s01,ins_u_0602_003,{},v2.3.0-buggy +evt_002999,u_0055,session_abandoned,2026-06-13T15:08:00Z,u_0055_s01,ins_u_0055_003,{},v2.3.0-buggy +evt_003000,u_0454,feature_used,2026-06-13T15:08:00Z,u_0454_s01,ins_u_0454_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003001,u_0542,onboarding_completed,2026-06-13T15:08:00Z,u_0542_s01,ins_u_0542_004,"{""completed_at"": ""2026-06-13T15:01:00Z""}",v2.3.0-buggy +evt_003002,u_0238,signup_started,2026-06-13T15:09:00Z,u_0238_s01,ins_u_0238_001,{},v2.3.0-buggy +evt_003003,u_0248,signup_started,2026-06-13T15:09:00Z,u_0248_s01,ins_u_0248_001,{},v2.3.0-buggy +evt_003004,u_0546,onboarding_completed,2026-06-13T15:09:00Z,u_0546_s01,ins_u_0546_005,"{""completed_at"": ""2026-06-13T15:10:00Z""}",v2.3.0-buggy +evt_003005,u_0402,signup_started,2026-06-13T15:10:00Z,u_0402_s01,ins_u_0402_001,{},v2.3.0-buggy +evt_003006,u_0454,onboarding_completed,2026-06-13T15:11:00Z,u_0454_s01,ins_u_0454_006,"{""completed_at"": ""2026-06-13T15:13:00Z""}",v2.3.0-buggy +evt_003007,u_0402,signup_completed,2026-06-13T15:12:00Z,u_0402_s01,ins_u_0402_002,{},v2.3.0-buggy +evt_003008,u_0248,signup_completed,2026-06-13T15:13:00Z,u_0248_s01,ins_u_0248_002,{},v2.3.0-buggy +evt_003009,u_0602,onboarding_step_viewed,2026-06-13T15:13:00Z,u_0602_s01,ins_u_0602_004,{},v2.3.0-buggy +evt_003010,u_0402,onboarding_completed,2026-06-13T15:14:00Z,u_0402_s01,ins_u_0402_003,{},v2.3.0-buggy +evt_003011,u_0726,signup_started,2026-06-13T15:14:00Z,u_0726_s01,ins_u_0726_001,{},v2.3.0-buggy +evt_003012,u_0238,signup_completed,2026-06-13T15:17:00Z,u_0238_s01,ins_u_0238_002,{},v2.3.0-buggy +evt_003013,u_0248,profile_saved,2026-06-13T15:17:00Z,u_0248_s01,ins_u_0248_003,{},v2.3.0-buggy +evt_003014,u_0483,signup_started,2026-06-13T15:19:00Z,u_0483_s01,ins_u_0483_001,{},v2.3.0-buggy +evt_003015,u_0402,session_abandoned,2026-06-13T15:20:00Z,u_0402_s01,ins_u_0402_004,{},v2.3.0-buggy +evt_003016,u_0726,signup_completed,2026-06-13T15:20:00Z,u_0726_s01,ins_u_0726_002,{},v2.3.0-buggy +evt_003017,u_0726,upsell_modal_shown,2026-06-13T15:21:00Z,u_0726_s01,ins_u_0726_003,{},v2.3.0-buggy +evt_003018,u_0248,onboarding_step_viewed,2026-06-13T15:22:00Z,u_0248_s01,ins_u_0248_004,{},v2.3.0-buggy +evt_003019,u_0602,feature_used,2026-06-13T15:23:00Z,u_0602_s01,ins_u_0602_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003020,u_0238,profile_saved,2026-06-13T15:24:00Z,u_0238_s01,ins_u_0238_003,{},v2.3.0-buggy +evt_003021,u_0483,signup_completed,2026-06-13T15:25:00Z,u_0483_s01,ins_u_0483_002,{},v2.3.0-buggy +evt_003022,u_0046,signup_started,2026-06-13T15:26:00Z,u_0046_s01,ins_u_0046_001,{},v2.3.0-buggy +evt_003023,u_0726,profile_saved,2026-06-13T15:27:00Z,u_0726_s01,ins_u_0726_004,{},v2.3.0-buggy +evt_003024,u_0046,signup_completed,2026-06-13T15:29:00Z,u_0046_s01,ins_u_0046_002,{},v2.3.0-buggy +evt_003025,u_0279,signup_started,2026-06-13T15:29:00Z,u_0279_s01,ins_u_0279_001,{},v2.3.0-buggy +evt_003026,u_0726,onboarding_step_viewed,2026-06-13T15:29:00Z,u_0726_s01,ins_u_0726_005,{},v2.3.0-buggy +evt_003027,u_0279,signup_completed,2026-06-13T15:32:00Z,u_0279_s01,ins_u_0279_002,{},v2.3.0-buggy +evt_003028,u_0483,profile_saved,2026-06-13T15:33:00Z,u_0483_s01,ins_u_0483_003,{},v2.3.0-buggy +evt_003029,u_0542,activation_completed,2026-06-13T15:34:00Z,u_0542_s01,ins_u_0542_005,{},v2.3.0-buggy +evt_003030,u_0483,onboarding_step_viewed,2026-06-13T15:35:00Z,u_0483_s01,ins_u_0483_004,{},v2.3.0-buggy +evt_003031,u_0046,session_abandoned,2026-06-13T15:36:00Z,u_0046_s01,ins_u_0046_003,{},v2.3.0-buggy +evt_003032,u_0279,profile_saved,2026-06-13T15:40:00Z,u_0279_s01,ins_u_0279_003,{},v2.3.0-buggy +evt_003033,u_0483,feature_used,2026-06-13T15:41:00Z,u_0483_s01,ins_u_0483_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003034,u_0004,signup_started,2026-06-13T15:43:00Z,u_0004_s01,ins_u_0004_001,{},v2.3.0-buggy +evt_003035,u_0602,onboarding_completed,2026-06-13T15:44:00Z,u_0602_s01,ins_u_0602_006,"{""completed_at"": ""2026-06-13T15:37:00Z""}",v2.3.0-buggy +evt_003036,u_0004,signup_completed,2026-06-13T15:45:00Z,u_0004_s01,ins_u_0004_002,{},v2.3.0-buggy +evt_003037,u_0665,signup_started,2026-06-13T15:46:00Z,u_0665_s01,ins_u_0665_001,{},v2.3.0-buggy +evt_003038,u_0004,profile_saved,2026-06-13T15:53:00Z,u_0004_s01,ins_u_0004_003,{},v2.3.0-buggy +evt_003039,u_0454,activation_completed,2026-06-13T15:53:00Z,u_0454_s01,ins_u_0454_007,{},v2.3.0-buggy +evt_003040,u_0665,signup_completed,2026-06-13T15:54:00Z,u_0665_s01,ins_u_0665_002,{},v2.3.0-buggy +evt_003041,u_0004,onboarding_step_viewed,2026-06-13T15:55:00Z,u_0004_s01,ins_u_0004_004,{},v2.3.0-buggy +evt_003042,u_0004,onboarding_step_viewed,2026-06-13T15:56:00Z,u_0004_s01,ins_u_0004_004,{},v2.3.0-buggy +evt_003043,u_0248,onboarding_completed,2026-06-13T15:57:00Z,u_0248_s01,ins_u_0248_005,"{""completed_at"": ""2026-06-13T15:44:00Z""}",v2.3.0-buggy +evt_003044,u_0004,feature_used,2026-06-13T16:00:00Z,u_0004_s01,ins_u_0004_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003045,u_0036,signup_started,2026-06-13T16:00:00Z,u_0036_s01,ins_u_0036_001,{},v2.3.0-buggy +evt_003046,u_0625,signup_started,2026-06-13T16:00:00Z,u_0625_s01,ins_u_0625_001,{},v2.3.0-buggy +evt_003047,u_0623,signup_started,2026-06-13T16:02:00Z,u_0623_s01,ins_u_0623_001,{},v2.3.0-buggy +evt_003048,u_0665,session_abandoned,2026-06-13T16:02:00Z,u_0665_s01,ins_u_0665_003,{},v2.3.0-buggy +evt_003049,u_0036,signup_completed,2026-06-13T16:03:00Z,u_0036_s01,ins_u_0036_002,{},v2.3.0-buggy +evt_003050,u_0625,signup_completed,2026-06-13T16:03:00Z,u_0625_s01,ins_u_0625_002,{},v2.3.0-buggy +evt_003051,u_0726,onboarding_completed,2026-06-13T16:03:00Z,u_0726_s01,ins_u_0726_006,"{""completed_at"": ""2026-06-13T16:07:00Z""}",v2.3.0-buggy +evt_003052,u_0036,upsell_modal_shown,2026-06-13T16:04:00Z,u_0036_s01,ins_u_0036_003,{},v2.3.0-buggy +evt_003053,u_0625,onboarding_completed,2026-06-13T16:06:00Z,u_0625_s01,ins_u_0625_003,{},v2.3.0-buggy +evt_003054,u_0036,profile_saved,2026-06-13T16:07:00Z,u_0036_s01,ins_u_0036_004,{},v2.3.0-buggy +evt_003055,u_0623,signup_completed,2026-06-13T16:08:00Z,u_0623_s01,ins_u_0623_002,{},v2.3.0-buggy +evt_003056,u_0036,onboarding_step_viewed,2026-06-13T16:12:00Z,u_0036_s01,ins_u_0036_005,{},v2.3.0-buggy +evt_003057,u_0625,session_abandoned,2026-06-13T16:12:00Z,u_0625_s01,ins_u_0625_004,{},v2.3.0-buggy +evt_003058,u_0238,activation_completed,2026-06-13T16:13:00Z,u_0238_s01,ins_u_0238_004,{},v2.3.0-buggy +evt_003059,u_0279,onboarding_completed,2026-06-13T16:15:00Z,u_0279_s01,ins_u_0279_004,"{""completed_at"": ""2026-06-13T16:10:00Z""}",v2.3.0-buggy +evt_003060,u_0483,onboarding_completed,2026-06-13T16:15:00Z,u_0483_s01,ins_u_0483_006,"{""completed_at"": ""2026-06-13T16:11:00Z""}",v2.3.0-buggy +evt_003061,u_0623,profile_saved,2026-06-13T16:17:00Z,u_0623_s01,ins_u_0623_003,{},v2.3.0-buggy +evt_003062,u_0035,signup_started,2026-06-13T16:18:00Z,u_0035_s01,ins_u_0035_001,{},v2.3.0-buggy +evt_003063,u_0396,signup_started,2026-06-13T16:18:00Z,u_0396_s01,ins_u_0396_001,{},v2.3.0-buggy +evt_003064,u_0396,signup_completed,2026-06-13T16:19:00Z,u_0396_s01,ins_u_0396_002,{},v2.3.0-buggy +evt_003065,u_0004,onboarding_completed,2026-06-13T16:20:00Z,u_0004_s01,ins_u_0004_006,"{""completed_at"": ""2026-06-13T16:25:00Z""}",v2.3.0-buggy +evt_003066,u_0125,signup_started,2026-06-13T16:21:00Z,u_0125_s01,ins_u_0125_001,{},v2.3.0-buggy +evt_003067,u_0125,signup_completed,2026-06-13T16:22:00Z,u_0125_s01,ins_u_0125_002,{},v2.3.0-buggy +evt_003068,u_0623,onboarding_step_viewed,2026-06-13T16:22:00Z,u_0623_s01,ins_u_0623_004,{},v2.3.0-buggy +evt_003069,u_0035,signup_completed,2026-06-13T16:25:00Z,u_0035_s01,ins_u_0035_002,{},v2.3.0-buggy +evt_003070,u_0036,feature_used,2026-06-13T16:26:00Z,u_0036_s01,ins_u_0036_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_003071,u_0248,activation_completed,2026-06-13T16:26:00Z,u_0248_s01,ins_u_0248_006,{},v2.3.0-buggy +evt_003072,u_0396,profile_saved,2026-06-13T16:28:00Z,u_0396_s01,ins_u_0396_003,{},v2.3.0-buggy +evt_003073,u_0035,session_abandoned,2026-06-13T16:29:00Z,u_0035_s01,ins_u_0035_003,{},v2.3.0-buggy +evt_003074,u_0273,signup_started,2026-06-13T16:29:00Z,u_0273_s01,ins_u_0273_001,{},v2.3.0-buggy +evt_003075,u_0396,error_shown,2026-06-13T16:29:00Z,u_0396_s01,ins_u_0396_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003076,u_0125,profile_saved,2026-06-13T16:30:00Z,u_0125_s01,ins_u_0125_003,{},v2.3.0-buggy +evt_003077,u_0396,onboarding_step_viewed,2026-06-13T16:32:00Z,u_0396_s01,ins_u_0396_005,{},v2.3.0-buggy +evt_003078,u_0125,onboarding_step_viewed,2026-06-13T16:35:00Z,u_0125_s01,ins_u_0125_004,{},v2.3.0-buggy +evt_003079,u_0624,signup_started,2026-06-13T16:35:00Z,u_0624_s01,ins_u_0624_001,{},v2.3.0-buggy +evt_003080,u_0273,signup_completed,2026-06-13T16:36:00Z,u_0273_s01,ins_u_0273_002,{},v2.3.0-buggy +evt_003081,u_0273,onboarding_completed,2026-06-13T16:38:00Z,u_0273_s01,ins_u_0273_003,{},v2.3.0-buggy +evt_003082,u_0396,feature_used,2026-06-13T16:38:00Z,u_0396_s01,ins_u_0396_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_003083,u_0125,feature_used,2026-06-13T16:39:00Z,u_0125_s01,ins_u_0125_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003084,u_0624,signup_completed,2026-06-13T16:39:00Z,u_0624_s01,ins_u_0624_002,{},v2.3.0-buggy +evt_003085,u_0273,session_abandoned,2026-06-13T16:40:00Z,u_0273_s01,ins_u_0273_004,{},v2.3.0-buggy +evt_003086,u_0483,activation_completed,2026-06-13T16:40:00Z,u_0483_s01,ins_u_0483_007,{},v2.3.0-buggy +evt_003087,u_0036,onboarding_completed,2026-06-13T16:44:00Z,u_0036_s01,ins_u_0036_007,"{""completed_at"": ""2026-06-13T16:45:00Z""}",v2.3.0-buggy +evt_003088,u_0624,profile_saved,2026-06-13T16:49:00Z,u_0624_s01,ins_u_0624_003,{},v2.3.0-buggy +evt_003089,u_0624,onboarding_step_viewed,2026-06-13T16:53:00Z,u_0624_s01,ins_u_0624_004,{},v2.3.0-buggy +evt_003090,u_0518,signup_started,2026-06-13T16:55:00Z,u_0518_s01,ins_u_0518_001,{},v2.3.0-buggy +evt_003091,u_0396,onboarding_completed,2026-06-13T16:56:00Z,u_0396_s01,ins_u_0396_007,"{""completed_at"": ""2026-06-13T17:05:00Z""}",v2.3.0-buggy +evt_003092,u_0125,onboarding_completed,2026-06-13T16:58:00Z,u_0125_s01,ins_u_0125_006,"{""completed_at"": ""2026-06-13T17:09:00Z""}",v2.3.0-buggy +evt_003093,u_0624,feature_used,2026-06-13T16:59:00Z,u_0624_s01,ins_u_0624_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003094,u_0518,signup_completed,2026-06-13T17:02:00Z,u_0518_s01,ins_u_0518_002,{},v2.3.0-buggy +evt_003095,u_0195,signup_started,2026-06-13T17:08:00Z,u_0195_s01,ins_u_0195_001,{},v2.3.0-buggy +evt_003096,u_0021,signup_started,2026-06-13T17:09:00Z,u_0021_s01,ins_u_0021_001,{},v2.3.0-buggy +evt_003097,u_0518,profile_saved,2026-06-13T17:10:00Z,u_0518_s01,ins_u_0518_003,{},v2.3.0-buggy +evt_003098,u_0021,signup_completed,2026-06-13T17:13:00Z,u_0021_s01,ins_u_0021_002,{},v2.3.0-buggy +evt_003099,u_0518,onboarding_step_viewed,2026-06-13T17:15:00Z,u_0518_s01,ins_u_0518_004,{},v2.3.0-buggy +evt_003100,u_0021,profile_saved,2026-06-13T17:16:00Z,u_0021_s01,ins_u_0021_003,{},v2.3.0-buggy +evt_003101,u_0078,signup_started,2026-06-13T17:16:00Z,u_0078_s01,ins_u_0078_001,{},v2.3.0-buggy +evt_003102,u_0195,signup_completed,2026-06-13T17:16:00Z,u_0195_s01,ins_u_0195_002,{},v2.3.0-buggy +evt_003103,u_0754,signup_started,2026-06-13T17:16:00Z,u_0754_s01,ins_u_0754_001,{},v2.3.0-buggy +evt_003104,u_0021,onboarding_step_viewed,2026-06-13T17:20:00Z,u_0021_s01,ins_u_0021_004,{},v2.3.0-buggy +evt_003105,u_0195,profile_saved,2026-06-13T17:21:00Z,u_0195_s01,ins_u_0195_003,{},v2.3.0-buggy +evt_003106,u_0623,activation_completed,2026-06-13T17:22:00Z,u_0623_s01,ins_u_0623_005,{},v2.3.0-buggy +evt_003107,u_0078,signup_completed,2026-06-13T17:23:00Z,u_0078_s01,ins_u_0078_002,{},v2.3.0-buggy +evt_003108,u_0356,signup_started,2026-06-13T17:23:00Z,u_0356_s01,ins_u_0356_001,{},v2.3.0-buggy +evt_003109,u_0754,session_abandoned,2026-06-13T17:23:00Z,u_0754_s01,ins_u_0754_002,{},v2.3.0-buggy +evt_003110,u_0078,upsell_modal_shown,2026-06-13T17:24:00Z,u_0078_s01,ins_u_0078_003,{},v2.3.0-buggy +evt_003111,u_0195,onboarding_step_viewed,2026-06-13T17:26:00Z,u_0195_s01,ins_u_0195_004,{},v2.3.0-buggy +evt_003112,u_0624,onboarding_completed,2026-06-13T17:26:00Z,u_0624_s01,ins_u_0624_006,"{""completed_at"": ""2026-06-13T17:26:00Z""}",v2.3.0-buggy +evt_003113,u_0356,signup_completed,2026-06-13T17:27:00Z,u_0356_s01,ins_u_0356_002,{},v2.3.0-buggy +evt_003114,u_0078,profile_saved,2026-06-13T17:29:00Z,u_0078_s01,ins_u_0078_004,{},v2.3.0-buggy +evt_003115,u_0356,session_abandoned,2026-06-13T17:31:00Z,u_0356_s01,ins_u_0356_003,{},v2.3.0-buggy +evt_003116,u_0195,feature_used,2026-06-13T17:32:00Z,u_0195_s01,ins_u_0195_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003117,u_0356,session_abandoned,2026-06-13T17:32:00Z,u_0356_s01,ins_u_0356_003,{},v2.3.0-buggy +evt_003118,u_0078,onboarding_step_viewed,2026-06-13T17:33:00Z,u_0078_s01,ins_u_0078_005,{},v2.3.0-buggy +evt_003119,u_0409,signup_started,2026-06-13T17:33:00Z,u_0409_s01,ins_u_0409_001,{},v2.3.0-buggy +evt_003120,u_0396,activation_completed,2026-06-13T17:34:00Z,u_0396_s01,ins_u_0396_008,{},v2.3.0-buggy +evt_003121,u_0409,signup_completed,2026-06-13T17:35:00Z,u_0409_s01,ins_u_0409_002,{},v2.3.0-buggy +evt_003122,u_0518,feature_used,2026-06-13T17:35:00Z,u_0518_s01,ins_u_0518_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003123,u_0078,feature_used,2026-06-13T17:36:00Z,u_0078_s01,ins_u_0078_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_003124,u_0409,profile_saved,2026-06-13T17:38:00Z,u_0409_s01,ins_u_0409_003,{},v2.3.0-buggy +evt_003125,u_0021,feature_used,2026-06-13T17:39:00Z,u_0021_s01,ins_u_0021_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003126,u_0409,profile_saved,2026-06-13T17:39:00Z,u_0409_s01,ins_u_0409_003,{},v2.3.0-buggy +evt_003127,u_0409,onboarding_step_viewed,2026-06-13T17:40:00Z,u_0409_s01,ins_u_0409_004,{},v2.3.0-buggy +evt_003128,u_0513,signup_started,2026-06-13T17:42:00Z,u_0513_s01,ins_u_0513_001,{},v2.3.0-buggy +evt_003129,u_0446,signup_started,2026-06-13T17:44:00Z,u_0446_s01,ins_u_0446_001,{},v2.3.0-buggy +evt_003130,u_0513,signup_completed,2026-06-13T17:44:00Z,u_0513_s01,ins_u_0513_002,{},v2.3.0-buggy +evt_003131,u_0059,signup_started,2026-06-13T17:45:00Z,u_0059_s01,ins_u_0059_001,{},v2.3.0-buggy +evt_003132,u_0446,signup_completed,2026-06-13T17:45:00Z,u_0446_s01,ins_u_0446_002,{},v2.3.0-buggy +evt_003133,u_0059,signup_completed,2026-06-13T17:48:00Z,u_0059_s01,ins_u_0059_002,{},v2.3.0-buggy +evt_003134,u_0012,signup_started,2026-06-13T17:53:00Z,u_0012_s01,ins_u_0012_001,{},v2.3.0-buggy +evt_003135,u_0446,session_abandoned,2026-06-13T17:54:00Z,u_0446_s01,ins_u_0446_003,{},v2.3.0-buggy +evt_003136,u_0513,profile_saved,2026-06-13T17:54:00Z,u_0513_s01,ins_u_0513_003,{},v2.3.0-buggy +evt_003137,u_0518,onboarding_completed,2026-06-13T17:55:00Z,u_0518_s01,ins_u_0518_006,"{""completed_at"": ""2026-06-13T17:36:00Z""}",v2.3.0-buggy +evt_003138,u_0059,profile_saved,2026-06-13T17:56:00Z,u_0059_s01,ins_u_0059_003,{},v2.3.0-buggy +evt_003139,u_0012,signup_completed,2026-06-13T17:57:00Z,u_0012_s01,ins_u_0012_002,{},v2.3.0-buggy +evt_003140,u_0513,onboarding_step_viewed,2026-06-13T17:59:00Z,u_0513_s01,ins_u_0513_004,{},v2.3.0-buggy +evt_003141,u_0012,profile_saved,2026-06-13T18:00:00Z,u_0012_s01,ins_u_0012_003,{},v2.3.0-buggy +evt_003142,u_0012,error_shown,2026-06-13T18:01:00Z,u_0012_s01,ins_u_0012_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003143,u_0059,onboarding_step_viewed,2026-06-13T18:01:00Z,u_0059_s01,ins_u_0059_004,{},v2.3.0-buggy +evt_003144,u_0066,signup_started,2026-06-13T18:04:00Z,u_0066_s01,ins_u_0066_001,{},v2.3.0-buggy +evt_003145,u_0195,onboarding_completed,2026-06-13T18:05:00Z,u_0195_s01,ins_u_0195_006,"{""completed_at"": ""2026-06-13T17:53:00Z""}",v2.3.0-buggy +evt_003146,u_0012,onboarding_step_viewed,2026-06-13T18:06:00Z,u_0012_s01,ins_u_0012_005,{},v2.3.0-buggy +evt_003147,u_0078,onboarding_completed,2026-06-13T18:08:00Z,u_0078_s01,ins_u_0078_007,"{""completed_at"": ""2026-06-13T18:03:00Z""}",v2.3.0-buggy +evt_003148,u_0066,signup_completed,2026-06-13T18:11:00Z,u_0066_s01,ins_u_0066_002,{},v2.3.0-buggy +evt_003149,u_0693,signup_started,2026-06-13T18:12:00Z,u_0693_s01,ins_u_0693_001,{},v2.3.0-buggy +evt_003150,u_0409,onboarding_completed,2026-06-13T18:13:00Z,u_0409_s01,ins_u_0409_005,"{""completed_at"": ""2026-06-13T18:10:00Z""}",v2.3.0-buggy +evt_003151,u_0693,signup_completed,2026-06-13T18:13:00Z,u_0693_s01,ins_u_0693_002,{},v2.3.0-buggy +evt_003152,u_0287,signup_started,2026-06-13T18:17:00Z,u_0287_s01,ins_u_0287_001,{},v2.3.0-buggy +evt_003153,u_0693,profile_saved,2026-06-13T18:17:00Z,u_0693_s01,ins_u_0693_003,{},v2.3.0-buggy +evt_003154,u_0693,error_shown,2026-06-13T18:18:00Z,u_0693_s01,ins_u_0693_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003155,u_0059,feature_used,2026-06-13T18:19:00Z,u_0059_s01,ins_u_0059_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003156,u_0066,profile_saved,2026-06-13T18:19:00Z,u_0066_s01,ins_u_0066_003,{},v2.3.0-buggy +evt_003157,u_0657,signup_started,2026-06-13T18:19:00Z,u_0657_s01,ins_u_0657_001,{},v2.3.0-buggy +evt_003158,u_0739,signup_started,2026-06-13T18:19:00Z,u_0739_s01,ins_u_0739_001,{},v2.3.0-buggy +evt_003159,u_0657,signup_completed,2026-06-13T18:21:00Z,u_0657_s01,ins_u_0657_002,{},v2.3.0-buggy +evt_003160,u_0693,onboarding_step_viewed,2026-06-13T18:21:00Z,u_0693_s01,ins_u_0693_005,{},v2.3.0-buggy +evt_003161,u_0739,signup_completed,2026-06-13T18:21:00Z,u_0739_s01,ins_u_0739_002,{},v2.3.0-buggy +evt_003162,u_0531,signup_started,2026-06-13T18:24:00Z,u_0531_s01,ins_u_0531_001,{},v2.3.0-buggy +evt_003163,u_0287,signup_completed,2026-06-13T18:25:00Z,u_0287_s01,ins_u_0287_002,{},v2.3.0-buggy +evt_003164,u_0366,signup_started,2026-06-13T18:26:00Z,u_0366_s01,ins_u_0366_001,{},v2.3.0-buggy +evt_003165,u_0657,profile_saved,2026-06-13T18:26:00Z,u_0657_s01,ins_u_0657_003,{},v2.3.0-buggy +evt_003166,u_0287,onboarding_completed,2026-06-13T18:27:00Z,u_0287_s01,ins_u_0287_003,{},v2.3.0-buggy +evt_003167,u_0476,signup_started,2026-06-13T18:27:00Z,u_0476_s01,ins_u_0476_001,{},v2.3.0-buggy +evt_003168,u_0513,onboarding_completed,2026-06-13T18:28:00Z,u_0513_s01,ins_u_0513_005,"{""completed_at"": ""2026-06-13T18:34:00Z""}",v2.3.0-buggy +evt_003169,u_0739,profile_saved,2026-06-13T18:29:00Z,u_0739_s01,ins_u_0739_003,{},v2.3.0-buggy +evt_003170,u_0287,session_abandoned,2026-06-13T18:30:00Z,u_0287_s01,ins_u_0287_004,{},v2.3.0-buggy +evt_003171,u_0366,session_abandoned,2026-06-13T18:30:00Z,u_0366_s01,ins_u_0366_002,{},v2.3.0-buggy +evt_003172,u_0657,onboarding_step_viewed,2026-06-13T18:30:00Z,u_0657_s01,ins_u_0657_004,{},v2.3.0-buggy +evt_003173,u_0531,signup_completed,2026-06-13T18:32:00Z,u_0531_s01,ins_u_0531_002,{},v2.3.0-buggy +evt_003174,u_0476,session_abandoned,2026-06-13T18:35:00Z,u_0476_s01,ins_u_0476_002,{},v2.3.0-buggy +evt_003175,u_0739,onboarding_step_viewed,2026-06-13T18:35:00Z,u_0739_s01,ins_u_0739_004,{},v2.3.0-buggy +evt_003176,u_0059,onboarding_completed,2026-06-13T18:39:00Z,u_0059_s01,ins_u_0059_006,"{""completed_at"": ""2026-06-13T18:27:00Z""}",v2.3.0-buggy +evt_003177,u_0066,feature_used,2026-06-13T18:40:00Z,u_0066_s01,ins_u_0066_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_003178,u_0531,profile_saved,2026-06-13T18:40:00Z,u_0531_s01,ins_u_0531_003,{},v2.3.0-buggy +evt_003179,u_0255,signup_started,2026-06-13T18:42:00Z,u_0255_s01,ins_u_0255_001,{},v2.3.0-buggy +evt_003180,u_0531,onboarding_step_viewed,2026-06-13T18:42:00Z,u_0531_s01,ins_u_0531_004,{},v2.3.0-buggy +evt_003181,u_0012,onboarding_completed,2026-06-13T18:43:00Z,u_0012_s01,ins_u_0012_006,"{""completed_at"": ""2026-06-13T18:31:00Z""}",v2.3.0-buggy +evt_003182,u_0255,signup_completed,2026-06-13T18:46:00Z,u_0255_s01,ins_u_0255_002,{},v2.3.0-buggy +evt_003183,u_0255,onboarding_completed,2026-06-13T18:47:00Z,u_0255_s01,ins_u_0255_003,{},v2.3.0-buggy +evt_003184,u_0066,onboarding_completed,2026-06-13T18:51:00Z,u_0066_s01,ins_u_0066_005,"{""completed_at"": ""2026-06-13T18:49:00Z""}",v2.3.0-buggy +evt_003185,u_0657,feature_used,2026-06-13T18:51:00Z,u_0657_s01,ins_u_0657_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003186,u_0739,feature_used,2026-06-13T18:51:00Z,u_0739_s01,ins_u_0739_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003187,u_0255,session_abandoned,2026-06-13T18:52:00Z,u_0255_s01,ins_u_0255_004,{},v2.3.0-buggy +evt_003188,u_0017,signup_started,2026-06-13T18:54:00Z,u_0017_s01,ins_u_0017_001,{},v2.3.0-buggy +evt_003189,u_0310,signup_started,2026-06-13T18:54:00Z,u_0310_s01,ins_u_0310_001,{},v2.3.0-buggy +evt_003190,u_0522,signup_started,2026-06-13T18:55:00Z,u_0522_s01,ins_u_0522_001,{},v2.3.0-buggy +evt_003191,u_0252,signup_started,2026-06-13T18:59:00Z,u_0252_s01,ins_u_0252_001,{},v2.3.0-buggy +evt_003192,u_0310,signup_completed,2026-06-13T19:00:00Z,u_0310_s01,ins_u_0310_002,{},v2.3.0-buggy +evt_003193,u_0252,signup_completed,2026-06-13T19:01:00Z,u_0252_s01,ins_u_0252_002,{},v2.3.0-buggy +evt_003194,u_0017,signup_completed,2026-06-13T19:02:00Z,u_0017_s01,ins_u_0017_002,{},v2.3.0-buggy +evt_003195,u_0252,onboarding_completed,2026-06-13T19:02:00Z,u_0252_s01,ins_u_0252_003,{},v2.3.0-buggy +evt_003196,u_0522,signup_completed,2026-06-13T19:02:00Z,u_0522_s01,ins_u_0522_002,{},v2.3.0-buggy +evt_003197,u_0739,onboarding_completed,2026-06-13T19:04:00Z,u_0739_s01,ins_u_0739_006,"{""completed_at"": ""2026-06-13T19:04:00Z""}",v2.3.0-buggy +evt_003198,u_0252,session_abandoned,2026-06-13T19:07:00Z,u_0252_s01,ins_u_0252_004,{},v2.3.0-buggy +evt_003199,u_0310,profile_saved,2026-06-13T19:08:00Z,u_0310_s01,ins_u_0310_003,{},v2.3.0-buggy +evt_003200,u_0374,signup_started,2026-06-13T19:09:00Z,u_0374_s01,ins_u_0374_001,{},v2.3.0-buggy +evt_003201,u_0513,activation_completed,2026-06-13T19:09:00Z,u_0513_s01,ins_u_0513_006,{},v2.3.0-buggy +evt_003202,u_0161,signup_started,2026-06-13T19:10:00Z,u_0161_s01,ins_u_0161_001,{},v2.3.0-buggy +evt_003203,u_0657,onboarding_completed,2026-06-13T19:10:00Z,u_0657_s01,ins_u_0657_006,"{""completed_at"": ""2026-06-13T19:02:00Z""}",v2.3.0-buggy +evt_003204,u_0017,session_abandoned,2026-06-13T19:11:00Z,u_0017_s01,ins_u_0017_003,{},v2.3.0-buggy +evt_003205,u_0161,session_abandoned,2026-06-13T19:12:00Z,u_0161_s01,ins_u_0161_002,{},v2.3.0-buggy +evt_003206,u_0522,profile_saved,2026-06-13T19:12:00Z,u_0522_s01,ins_u_0522_003,{},v2.3.0-buggy +evt_003207,u_0310,onboarding_step_viewed,2026-06-13T19:13:00Z,u_0310_s01,ins_u_0310_004,{},v2.3.0-buggy +evt_003208,u_0374,signup_completed,2026-06-13T19:13:00Z,u_0374_s01,ins_u_0374_002,{},v2.3.0-buggy +evt_003209,u_0374,profile_saved,2026-06-13T19:15:00Z,u_0374_s01,ins_u_0374_003,{},v2.3.0-buggy +evt_003210,u_0059,activation_completed,2026-06-13T19:16:00Z,u_0059_s01,ins_u_0059_007,{},v2.3.0-buggy +evt_003211,u_0522,onboarding_step_viewed,2026-06-13T19:17:00Z,u_0522_s01,ins_u_0522_004,{},v2.3.0-buggy +evt_003212,u_0374,onboarding_step_viewed,2026-06-13T19:18:00Z,u_0374_s01,ins_u_0374_004,{},v2.3.0-buggy +evt_003213,u_0556,signup_started,2026-06-13T19:18:00Z,u_0556_s01,ins_u_0556_001,{},v2.3.0-buggy +evt_003214,u_0531,onboarding_completed,2026-06-13T19:25:00Z,u_0531_s01,ins_u_0531_005,"{""completed_at"": ""2026-06-13T19:20:00Z""}",v2.3.0-buggy +evt_003215,u_0556,session_abandoned,2026-06-13T19:25:00Z,u_0556_s01,ins_u_0556_002,{},v2.3.0-buggy +evt_003216,u_0739,activation_completed,2026-06-13T19:25:00Z,u_0739_s01,ins_u_0739_007,{},v2.3.0-buggy +evt_003217,u_0657,activation_completed,2026-06-13T19:26:00Z,u_0657_s01,ins_u_0657_007,{},v2.3.0-buggy +evt_003218,u_0522,feature_used,2026-06-13T19:36:00Z,u_0522_s01,ins_u_0522_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003219,u_0557,signup_started,2026-06-13T19:41:00Z,u_0557_s01,ins_u_0557_001,{},v2.3.0-buggy +evt_003220,u_0522,onboarding_completed,2026-06-13T19:42:00Z,u_0522_s01,ins_u_0522_006,"{""completed_at"": ""2026-06-13T19:38:00Z""}",v2.3.0-buggy +evt_003221,u_0323,signup_started,2026-06-13T19:43:00Z,u_0323_s01,ins_u_0323_001,{},v2.3.0-buggy +evt_003222,u_0557,signup_completed,2026-06-13T19:44:00Z,u_0557_s01,ins_u_0557_002,{},v2.3.0-buggy +evt_003223,u_0481,signup_started,2026-06-13T19:45:00Z,u_0481_s01,ins_u_0481_001,{},v2.3.0-buggy +evt_003224,u_0557,onboarding_completed,2026-06-13T19:47:00Z,u_0557_s01,ins_u_0557_003,{},v2.3.0-buggy +evt_003225,u_0323,signup_completed,2026-06-13T19:48:00Z,u_0323_s01,ins_u_0323_002,{},v2.3.0-buggy +evt_003226,u_0310,onboarding_completed,2026-06-13T19:49:00Z,u_0310_s01,ins_u_0310_005,"{""completed_at"": ""2026-06-13T19:34:00Z""}",v2.3.0-buggy +evt_003227,u_0481,signup_completed,2026-06-13T19:49:00Z,u_0481_s01,ins_u_0481_002,{},v2.3.0-buggy +evt_003228,u_0416,signup_started,2026-06-13T19:52:00Z,u_0416_s01,ins_u_0416_001,{},v2.3.0-buggy +evt_003229,u_0557,session_abandoned,2026-06-13T19:53:00Z,u_0557_s01,ins_u_0557_004,{},v2.3.0-buggy +evt_003230,u_0374,onboarding_completed,2026-06-13T19:54:00Z,u_0374_s01,ins_u_0374_005,"{""completed_at"": ""2026-06-13T19:49:00Z""}",v2.3.0-buggy +evt_003231,u_0416,signup_completed,2026-06-13T19:57:00Z,u_0416_s01,ins_u_0416_002,{},v2.3.0-buggy +evt_003232,u_0481,profile_saved,2026-06-13T19:57:00Z,u_0481_s01,ins_u_0481_003,{},v2.3.0-buggy +evt_003233,u_0213,signup_started,2026-06-13T19:58:00Z,u_0213_s01,ins_u_0213_001,{},v2.3.0-buggy +evt_003234,u_0323,profile_saved,2026-06-13T19:58:00Z,u_0323_s01,ins_u_0323_003,{},v2.3.0-buggy +evt_003235,u_0416,upsell_modal_shown,2026-06-13T19:58:00Z,u_0416_s01,ins_u_0416_003,{},v2.3.0-buggy +evt_003236,u_0481,onboarding_step_viewed,2026-06-13T19:59:00Z,u_0481_s01,ins_u_0481_004,{},v2.3.0-buggy +evt_003237,u_0595,signup_started,2026-06-13T20:00:00Z,u_0595_s01,ins_u_0595_001,{},v2.3.0-buggy +evt_003238,u_0522,activation_completed,2026-06-13T20:01:00Z,u_0522_s01,ins_u_0522_007,{},v2.3.0-buggy +evt_003239,u_0310,activation_completed,2026-06-13T20:02:00Z,u_0310_s01,ins_u_0310_006,{},v2.3.0-buggy +evt_003240,u_0323,onboarding_step_viewed,2026-06-13T20:03:00Z,u_0323_s01,ins_u_0323_004,{},v2.3.0-buggy +evt_003241,u_0595,signup_completed,2026-06-13T20:03:00Z,u_0595_s01,ins_u_0595_002,{},v2.3.0-buggy +evt_003242,u_0374,activation_completed,2026-06-13T20:04:00Z,u_0374_s01,ins_u_0374_006,{},v2.3.0-buggy +evt_003243,u_0416,session_abandoned,2026-06-13T20:04:00Z,u_0416_s01,ins_u_0416_004,{},v2.3.0-buggy +evt_003244,u_0213,signup_completed,2026-06-13T20:06:00Z,u_0213_s01,ins_u_0213_002,{},v2.3.0-buggy +evt_003245,u_0595,onboarding_completed,2026-06-13T20:06:00Z,u_0595_s01,ins_u_0595_003,{},v2.3.0-buggy +evt_003246,u_0595,session_abandoned,2026-06-13T20:08:00Z,u_0595_s01,ins_u_0595_004,{},v2.3.0-buggy +evt_003247,u_0481,feature_used,2026-06-13T20:09:00Z,u_0481_s01,ins_u_0481_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003248,u_0595,session_abandoned,2026-06-13T20:09:00Z,u_0595_s01,ins_u_0595_004,{},v2.3.0-buggy +evt_003249,u_0011,signup_started,2026-06-13T20:11:00Z,u_0011_s01,ins_u_0011_001,{},v2.3.0-buggy +evt_003250,u_0177,signup_started,2026-06-13T20:13:00Z,u_0177_s01,ins_u_0177_001,{},v2.3.0-buggy +evt_003251,u_0011,signup_completed,2026-06-13T20:14:00Z,u_0011_s01,ins_u_0011_002,{},v2.3.0-buggy +evt_003252,u_0213,session_abandoned,2026-06-13T20:14:00Z,u_0213_s01,ins_u_0213_003,{},v2.3.0-buggy +evt_003253,u_0011,upsell_modal_shown,2026-06-13T20:15:00Z,u_0011_s01,ins_u_0011_003,{},v2.3.0-buggy +evt_003254,u_0011,profile_saved,2026-06-13T20:16:00Z,u_0011_s01,ins_u_0011_004,{},v2.3.0-buggy +evt_003255,u_0502,signup_started,2026-06-13T20:16:00Z,u_0502_s01,ins_u_0502_001,{},v2.3.0-buggy +evt_003256,u_0177,signup_completed,2026-06-13T20:17:00Z,u_0177_s01,ins_u_0177_002,{},v2.3.0-buggy +evt_003257,u_0177,profile_saved,2026-06-13T20:19:00Z,u_0177_s01,ins_u_0177_003,{},v2.3.0-buggy +evt_003258,u_0011,onboarding_step_viewed,2026-06-13T20:21:00Z,u_0011_s01,ins_u_0011_005,{},v2.3.0-buggy +evt_003259,u_0502,signup_completed,2026-06-13T20:22:00Z,u_0502_s01,ins_u_0502_002,{},v2.3.0-buggy +evt_003260,u_0177,onboarding_step_viewed,2026-06-13T20:23:00Z,u_0177_s01,ins_u_0177_004,{},v2.3.0-buggy +evt_003261,u_0502,onboarding_completed,2026-06-13T20:23:00Z,u_0502_s01,ins_u_0502_003,{},v2.3.0-buggy +evt_003262,u_0204,signup_started,2026-06-13T20:25:00Z,u_0204_s01,ins_u_0204_001,{},v2.3.0-buggy +evt_003263,u_0564,return_visit,2026-06-13T20:25:00Z,u_0564_s02,ins_u_0564_007,{},v2.3.0-buggy +evt_003264,u_0502,session_abandoned,2026-06-13T20:27:00Z,u_0502_s01,ins_u_0502_004,{},v2.3.0-buggy +evt_003265,u_0099,signup_started,2026-06-13T20:28:00Z,u_0099_s01,ins_u_0099_001,{},v2.3.0-buggy +evt_003266,u_0782,signup_started,2026-06-13T20:28:00Z,u_0782_s01,ins_u_0782_001,{},v2.3.0-buggy +evt_003267,u_0508,signup_started,2026-06-13T20:30:00Z,u_0508_s01,ins_u_0508_001,{},v2.3.0-buggy +evt_003268,u_0564,feature_used,2026-06-13T20:30:00Z,u_0564_s02,ins_u_0564_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003269,u_0099,signup_completed,2026-06-13T20:33:00Z,u_0099_s01,ins_u_0099_002,{},v2.3.0-buggy +evt_003270,u_0204,signup_completed,2026-06-13T20:33:00Z,u_0204_s01,ins_u_0204_002,{},v2.3.0-buggy +evt_003271,u_0337,signup_started,2026-06-13T20:35:00Z,u_0337_s01,ins_u_0337_001,{},v2.3.0-buggy +evt_003272,u_0782,signup_completed,2026-06-13T20:35:00Z,u_0782_s01,ins_u_0782_002,{},v2.3.0-buggy +evt_003273,u_0011,feature_used,2026-06-13T20:37:00Z,u_0011_s01,ins_u_0011_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003274,u_0508,signup_completed,2026-06-13T20:37:00Z,u_0508_s01,ins_u_0508_002,{},v2.3.0-buggy +evt_003275,u_0394,signup_started,2026-06-13T20:38:00Z,u_0394_s01,ins_u_0394_001,{},v2.3.0-buggy +evt_003276,u_0177,feature_used,2026-06-13T20:40:00Z,u_0177_s01,ins_u_0177_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003277,u_0337,signup_completed,2026-06-13T20:40:00Z,u_0337_s01,ins_u_0337_002,{},v2.3.0-buggy +evt_003278,u_0394,signup_completed,2026-06-13T20:40:00Z,u_0394_s01,ins_u_0394_002,{},v2.3.0-buggy +evt_003279,u_0323,onboarding_completed,2026-06-13T20:41:00Z,u_0323_s01,ins_u_0323_005,"{""completed_at"": ""2026-06-13T20:32:00Z""}",v2.3.0-buggy +evt_003280,u_0092,signup_started,2026-06-13T20:42:00Z,u_0092_s01,ins_u_0092_001,{},v2.3.0-buggy +evt_003281,u_0099,profile_saved,2026-06-13T20:42:00Z,u_0099_s01,ins_u_0099_003,{},v2.3.0-buggy +evt_003282,u_0204,profile_saved,2026-06-13T20:43:00Z,u_0204_s01,ins_u_0204_003,{},v2.3.0-buggy +evt_003283,u_0508,profile_saved,2026-06-13T20:43:00Z,u_0508_s01,ins_u_0508_003,{},v2.3.0-buggy +evt_003284,u_0099,onboarding_step_viewed,2026-06-13T20:44:00Z,u_0099_s01,ins_u_0099_004,{},v2.3.0-buggy +evt_003285,u_0337,profile_saved,2026-06-13T20:44:00Z,u_0337_s01,ins_u_0337_003,{},v2.3.0-buggy +evt_003286,u_0782,profile_saved,2026-06-13T20:45:00Z,u_0782_s01,ins_u_0782_003,{},v2.3.0-buggy +evt_003287,u_0177,onboarding_completed,2026-06-13T20:47:00Z,u_0177_s01,ins_u_0177_006,"{""completed_at"": ""2026-06-13T20:55:00Z""}",v2.3.0-buggy +evt_003288,u_0782,onboarding_step_viewed,2026-06-13T20:47:00Z,u_0782_s01,ins_u_0782_004,{},v2.3.0-buggy +evt_003289,u_0092,signup_completed,2026-06-13T20:48:00Z,u_0092_s01,ins_u_0092_002,{},v2.3.0-buggy +evt_003290,u_0394,profile_saved,2026-06-13T20:48:00Z,u_0394_s01,ins_u_0394_003,{},v2.3.0-buggy +evt_003291,u_0508,onboarding_step_viewed,2026-06-13T20:48:00Z,u_0508_s01,ins_u_0508_004,{},v2.3.0-buggy +evt_003292,u_0011,onboarding_completed,2026-06-13T20:51:00Z,u_0011_s01,ins_u_0011_007,"{""completed_at"": ""2026-06-13T20:48:00Z""}",v2.3.0-buggy +evt_003293,u_0394,onboarding_step_viewed,2026-06-13T20:51:00Z,u_0394_s01,ins_u_0394_004,{},v2.3.0-buggy +evt_003294,u_0508,feature_used,2026-06-13T20:53:00Z,u_0508_s01,ins_u_0508_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003295,u_0092,session_abandoned,2026-06-13T20:55:00Z,u_0092_s01,ins_u_0092_003,{},v2.3.0-buggy +evt_003296,u_0051,signup_started,2026-06-13T20:59:00Z,u_0051_s01,ins_u_0051_001,{},v2.3.0-buggy +evt_003297,u_0136,signup_started,2026-06-13T20:59:00Z,u_0136_s01,ins_u_0136_001,{},v2.3.0-buggy +evt_003298,u_0051,signup_completed,2026-06-13T21:01:00Z,u_0051_s01,ins_u_0051_002,{},v2.3.0-buggy +evt_003299,u_0051,profile_saved,2026-06-13T21:03:00Z,u_0051_s01,ins_u_0051_003,{},v2.3.0-buggy +evt_003300,u_0481,activation_completed,2026-06-13T21:05:00Z,u_0481_s01,ins_u_0481_006,{},v2.3.0-buggy +evt_003301,u_0782,feature_used,2026-06-13T21:05:00Z,u_0782_s01,ins_u_0782_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003302,u_0136,session_abandoned,2026-06-13T21:06:00Z,u_0136_s01,ins_u_0136_002,{},v2.3.0-buggy +evt_003303,u_0051,onboarding_step_viewed,2026-06-13T21:07:00Z,u_0051_s01,ins_u_0051_004,{},v2.3.0-buggy +evt_003304,u_0051,onboarding_step_viewed,2026-06-13T21:08:00Z,u_0051_s01,ins_u_0051_004,{},v2.3.0-buggy +evt_003305,u_0099,onboarding_completed,2026-06-13T21:13:00Z,u_0099_s01,ins_u_0099_005,"{""completed_at"": ""2026-06-13T21:10:00Z""}",v2.3.0-buggy +evt_003306,u_0051,feature_used,2026-06-13T21:15:00Z,u_0051_s01,ins_u_0051_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003307,u_0782,onboarding_completed,2026-06-13T21:18:00Z,u_0782_s01,ins_u_0782_006,"{""completed_at"": ""2026-06-13T21:20:00Z""}",v2.3.0-buggy +evt_003308,u_0394,onboarding_completed,2026-06-13T21:25:00Z,u_0394_s01,ins_u_0394_005,"{""completed_at"": ""2026-06-13T21:15:00Z""}",v2.3.0-buggy +evt_003309,u_0337,onboarding_completed,2026-06-13T21:26:00Z,u_0337_s01,ins_u_0337_004,"{""completed_at"": ""2026-06-13T21:20:00Z""}",v2.3.0-buggy +evt_003310,u_0508,onboarding_completed,2026-06-13T21:26:00Z,u_0508_s01,ins_u_0508_006,"{""completed_at"": ""2026-06-13T21:17:00Z""}",v2.3.0-buggy +evt_003311,u_0508,onboarding_completed,2026-06-13T21:27:00Z,u_0508_s01,ins_u_0508_006,"{""completed_at"": ""2026-06-13T21:17:00Z""}",v2.3.0-buggy +evt_003312,u_0051,onboarding_completed,2026-06-13T21:29:00Z,u_0051_s01,ins_u_0051_006,"{""completed_at"": ""2026-06-13T21:42:00Z""}",v2.3.0-buggy +evt_003313,u_0177,activation_completed,2026-06-13T21:34:00Z,u_0177_s01,ins_u_0177_007,{},v2.3.0-buggy +evt_003314,u_0086,return_visit,2026-06-13T21:45:00Z,u_0086_s02,ins_u_0086_007,{},v2.3.0-buggy +evt_003315,u_0086,feature_used,2026-06-13T21:50:00Z,u_0086_s02,ins_u_0086_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003316,u_0099,activation_completed,2026-06-13T21:55:00Z,u_0099_s01,ins_u_0099_006,{},v2.3.0-buggy +evt_003317,u_0782,activation_completed,2026-06-13T22:05:00Z,u_0782_s01,ins_u_0782_007,{},v2.3.0-buggy +evt_003318,u_0051,activation_completed,2026-06-13T22:15:00Z,u_0051_s01,ins_u_0051_007,{},v2.3.0-buggy +evt_003319,u_0326,return_visit,2026-06-13T22:51:00Z,u_0326_s02,ins_u_0326_007,{},v2.3.0-buggy +evt_003320,u_0326,feature_used,2026-06-13T22:56:00Z,u_0326_s02,ins_u_0326_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003321,u_0510,return_visit,2026-06-13T23:31:00Z,u_0510_s02,ins_u_0510_007,{},v2.3.0-buggy +evt_003322,u_0499,return_visit,2026-06-13T23:43:00Z,u_0499_s02,ins_u_0499_006,{},v2.3.0-buggy +evt_003323,u_0499,feature_used,2026-06-13T23:48:00Z,u_0499_s02,ins_u_0499_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003324,u_0001,return_visit,2026-06-14T00:28:00Z,u_0001_s02,ins_u_0001_007,{},v2.3.0-buggy +evt_003325,u_0381,return_visit,2026-06-14T01:48:00Z,u_0381_s02,ins_u_0381_007,{},v2.3.0-buggy +evt_003326,u_0381,feature_used,2026-06-14T01:53:00Z,u_0381_s02,ins_u_0381_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003327,u_0420,return_visit,2026-06-14T01:54:00Z,u_0420_s02,ins_u_0420_007,{},v2.3.0-buggy +evt_003328,u_0420,return_visit,2026-06-14T01:55:00Z,u_0420_s02,ins_u_0420_007,{},v2.3.0-buggy +evt_003329,u_0420,feature_used,2026-06-14T01:59:00Z,u_0420_s02,ins_u_0420_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003330,u_0420,feature_used,2026-06-14T02:00:00Z,u_0420_s02,ins_u_0420_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003331,u_0530,return_visit,2026-06-14T03:59:00Z,u_0530_s02,ins_u_0530_006,{},v2.3.0-buggy +evt_003332,u_0530,feature_used,2026-06-14T04:04:00Z,u_0530_s02,ins_u_0530_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003333,u_0554,return_visit,2026-06-14T04:17:00Z,u_0554_s02,ins_u_0554_007,{},v2.3.0-buggy +evt_003334,u_0554,feature_used,2026-06-14T04:22:00Z,u_0554_s02,ins_u_0554_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003335,u_0032,return_visit,2026-06-14T05:05:00Z,u_0032_s02,ins_u_0032_007,{},v2.3.0-buggy +evt_003336,u_0444,return_visit,2026-06-14T06:15:00Z,u_0444_s02,ins_u_0444_008,{},v2.3.0-buggy +evt_003337,u_0759,signup_started,2026-06-14T08:12:00Z,u_0759_s01,ins_u_0759_001,{},v2.3.0-buggy +evt_003338,u_0759,signup_completed,2026-06-14T08:14:00Z,u_0759_s01,ins_u_0759_002,{},v2.3.0-buggy +evt_003339,u_0759,profile_saved,2026-06-14T08:16:00Z,u_0759_s01,ins_u_0759_003,{},v2.3.0-buggy +evt_003340,u_0759,onboarding_step_viewed,2026-06-14T08:18:00Z,u_0759_s01,ins_u_0759_004,{},v2.3.0-buggy +evt_003341,u_0642,signup_started,2026-06-14T08:19:00Z,u_0642_s01,ins_u_0642_001,{},v2.3.0-buggy +evt_003342,u_0642,signup_completed,2026-06-14T08:20:00Z,u_0642_s01,ins_u_0642_002,{},v2.3.0-buggy +evt_003343,u_0642,profile_saved,2026-06-14T08:29:00Z,u_0642_s01,ins_u_0642_003,{},v2.3.0-buggy +evt_003344,u_0642,onboarding_step_viewed,2026-06-14T08:33:00Z,u_0642_s01,ins_u_0642_004,{},v2.3.0-buggy +evt_003345,u_0241,signup_started,2026-06-14T08:36:00Z,u_0241_s01,ins_u_0241_001,{},v2.3.0-buggy +evt_003346,u_0241,signup_completed,2026-06-14T08:38:00Z,u_0241_s01,ins_u_0241_002,{},v2.3.0-buggy +evt_003347,u_0241,profile_saved,2026-06-14T08:43:00Z,u_0241_s01,ins_u_0241_003,{},v2.3.0-buggy +evt_003348,u_0241,onboarding_step_viewed,2026-06-14T08:45:00Z,u_0241_s01,ins_u_0241_004,{},v2.3.0-buggy +evt_003349,u_0759,onboarding_completed,2026-06-14T08:50:00Z,u_0759_s01,ins_u_0759_005,"{""completed_at"": ""2026-06-14T08:44:00Z""}",v2.3.0-buggy +evt_003350,u_0241,feature_used,2026-06-14T08:53:00Z,u_0241_s01,ins_u_0241_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003351,u_0687,return_visit,2026-06-14T09:00:00Z,u_0687_s02,ins_u_0687_006,{},v2.3.0-buggy +evt_003352,u_0007,signup_started,2026-06-14T09:01:00Z,u_0007_s01,ins_u_0007_001,{},v2.3.0-buggy +evt_003353,u_0569,signup_started,2026-06-14T09:03:00Z,u_0569_s01,ins_u_0569_001,{},v2.3.0-buggy +evt_003354,u_0569,session_abandoned,2026-06-14T09:04:00Z,u_0569_s01,ins_u_0569_002,{},v2.3.0-buggy +evt_003355,u_0007,signup_completed,2026-06-14T09:06:00Z,u_0007_s01,ins_u_0007_002,{},v2.3.0-buggy +evt_003356,u_0010,signup_started,2026-06-14T09:14:00Z,u_0010_s01,ins_u_0010_001,{},v2.3.0-buggy +evt_003357,u_0007,profile_saved,2026-06-14T09:16:00Z,u_0007_s01,ins_u_0007_003,{},v2.3.0-buggy +evt_003358,u_0552,signup_started,2026-06-14T09:16:00Z,u_0552_s01,ins_u_0552_001,{},v2.3.0-buggy +evt_003359,u_0241,onboarding_completed,2026-06-14T09:18:00Z,u_0241_s01,ins_u_0241_006,"{""completed_at"": ""2026-06-14T09:16:00Z""}",v2.3.0-buggy +evt_003360,u_0010,signup_completed,2026-06-14T09:19:00Z,u_0010_s01,ins_u_0010_002,{},v2.3.0-buggy +evt_003361,u_0007,onboarding_step_viewed,2026-06-14T09:20:00Z,u_0007_s01,ins_u_0007_004,{},v2.3.0-buggy +evt_003362,u_0010,profile_saved,2026-06-14T09:21:00Z,u_0010_s01,ins_u_0010_003,{},v2.3.0-buggy +evt_003363,u_0552,signup_completed,2026-06-14T09:24:00Z,u_0552_s01,ins_u_0552_002,{},v2.3.0-buggy +evt_003364,u_0010,onboarding_step_viewed,2026-06-14T09:26:00Z,u_0010_s01,ins_u_0010_004,{},v2.3.0-buggy +evt_003365,u_0552,profile_saved,2026-06-14T09:32:00Z,u_0552_s01,ins_u_0552_003,{},v2.3.0-buggy +evt_003366,u_0552,error_shown,2026-06-14T09:33:00Z,u_0552_s01,ins_u_0552_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003367,u_0552,onboarding_step_viewed,2026-06-14T09:34:00Z,u_0552_s01,ins_u_0552_005,{},v2.3.0-buggy +evt_003368,u_0552,feature_used,2026-06-14T09:42:00Z,u_0552_s01,ins_u_0552_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_003369,u_0770,signup_started,2026-06-14T09:49:00Z,u_0770_s01,ins_u_0770_001,{},v2.3.0-buggy +evt_003370,u_0007,onboarding_completed,2026-06-14T09:52:00Z,u_0007_s01,ins_u_0007_005,"{""completed_at"": ""2026-06-14T09:46:00Z""}",v2.3.0-buggy +evt_003371,u_0770,session_abandoned,2026-06-14T09:52:00Z,u_0770_s01,ins_u_0770_002,{},v2.3.0-buggy +evt_003372,u_0007,onboarding_completed,2026-06-14T09:53:00Z,u_0007_s01,ins_u_0007_005,"{""completed_at"": ""2026-06-14T09:46:00Z""}",v2.3.0-buggy +evt_003373,u_0010,onboarding_completed,2026-06-14T09:56:00Z,u_0010_s01,ins_u_0010_005,"{""completed_at"": ""2026-06-14T09:55:00Z""}",v2.3.0-buggy +evt_003374,u_0112,signup_started,2026-06-14T10:01:00Z,u_0112_s01,ins_u_0112_001,{},v2.3.0-buggy +evt_003375,u_0437,signup_started,2026-06-14T10:02:00Z,u_0437_s01,ins_u_0437_001,{},v2.3.0-buggy +evt_003376,u_0101,signup_started,2026-06-14T10:03:00Z,u_0101_s01,ins_u_0101_001,{},v2.3.0-buggy +evt_003377,u_0101,signup_completed,2026-06-14T10:07:00Z,u_0101_s01,ins_u_0101_002,{},v2.3.0-buggy +evt_003378,u_0288,signup_started,2026-06-14T10:08:00Z,u_0288_s01,ins_u_0288_001,{},v2.3.0-buggy +evt_003379,u_0552,onboarding_completed,2026-06-14T10:08:00Z,u_0552_s01,ins_u_0552_007,"{""completed_at"": ""2026-06-14T10:12:00Z""}",v2.3.0-buggy +evt_003380,u_0112,signup_completed,2026-06-14T10:09:00Z,u_0112_s01,ins_u_0112_002,{},v2.3.0-buggy +evt_003381,u_0552,onboarding_completed,2026-06-14T10:09:00Z,u_0552_s01,ins_u_0552_007,"{""completed_at"": ""2026-06-14T10:12:00Z""}",v2.3.0-buggy +evt_003382,u_0437,signup_completed,2026-06-14T10:10:00Z,u_0437_s01,ins_u_0437_002,{},v2.3.0-buggy +evt_003383,u_0027,signup_started,2026-06-14T10:11:00Z,u_0027_s01,ins_u_0027_001,{},v2.3.0-buggy +evt_003384,u_0288,signup_completed,2026-06-14T10:12:00Z,u_0288_s01,ins_u_0288_002,{},v2.3.0-buggy +evt_003385,u_0437,onboarding_completed,2026-06-14T10:13:00Z,u_0437_s01,ins_u_0437_003,{},v2.3.0-buggy +evt_003386,u_0571,signup_started,2026-06-14T10:13:00Z,u_0571_s01,ins_u_0571_001,{},v2.3.0-buggy +evt_003387,u_0112,session_abandoned,2026-06-14T10:14:00Z,u_0112_s01,ins_u_0112_003,{},v2.3.0-buggy +evt_003388,u_0101,profile_saved,2026-06-14T10:16:00Z,u_0101_s01,ins_u_0101_003,{},v2.3.0-buggy +evt_003389,u_0571,signup_completed,2026-06-14T10:16:00Z,u_0571_s01,ins_u_0571_002,{},v2.3.0-buggy +evt_003390,u_0027,signup_completed,2026-06-14T10:17:00Z,u_0027_s01,ins_u_0027_002,{},v2.3.0-buggy +evt_003391,u_0288,profile_saved,2026-06-14T10:19:00Z,u_0288_s01,ins_u_0288_003,{},v2.3.0-buggy +evt_003392,u_0309,return_visit,2026-06-14T10:19:00Z,u_0309_s02,ins_u_0309_007,{},v2.3.0-buggy +evt_003393,u_0437,session_abandoned,2026-06-14T10:19:00Z,u_0437_s01,ins_u_0437_004,{},v2.3.0-buggy +evt_003394,u_0101,onboarding_step_viewed,2026-06-14T10:20:00Z,u_0101_s01,ins_u_0101_004,{},v2.3.0-buggy +evt_003395,u_0027,profile_saved,2026-06-14T10:21:00Z,u_0027_s01,ins_u_0027_003,{},v2.3.0-buggy +evt_003396,u_0027,onboarding_step_viewed,2026-06-14T10:23:00Z,u_0027_s01,ins_u_0027_004,{},v2.3.0-buggy +evt_003397,u_0288,onboarding_step_viewed,2026-06-14T10:25:00Z,u_0288_s01,ins_u_0288_004,{},v2.3.0-buggy +evt_003398,u_0571,profile_saved,2026-06-14T10:26:00Z,u_0571_s01,ins_u_0571_003,{},v2.3.0-buggy +evt_003399,u_0027,feature_used,2026-06-14T10:28:00Z,u_0027_s01,ins_u_0027_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003400,u_0288,feature_used,2026-06-14T10:28:00Z,u_0288_s01,ins_u_0288_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003401,u_0457,signup_started,2026-06-14T10:29:00Z,u_0457_s01,ins_u_0457_001,{},v2.3.0-buggy +evt_003402,u_0571,onboarding_step_viewed,2026-06-14T10:32:00Z,u_0571_s01,ins_u_0571_004,{},v2.3.0-buggy +evt_003403,u_0571,feature_used,2026-06-14T10:33:00Z,u_0571_s01,ins_u_0571_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003404,u_0457,signup_completed,2026-06-14T10:36:00Z,u_0457_s01,ins_u_0457_002,{},v2.3.0-buggy +evt_003405,u_0457,upsell_modal_shown,2026-06-14T10:37:00Z,u_0457_s01,ins_u_0457_003,{},v2.3.0-buggy +evt_003406,u_0061,signup_started,2026-06-14T10:39:00Z,u_0061_s01,ins_u_0061_001,{},v2.3.0-buggy +evt_003407,u_0101,feature_used,2026-06-14T10:39:00Z,u_0101_s01,ins_u_0101_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003408,u_0457,onboarding_completed,2026-06-14T10:39:00Z,u_0457_s01,ins_u_0457_004,{},v2.3.0-buggy +evt_003409,u_0061,session_abandoned,2026-06-14T10:41:00Z,u_0061_s01,ins_u_0061_002,{},v2.3.0-buggy +evt_003410,u_0464,signup_started,2026-06-14T10:41:00Z,u_0464_s01,ins_u_0464_001,{},v2.3.0-buggy +evt_003411,u_0457,session_abandoned,2026-06-14T10:44:00Z,u_0457_s01,ins_u_0457_005,{},v2.3.0-buggy +evt_003412,u_0464,session_abandoned,2026-06-14T10:49:00Z,u_0464_s01,ins_u_0464_002,{},v2.3.0-buggy +evt_003413,u_0027,onboarding_completed,2026-06-14T10:53:00Z,u_0027_s01,ins_u_0027_006,"{""completed_at"": ""2026-06-14T10:48:00Z""}",v2.3.0-buggy +evt_003414,u_0101,onboarding_completed,2026-06-14T10:53:00Z,u_0101_s01,ins_u_0101_006,"{""completed_at"": ""2026-06-14T10:52:00Z""}",v2.3.0-buggy +evt_003415,u_0288,onboarding_completed,2026-06-14T11:01:00Z,u_0288_s01,ins_u_0288_006,"{""completed_at"": ""2026-06-14T10:50:00Z""}",v2.3.0-buggy +evt_003416,u_0098,return_visit,2026-06-14T11:04:00Z,u_0098_s02,ins_u_0098_007,{},v2.3.0-buggy +evt_003417,u_0571,onboarding_completed,2026-06-14T11:05:00Z,u_0571_s01,ins_u_0571_006,"{""completed_at"": ""2026-06-14T10:58:00Z""}",v2.3.0-buggy +evt_003418,u_0319,signup_started,2026-06-14T11:06:00Z,u_0319_s01,ins_u_0319_001,{},v2.3.0-buggy +evt_003419,u_0387,signup_started,2026-06-14T11:06:00Z,u_0387_s01,ins_u_0387_001,{},v2.3.0-buggy +evt_003420,u_0101,activation_completed,2026-06-14T11:07:00Z,u_0101_s01,ins_u_0101_007,{},v2.3.0-buggy +evt_003421,u_0098,feature_used,2026-06-14T11:09:00Z,u_0098_s02,ins_u_0098_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003422,u_0288,activation_completed,2026-06-14T11:10:00Z,u_0288_s01,ins_u_0288_007,{},v2.3.0-buggy +evt_003423,u_0319,session_abandoned,2026-06-14T11:14:00Z,u_0319_s01,ins_u_0319_002,{},v2.3.0-buggy +evt_003424,u_0387,signup_completed,2026-06-14T11:14:00Z,u_0387_s01,ins_u_0387_002,{},v2.3.0-buggy +evt_003425,u_0797,signup_started,2026-06-14T11:19:00Z,u_0797_s01,ins_u_0797_001,{},v2.3.0-buggy +evt_003426,u_0368,signup_started,2026-06-14T11:21:00Z,u_0368_s01,ins_u_0368_001,{},v2.3.0-buggy +evt_003427,u_0387,session_abandoned,2026-06-14T11:21:00Z,u_0387_s01,ins_u_0387_003,{},v2.3.0-buggy +evt_003428,u_0797,session_abandoned,2026-06-14T11:24:00Z,u_0797_s01,ins_u_0797_002,{},v2.3.0-buggy +evt_003429,u_0308,signup_started,2026-06-14T11:25:00Z,u_0308_s01,ins_u_0308_001,{},v2.3.0-buggy +evt_003430,u_0308,signup_completed,2026-06-14T11:26:00Z,u_0308_s01,ins_u_0308_002,{},v2.3.0-buggy +evt_003431,u_0308,onboarding_completed,2026-06-14T11:28:00Z,u_0308_s01,ins_u_0308_003,{},v2.3.0-buggy +evt_003432,u_0368,signup_completed,2026-06-14T11:29:00Z,u_0368_s01,ins_u_0368_002,{},v2.3.0-buggy +evt_003433,u_0661,signup_started,2026-06-14T11:30:00Z,u_0661_s01,ins_u_0661_001,{},v2.3.0-buggy +evt_003434,u_0308,session_abandoned,2026-06-14T11:35:00Z,u_0308_s01,ins_u_0308_004,{},v2.3.0-buggy +evt_003435,u_0368,profile_saved,2026-06-14T11:36:00Z,u_0368_s01,ins_u_0368_003,{},v2.3.0-buggy +evt_003436,u_0661,signup_completed,2026-06-14T11:36:00Z,u_0661_s01,ins_u_0661_002,{},v2.3.0-buggy +evt_003437,u_0081,signup_started,2026-06-14T11:38:00Z,u_0081_s01,ins_u_0081_001,{},v2.3.0-buggy +evt_003438,u_0368,onboarding_step_viewed,2026-06-14T11:40:00Z,u_0368_s01,ins_u_0368_004,{},v2.3.0-buggy +evt_003439,u_0511,signup_started,2026-06-14T11:40:00Z,u_0511_s01,ins_u_0511_001,{},v2.3.0-buggy +evt_003440,u_0081,signup_completed,2026-06-14T11:41:00Z,u_0081_s01,ins_u_0081_002,{},v2.3.0-buggy +evt_003441,u_0661,profile_saved,2026-06-14T11:41:00Z,u_0661_s01,ins_u_0661_003,{},v2.3.0-buggy +evt_003442,u_0571,activation_completed,2026-06-14T11:42:00Z,u_0571_s01,ins_u_0571_007,{},v2.3.0-buggy +evt_003443,u_0661,error_shown,2026-06-14T11:42:00Z,u_0661_s01,ins_u_0661_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003444,u_0661,onboarding_step_viewed,2026-06-14T11:46:00Z,u_0661_s01,ins_u_0661_005,{},v2.3.0-buggy +evt_003445,u_0511,signup_completed,2026-06-14T11:47:00Z,u_0511_s01,ins_u_0511_002,{},v2.3.0-buggy +evt_003446,u_0461,signup_started,2026-06-14T11:49:00Z,u_0461_s01,ins_u_0461_001,{},v2.3.0-buggy +evt_003447,u_0081,profile_saved,2026-06-14T11:51:00Z,u_0081_s01,ins_u_0081_003,{},v2.3.0-buggy +evt_003448,u_0368,feature_used,2026-06-14T11:51:00Z,u_0368_s01,ins_u_0368_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003449,u_0511,session_abandoned,2026-06-14T11:51:00Z,u_0511_s01,ins_u_0511_003,{},v2.3.0-buggy +evt_003450,u_0185,signup_started,2026-06-14T11:56:00Z,u_0185_s01,ins_u_0185_001,{},v2.3.0-buggy +evt_003451,u_0486,signup_started,2026-06-14T11:56:00Z,u_0486_s01,ins_u_0486_001,{},v2.3.0-buggy +evt_003452,u_0081,onboarding_step_viewed,2026-06-14T11:57:00Z,u_0081_s01,ins_u_0081_004,{},v2.3.0-buggy +evt_003453,u_0461,signup_completed,2026-06-14T11:57:00Z,u_0461_s01,ins_u_0461_002,{},v2.3.0-buggy +evt_003454,u_0461,upsell_modal_shown,2026-06-14T11:58:00Z,u_0461_s01,ins_u_0461_003,{},v2.3.0-buggy +evt_003455,u_0661,feature_used,2026-06-14T12:00:00Z,u_0661_s01,ins_u_0661_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003456,u_0185,session_abandoned,2026-06-14T12:02:00Z,u_0185_s01,ins_u_0185_002,{},v2.3.0-buggy +evt_003457,u_0486,signup_completed,2026-06-14T12:02:00Z,u_0486_s01,ins_u_0486_002,{},v2.3.0-buggy +evt_003458,u_0461,profile_saved,2026-06-14T12:05:00Z,u_0461_s01,ins_u_0461_004,{},v2.3.0-buggy +evt_003459,u_0486,onboarding_completed,2026-06-14T12:05:00Z,u_0486_s01,ins_u_0486_003,{},v2.3.0-buggy +evt_003460,u_0461,error_shown,2026-06-14T12:06:00Z,u_0461_s01,ins_u_0461_005,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003461,u_0461,onboarding_step_viewed,2026-06-14T12:09:00Z,u_0461_s01,ins_u_0461_006,{},v2.3.0-buggy +evt_003462,u_0486,session_abandoned,2026-06-14T12:10:00Z,u_0486_s01,ins_u_0486_004,{},v2.3.0-buggy +evt_003463,u_0505,signup_started,2026-06-14T12:18:00Z,u_0505_s01,ins_u_0505_001,{},v2.3.0-buggy +evt_003464,u_0761,signup_started,2026-06-14T12:19:00Z,u_0761_s01,ins_u_0761_001,{},v2.3.0-buggy +evt_003465,u_0505,signup_completed,2026-06-14T12:22:00Z,u_0505_s01,ins_u_0505_002,{},v2.3.0-buggy +evt_003466,u_0661,onboarding_completed,2026-06-14T12:22:00Z,u_0661_s01,ins_u_0661_007,"{""completed_at"": ""2026-06-14T12:13:00Z""}",v2.3.0-buggy +evt_003467,u_0505,onboarding_completed,2026-06-14T12:23:00Z,u_0505_s01,ins_u_0505_003,{},v2.3.0-buggy +evt_003468,u_0761,signup_completed,2026-06-14T12:24:00Z,u_0761_s01,ins_u_0761_002,{},v2.3.0-buggy +evt_003469,u_0580,signup_started,2026-06-14T12:25:00Z,u_0580_s01,ins_u_0580_001,{},v2.3.0-buggy +evt_003470,u_0505,session_abandoned,2026-06-14T12:26:00Z,u_0505_s01,ins_u_0505_004,{},v2.3.0-buggy +evt_003471,u_0585,signup_started,2026-06-14T12:26:00Z,u_0585_s01,ins_u_0585_001,{},v2.3.0-buggy +evt_003472,u_0761,profile_saved,2026-06-14T12:27:00Z,u_0761_s01,ins_u_0761_003,{},v2.3.0-buggy +evt_003473,u_0081,onboarding_completed,2026-06-14T12:28:00Z,u_0081_s01,ins_u_0081_005,"{""completed_at"": ""2026-06-14T12:22:00Z""}",v2.3.0-buggy +evt_003474,u_0580,signup_completed,2026-06-14T12:28:00Z,u_0580_s01,ins_u_0580_002,{},v2.3.0-buggy +evt_003475,u_0585,signup_completed,2026-06-14T12:28:00Z,u_0585_s01,ins_u_0585_002,{},v2.3.0-buggy +evt_003476,u_0580,onboarding_completed,2026-06-14T12:29:00Z,u_0580_s01,ins_u_0580_003,{},v2.3.0-buggy +evt_003477,u_0761,onboarding_step_viewed,2026-06-14T12:29:00Z,u_0761_s01,ins_u_0761_004,{},v2.3.0-buggy +evt_003478,u_0500,signup_started,2026-06-14T12:32:00Z,u_0500_s01,ins_u_0500_001,{},v2.3.0-buggy +evt_003479,u_0585,profile_saved,2026-06-14T12:32:00Z,u_0585_s01,ins_u_0585_003,{},v2.3.0-buggy +evt_003480,u_0461,onboarding_completed,2026-06-14T12:33:00Z,u_0461_s01,ins_u_0461_007,"{""completed_at"": ""2026-06-14T12:36:00Z""}",v2.3.0-buggy +evt_003481,u_0580,session_abandoned,2026-06-14T12:34:00Z,u_0580_s01,ins_u_0580_004,{},v2.3.0-buggy +evt_003482,u_0585,onboarding_step_viewed,2026-06-14T12:35:00Z,u_0585_s01,ins_u_0585_004,{},v2.3.0-buggy +evt_003483,u_0283,signup_started,2026-06-14T12:36:00Z,u_0283_s01,ins_u_0283_001,{},v2.3.0-buggy +evt_003484,u_0500,signup_completed,2026-06-14T12:36:00Z,u_0500_s01,ins_u_0500_002,{},v2.3.0-buggy +evt_003485,u_0661,activation_completed,2026-06-14T12:36:00Z,u_0661_s01,ins_u_0661_008,{},v2.3.0-buggy +evt_003486,u_0005,signup_started,2026-06-14T12:38:00Z,u_0005_s01,ins_u_0005_001,{},v2.3.0-buggy +evt_003487,u_0500,onboarding_completed,2026-06-14T12:39:00Z,u_0500_s01,ins_u_0500_003,{},v2.3.0-buggy +evt_003488,u_0500,session_abandoned,2026-06-14T12:43:00Z,u_0500_s01,ins_u_0500_004,{},v2.3.0-buggy +evt_003489,u_0283,signup_completed,2026-06-14T12:44:00Z,u_0283_s01,ins_u_0283_002,{},v2.3.0-buggy +evt_003490,u_0005,signup_completed,2026-06-14T12:45:00Z,u_0005_s01,ins_u_0005_002,{},v2.3.0-buggy +evt_003491,u_0283,onboarding_completed,2026-06-14T12:46:00Z,u_0283_s01,ins_u_0283_003,{},v2.3.0-buggy +evt_003492,u_0005,profile_saved,2026-06-14T12:49:00Z,u_0005_s01,ins_u_0005_003,{},v2.3.0-buggy +evt_003493,u_0283,session_abandoned,2026-06-14T12:49:00Z,u_0283_s01,ins_u_0283_004,{},v2.3.0-buggy +evt_003494,u_0746,signup_started,2026-06-14T12:51:00Z,u_0746_s01,ins_u_0746_001,{},v2.3.0-buggy +evt_003495,u_0005,onboarding_step_viewed,2026-06-14T12:53:00Z,u_0005_s01,ins_u_0005_004,{},v2.3.0-buggy +evt_003496,u_0746,signup_completed,2026-06-14T12:54:00Z,u_0746_s01,ins_u_0746_002,{},v2.3.0-buggy +evt_003497,u_0761,onboarding_completed,2026-06-14T12:54:00Z,u_0761_s01,ins_u_0761_005,"{""completed_at"": ""2026-06-14T13:05:00Z""}",v2.3.0-buggy +evt_003498,u_0591,signup_started,2026-06-14T12:56:00Z,u_0591_s01,ins_u_0591_001,{},v2.3.0-buggy +evt_003499,u_0746,onboarding_completed,2026-06-14T12:56:00Z,u_0746_s01,ins_u_0746_003,{},v2.3.0-buggy +evt_003500,u_0591,signup_completed,2026-06-14T12:59:00Z,u_0591_s01,ins_u_0591_002,{},v2.3.0-buggy +evt_003501,u_0746,session_abandoned,2026-06-14T12:59:00Z,u_0746_s01,ins_u_0746_004,{},v2.3.0-buggy +evt_003502,u_0786,signup_started,2026-06-14T13:00:00Z,u_0786_s01,ins_u_0786_001,{},v2.3.0-buggy +evt_003503,u_0461,activation_completed,2026-06-14T13:01:00Z,u_0461_s01,ins_u_0461_008,{},v2.3.0-buggy +evt_003504,u_0591,profile_saved,2026-06-14T13:02:00Z,u_0591_s01,ins_u_0591_003,{},v2.3.0-buggy +evt_003505,u_0088,signup_started,2026-06-14T13:03:00Z,u_0088_s01,ins_u_0088_001,{},v2.3.0-buggy +evt_003506,u_0591,onboarding_step_viewed,2026-06-14T13:04:00Z,u_0591_s01,ins_u_0591_004,{},v2.3.0-buggy +evt_003507,u_0786,session_abandoned,2026-06-14T13:04:00Z,u_0786_s01,ins_u_0786_002,{},v2.3.0-buggy +evt_003508,u_0088,signup_completed,2026-06-14T13:06:00Z,u_0088_s01,ins_u_0088_002,{},v2.3.0-buggy +evt_003509,u_0585,onboarding_completed,2026-06-14T13:06:00Z,u_0585_s01,ins_u_0585_005,"{""completed_at"": ""2026-06-14T13:08:00Z""}",v2.3.0-buggy +evt_003510,u_0088,onboarding_completed,2026-06-14T13:08:00Z,u_0088_s01,ins_u_0088_003,{},v2.3.0-buggy +evt_003511,u_0127,signup_started,2026-06-14T13:08:00Z,u_0127_s01,ins_u_0127_001,{},v2.3.0-buggy +evt_003512,u_0127,signup_completed,2026-06-14T13:12:00Z,u_0127_s01,ins_u_0127_002,{},v2.3.0-buggy +evt_003513,u_0558,signup_started,2026-06-14T13:13:00Z,u_0558_s01,ins_u_0558_001,{},v2.3.0-buggy +evt_003514,u_0088,session_abandoned,2026-06-14T13:14:00Z,u_0088_s01,ins_u_0088_004,{},v2.3.0-buggy +evt_003515,u_0127,profile_saved,2026-06-14T13:17:00Z,u_0127_s01,ins_u_0127_003,{},v2.3.0-buggy +evt_003516,u_0585,activation_completed,2026-06-14T13:19:00Z,u_0585_s01,ins_u_0585_006,{},v2.3.0-buggy +evt_003517,u_0591,feature_used,2026-06-14T13:19:00Z,u_0591_s01,ins_u_0591_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003518,u_0558,session_abandoned,2026-06-14T13:21:00Z,u_0558_s01,ins_u_0558_002,{},v2.3.0-buggy +evt_003519,u_0005,onboarding_completed,2026-06-14T13:22:00Z,u_0005_s01,ins_u_0005_005,"{""completed_at"": ""2026-06-14T13:29:00Z""}",v2.3.0-buggy +evt_003520,u_0285,signup_started,2026-06-14T13:34:00Z,u_0285_s01,ins_u_0285_001,{},v2.3.0-buggy +evt_003521,u_0181,signup_started,2026-06-14T13:36:00Z,u_0181_s01,ins_u_0181_001,{},v2.3.0-buggy +evt_003522,u_0181,signup_completed,2026-06-14T13:40:00Z,u_0181_s01,ins_u_0181_002,{},v2.3.0-buggy +evt_003523,u_0285,signup_completed,2026-06-14T13:41:00Z,u_0285_s01,ins_u_0285_002,{},v2.3.0-buggy +evt_003524,u_0591,onboarding_completed,2026-06-14T13:41:00Z,u_0591_s01,ins_u_0591_006,"{""completed_at"": ""2026-06-14T13:39:00Z""}",v2.3.0-buggy +evt_003525,u_0285,upsell_modal_shown,2026-06-14T13:42:00Z,u_0285_s01,ins_u_0285_003,{},v2.3.0-buggy +evt_003526,u_0285,onboarding_completed,2026-06-14T13:43:00Z,u_0285_s01,ins_u_0285_004,{},v2.3.0-buggy +evt_003527,u_0285,session_abandoned,2026-06-14T13:45:00Z,u_0285_s01,ins_u_0285_005,{},v2.3.0-buggy +evt_003528,u_0181,profile_saved,2026-06-14T13:46:00Z,u_0181_s01,ins_u_0181_003,{},v2.3.0-buggy +evt_003529,u_0181,onboarding_step_viewed,2026-06-14T13:49:00Z,u_0181_s01,ins_u_0181_004,{},v2.3.0-buggy +evt_003530,u_0563,signup_started,2026-06-14T13:50:00Z,u_0563_s01,ins_u_0563_001,{},v2.3.0-buggy +evt_003531,u_0563,signup_completed,2026-06-14T13:54:00Z,u_0563_s01,ins_u_0563_002,{},v2.3.0-buggy +evt_003532,u_0563,onboarding_completed,2026-06-14T13:55:00Z,u_0563_s01,ins_u_0563_003,{},v2.3.0-buggy +evt_003533,u_0591,activation_completed,2026-06-14T13:56:00Z,u_0591_s01,ins_u_0591_007,{},v2.3.0-buggy +evt_003534,u_0127,onboarding_completed,2026-06-14T13:58:00Z,u_0127_s01,ins_u_0127_004,"{""completed_at"": ""2026-06-14T13:48:00Z""}",v2.3.0-buggy +evt_003535,u_0579,signup_started,2026-06-14T13:59:00Z,u_0579_s01,ins_u_0579_001,{},v2.3.0-buggy +evt_003536,u_0563,session_abandoned,2026-06-14T14:03:00Z,u_0563_s01,ins_u_0563_004,{},v2.3.0-buggy +evt_003537,u_0579,signup_completed,2026-06-14T14:05:00Z,u_0579_s01,ins_u_0579_002,{},v2.3.0-buggy +evt_003538,u_0005,activation_completed,2026-06-14T14:06:00Z,u_0005_s01,ins_u_0005_006,{},v2.3.0-buggy +evt_003539,u_0181,feature_used,2026-06-14T14:06:00Z,u_0181_s01,ins_u_0181_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003540,u_0579,profile_saved,2026-06-14T14:15:00Z,u_0579_s01,ins_u_0579_003,{},v2.3.0-buggy +evt_003541,u_0756,signup_started,2026-06-14T14:16:00Z,u_0756_s01,ins_u_0756_001,{},v2.3.0-buggy +evt_003542,u_0181,onboarding_completed,2026-06-14T14:22:00Z,u_0181_s01,ins_u_0181_006,"{""completed_at"": ""2026-06-14T14:22:00Z""}",v2.3.0-buggy +evt_003543,u_0397,signup_started,2026-06-14T14:23:00Z,u_0397_s01,ins_u_0397_001,{},v2.3.0-buggy +evt_003544,u_0756,signup_completed,2026-06-14T14:24:00Z,u_0756_s01,ins_u_0756_002,{},v2.3.0-buggy +evt_003545,u_0397,signup_completed,2026-06-14T14:25:00Z,u_0397_s01,ins_u_0397_002,{},v2.3.0-buggy +evt_003546,u_0734,signup_started,2026-06-14T14:25:00Z,u_0734_s01,ins_u_0734_001,{},v2.3.0-buggy +evt_003547,u_0756,profile_saved,2026-06-14T14:30:00Z,u_0756_s01,ins_u_0756_003,{},v2.3.0-buggy +evt_003548,u_0106,signup_started,2026-06-14T14:31:00Z,u_0106_s01,ins_u_0106_001,{},v2.3.0-buggy +evt_003549,u_0734,signup_completed,2026-06-14T14:32:00Z,u_0734_s01,ins_u_0734_002,{},v2.3.0-buggy +evt_003550,u_0756,onboarding_step_viewed,2026-06-14T14:32:00Z,u_0756_s01,ins_u_0756_004,{},v2.3.0-buggy +evt_003551,u_0734,upsell_modal_shown,2026-06-14T14:33:00Z,u_0734_s01,ins_u_0734_003,{},v2.3.0-buggy +evt_003552,u_0734,onboarding_completed,2026-06-14T14:33:00Z,u_0734_s01,ins_u_0734_004,{},v2.3.0-buggy +evt_003553,u_0024,signup_started,2026-06-14T14:34:00Z,u_0024_s01,ins_u_0024_001,{},v2.3.0-buggy +evt_003554,u_0397,profile_saved,2026-06-14T14:34:00Z,u_0397_s01,ins_u_0397_003,{},v2.3.0-buggy +evt_003555,u_0545,signup_started,2026-06-14T14:34:00Z,u_0545_s01,ins_u_0545_001,{},v2.3.0-buggy +evt_003556,u_0106,session_abandoned,2026-06-14T14:35:00Z,u_0106_s01,ins_u_0106_002,{},v2.3.0-buggy +evt_003557,u_0397,error_shown,2026-06-14T14:35:00Z,u_0397_s01,ins_u_0397_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003558,u_0654,signup_started,2026-06-14T14:35:00Z,u_0654_s01,ins_u_0654_001,{},v2.3.0-buggy +evt_003559,u_0579,feature_used,2026-06-14T14:36:00Z,u_0579_s01,ins_u_0579_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003560,u_0734,session_abandoned,2026-06-14T14:36:00Z,u_0734_s01,ins_u_0734_005,{},v2.3.0-buggy +evt_003561,u_0545,signup_completed,2026-06-14T14:38:00Z,u_0545_s01,ins_u_0545_002,{},v2.3.0-buggy +evt_003562,u_0724,signup_started,2026-06-14T14:38:00Z,u_0724_s01,ins_u_0724_001,{},v2.3.0-buggy +evt_003563,u_0632,signup_started,2026-06-14T14:39:00Z,u_0632_s01,ins_u_0632_001,{},v2.3.0-buggy +evt_003564,u_0024,signup_completed,2026-06-14T14:40:00Z,u_0024_s01,ins_u_0024_002,{},v2.3.0-buggy +evt_003565,u_0038,signup_started,2026-06-14T14:41:00Z,u_0038_s01,ins_u_0038_001,{},v2.3.0-buggy +evt_003566,u_0537,signup_started,2026-06-14T14:41:00Z,u_0537_s01,ins_u_0537_001,{},v2.3.0-buggy +evt_003567,u_0545,profile_saved,2026-06-14T14:41:00Z,u_0545_s01,ins_u_0545_003,{},v2.3.0-buggy +evt_003568,u_0654,signup_completed,2026-06-14T14:41:00Z,u_0654_s01,ins_u_0654_002,{},v2.3.0-buggy +evt_003569,u_0038,session_abandoned,2026-06-14T14:43:00Z,u_0038_s01,ins_u_0038_002,{},v2.3.0-buggy +evt_003570,u_0302,signup_started,2026-06-14T14:43:00Z,u_0302_s01,ins_u_0302_001,{},v2.3.0-buggy +evt_003571,u_0353,signup_started,2026-06-14T14:43:00Z,u_0353_s01,ins_u_0353_001,{},v2.3.0-buggy +evt_003572,u_0545,onboarding_step_viewed,2026-06-14T14:43:00Z,u_0545_s01,ins_u_0545_004,{},v2.3.0-buggy +evt_003573,u_0632,signup_completed,2026-06-14T14:45:00Z,u_0632_s01,ins_u_0632_002,{},v2.3.0-buggy +evt_003574,u_0024,profile_saved,2026-06-14T14:46:00Z,u_0024_s01,ins_u_0024_003,{},v2.3.0-buggy +evt_003575,u_0724,signup_completed,2026-06-14T14:46:00Z,u_0724_s01,ins_u_0724_002,{},v2.3.0-buggy +evt_003576,u_0147,signup_started,2026-06-14T14:47:00Z,u_0147_s01,ins_u_0147_001,{},v2.3.0-buggy +evt_003577,u_0537,signup_completed,2026-06-14T14:47:00Z,u_0537_s01,ins_u_0537_002,{},v2.3.0-buggy +evt_003578,u_0724,onboarding_completed,2026-06-14T14:47:00Z,u_0724_s01,ins_u_0724_003,{},v2.3.0-buggy +evt_003579,u_0302,signup_completed,2026-06-14T14:48:00Z,u_0302_s01,ins_u_0302_002,{},v2.3.0-buggy +evt_003580,u_0537,signup_completed,2026-06-14T14:48:00Z,u_0537_s01,ins_u_0537_002,{},v2.3.0-buggy +evt_003581,u_0758,return_visit,2026-06-14T14:49:00Z,u_0758_s02,ins_u_0758_008,{},v2.3.0-buggy +evt_003582,u_0654,profile_saved,2026-06-14T14:50:00Z,u_0654_s01,ins_u_0654_003,{},v2.3.0-buggy +evt_003583,u_0724,session_abandoned,2026-06-14T14:50:00Z,u_0724_s01,ins_u_0724_004,{},v2.3.0-buggy +evt_003584,u_0147,session_abandoned,2026-06-14T14:51:00Z,u_0147_s01,ins_u_0147_002,{},v2.3.0-buggy +evt_003585,u_0353,signup_completed,2026-06-14T14:51:00Z,u_0353_s01,ins_u_0353_002,{},v2.3.0-buggy +evt_003586,u_0537,session_abandoned,2026-06-14T14:52:00Z,u_0537_s01,ins_u_0537_003,{},v2.3.0-buggy +evt_003587,u_0671,signup_started,2026-06-14T14:52:00Z,u_0671_s01,ins_u_0671_001,{},v2.3.0-buggy +evt_003588,u_0397,feature_used,2026-06-14T14:53:00Z,u_0397_s01,ins_u_0397_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003589,u_0579,onboarding_completed,2026-06-14T14:53:00Z,u_0579_s01,ins_u_0579_005,"{""completed_at"": ""2026-06-14T14:45:00Z""}",v2.3.0-buggy +evt_003590,u_0654,onboarding_step_viewed,2026-06-14T14:53:00Z,u_0654_s01,ins_u_0654_004,{},v2.3.0-buggy +evt_003591,u_0671,signup_completed,2026-06-14T14:53:00Z,u_0671_s01,ins_u_0671_002,{},v2.3.0-buggy +evt_003592,u_0758,feature_used,2026-06-14T14:54:00Z,u_0758_s02,ins_u_0758_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003593,u_0302,profile_saved,2026-06-14T14:55:00Z,u_0302_s01,ins_u_0302_003,{},v2.3.0-buggy +evt_003594,u_0632,profile_saved,2026-06-14T14:55:00Z,u_0632_s01,ins_u_0632_003,{},v2.3.0-buggy +evt_003595,u_0024,feature_used,2026-06-14T14:57:00Z,u_0024_s01,ins_u_0024_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_003596,u_0632,onboarding_step_viewed,2026-06-14T14:58:00Z,u_0632_s01,ins_u_0632_004,{},v2.3.0-buggy +evt_003597,u_0654,feature_used,2026-06-14T14:58:00Z,u_0654_s01,ins_u_0654_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003598,u_0671,profile_saved,2026-06-14T14:59:00Z,u_0671_s01,ins_u_0671_003,{},v2.3.0-buggy +evt_003599,u_0756,onboarding_completed,2026-06-14T14:59:00Z,u_0756_s01,ins_u_0756_005,"{""completed_at"": ""2026-06-14T14:56:00Z""}",v2.3.0-buggy +evt_003600,u_0353,profile_saved,2026-06-14T15:01:00Z,u_0353_s01,ins_u_0353_003,{},v2.3.0-buggy +evt_003601,u_0671,onboarding_step_viewed,2026-06-14T15:01:00Z,u_0671_s01,ins_u_0671_004,{},v2.3.0-buggy +evt_003602,u_0621,signup_started,2026-06-14T15:02:00Z,u_0621_s01,ins_u_0621_001,{},v2.3.0-buggy +evt_003603,u_0621,session_abandoned,2026-06-14T15:03:00Z,u_0621_s01,ins_u_0621_002,{},v2.3.0-buggy +evt_003604,u_0632,feature_used,2026-06-14T15:06:00Z,u_0632_s01,ins_u_0632_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003605,u_0397,onboarding_completed,2026-06-14T15:08:00Z,u_0397_s01,ins_u_0397_006,"{""completed_at"": ""2026-06-14T15:04:00Z""}",v2.3.0-buggy +evt_003606,u_0545,onboarding_completed,2026-06-14T15:11:00Z,u_0545_s01,ins_u_0545_005,"{""completed_at"": ""2026-06-14T15:19:00Z""}",v2.3.0-buggy +evt_003607,u_0434,signup_started,2026-06-14T15:14:00Z,u_0434_s01,ins_u_0434_001,{},v2.3.0-buggy +evt_003608,u_0752,signup_started,2026-06-14T15:14:00Z,u_0752_s01,ins_u_0752_001,{},v2.3.0-buggy +evt_003609,u_0752,signup_completed,2026-06-14T15:16:00Z,u_0752_s01,ins_u_0752_002,{},v2.3.0-buggy +evt_003610,u_0671,feature_used,2026-06-14T15:21:00Z,u_0671_s01,ins_u_0671_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003611,u_0302,onboarding_completed,2026-06-14T15:22:00Z,u_0302_s01,ins_u_0302_004,"{""completed_at"": ""2026-06-14T15:29:00Z""}",v2.3.0-buggy +evt_003612,u_0434,signup_completed,2026-06-14T15:22:00Z,u_0434_s01,ins_u_0434_002,{},v2.3.0-buggy +evt_003613,u_0752,profile_saved,2026-06-14T15:22:00Z,u_0752_s01,ins_u_0752_003,{},v2.3.0-buggy +evt_003614,u_0434,signup_completed,2026-06-14T15:23:00Z,u_0434_s01,ins_u_0434_002,{},v2.3.0-buggy +evt_003615,u_0671,onboarding_completed,2026-06-14T15:25:00Z,u_0671_s01,ins_u_0671_006,"{""completed_at"": ""2026-06-14T15:35:00Z""}",v2.3.0-buggy +evt_003616,u_0527,signup_started,2026-06-14T15:26:00Z,u_0527_s01,ins_u_0527_001,{},v2.3.0-buggy +evt_003617,u_0024,onboarding_completed,2026-06-14T15:28:00Z,u_0024_s01,ins_u_0024_005,"{""completed_at"": ""2026-06-14T15:23:00Z""}",v2.3.0-buggy +evt_003618,u_0752,onboarding_step_viewed,2026-06-14T15:28:00Z,u_0752_s01,ins_u_0752_004,{},v2.3.0-buggy +evt_003619,u_0434,session_abandoned,2026-06-14T15:31:00Z,u_0434_s01,ins_u_0434_003,{},v2.3.0-buggy +evt_003620,u_0527,signup_completed,2026-06-14T15:31:00Z,u_0527_s01,ins_u_0527_002,{},v2.3.0-buggy +evt_003621,u_0632,onboarding_completed,2026-06-14T15:34:00Z,u_0632_s01,ins_u_0632_006,"{""completed_at"": ""2026-06-14T15:21:00Z""}",v2.3.0-buggy +evt_003622,u_0654,onboarding_completed,2026-06-14T15:34:00Z,u_0654_s01,ins_u_0654_006,"{""completed_at"": ""2026-06-14T15:23:00Z""}",v2.3.0-buggy +evt_003623,u_0353,onboarding_completed,2026-06-14T15:36:00Z,u_0353_s01,ins_u_0353_004,"{""completed_at"": ""2026-06-14T15:30:00Z""}",v2.3.0-buggy +evt_003624,u_0527,profile_saved,2026-06-14T15:36:00Z,u_0527_s01,ins_u_0527_003,{},v2.3.0-buggy +evt_003625,u_0752,feature_used,2026-06-14T15:39:00Z,u_0752_s01,ins_u_0752_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003626,u_0527,onboarding_step_viewed,2026-06-14T15:42:00Z,u_0527_s01,ins_u_0527_004,{},v2.3.0-buggy +evt_003627,u_0752,onboarding_completed,2026-06-14T15:49:00Z,u_0752_s01,ins_u_0752_006,"{""completed_at"": ""2026-06-14T15:57:00Z""}",v2.3.0-buggy +evt_003628,u_0741,signup_started,2026-06-14T15:50:00Z,u_0741_s01,ins_u_0741_001,{},v2.3.0-buggy +evt_003629,u_0019,signup_started,2026-06-14T15:53:00Z,u_0019_s01,ins_u_0019_001,{},v2.3.0-buggy +evt_003630,u_0024,activation_completed,2026-06-14T15:53:00Z,u_0024_s01,ins_u_0024_006,{},v2.3.0-buggy +evt_003631,u_0741,signup_completed,2026-06-14T15:53:00Z,u_0741_s01,ins_u_0741_002,{},v2.3.0-buggy +evt_003632,u_0671,activation_completed,2026-06-14T15:54:00Z,u_0671_s01,ins_u_0671_007,{},v2.3.0-buggy +evt_003633,u_0019,signup_completed,2026-06-14T15:57:00Z,u_0019_s01,ins_u_0019_002,{},v2.3.0-buggy +evt_003634,u_0741,profile_saved,2026-06-14T16:01:00Z,u_0741_s01,ins_u_0741_003,{},v2.3.0-buggy +evt_003635,u_0019,session_abandoned,2026-06-14T16:02:00Z,u_0019_s01,ins_u_0019_003,{},v2.3.0-buggy +evt_003636,u_0741,onboarding_step_viewed,2026-06-14T16:04:00Z,u_0741_s01,ins_u_0741_004,{},v2.3.0-buggy +evt_003637,u_0282,signup_started,2026-06-14T16:08:00Z,u_0282_s01,ins_u_0282_001,{},v2.3.0-buggy +evt_003638,u_0329,signup_started,2026-06-14T16:09:00Z,u_0329_s01,ins_u_0329_001,{},v2.3.0-buggy +evt_003639,u_0282,signup_completed,2026-06-14T16:10:00Z,u_0282_s01,ins_u_0282_002,{},v2.3.0-buggy +evt_003640,u_0527,onboarding_completed,2026-06-14T16:12:00Z,u_0527_s01,ins_u_0527_005,"{""completed_at"": ""2026-06-14T16:14:00Z""}",v2.3.0-buggy +evt_003641,u_0353,activation_completed,2026-06-14T16:14:00Z,u_0353_s01,ins_u_0353_005,{},v2.3.0-buggy +evt_003642,u_0180,signup_started,2026-06-14T16:15:00Z,u_0180_s01,ins_u_0180_001,{},v2.3.0-buggy +evt_003643,u_0282,profile_saved,2026-06-14T16:16:00Z,u_0282_s01,ins_u_0282_003,{},v2.3.0-buggy +evt_003644,u_0329,signup_completed,2026-06-14T16:16:00Z,u_0329_s01,ins_u_0329_002,{},v2.3.0-buggy +evt_003645,u_0256,signup_started,2026-06-14T16:18:00Z,u_0256_s01,ins_u_0256_001,{},v2.3.0-buggy +evt_003646,u_0282,onboarding_step_viewed,2026-06-14T16:18:00Z,u_0282_s01,ins_u_0282_004,{},v2.3.0-buggy +evt_003647,u_0260,signup_started,2026-06-14T16:20:00Z,u_0260_s01,ins_u_0260_001,{},v2.3.0-buggy +evt_003648,u_0180,signup_completed,2026-06-14T16:21:00Z,u_0180_s01,ins_u_0180_002,{},v2.3.0-buggy +evt_003649,u_0256,signup_completed,2026-06-14T16:21:00Z,u_0256_s01,ins_u_0256_002,{},v2.3.0-buggy +evt_003650,u_0180,onboarding_completed,2026-06-14T16:24:00Z,u_0180_s01,ins_u_0180_003,{},v2.3.0-buggy +evt_003651,u_0180,session_abandoned,2026-06-14T16:26:00Z,u_0180_s01,ins_u_0180_004,{},v2.3.0-buggy +evt_003652,u_0329,profile_saved,2026-06-14T16:26:00Z,u_0329_s01,ins_u_0329_003,{},v2.3.0-buggy +evt_003653,u_0741,feature_used,2026-06-14T16:26:00Z,u_0741_s01,ins_u_0741_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003654,u_0260,session_abandoned,2026-06-14T16:28:00Z,u_0260_s01,ins_u_0260_002,{},v2.3.0-buggy +evt_003655,u_0329,onboarding_step_viewed,2026-06-14T16:30:00Z,u_0329_s01,ins_u_0329_004,{},v2.3.0-buggy +evt_003656,u_0256,profile_saved,2026-06-14T16:31:00Z,u_0256_s01,ins_u_0256_003,{},v2.3.0-buggy +evt_003657,u_0498,signup_started,2026-06-14T16:31:00Z,u_0498_s01,ins_u_0498_001,{},v2.3.0-buggy +evt_003658,u_0752,activation_completed,2026-06-14T16:34:00Z,u_0752_s01,ins_u_0752_007,{},v2.3.0-buggy +evt_003659,u_0702,signup_started,2026-06-14T16:35:00Z,u_0702_s01,ins_u_0702_001,{},v2.3.0-buggy +evt_003660,u_0752,activation_completed,2026-06-14T16:35:00Z,u_0752_s01,ins_u_0752_007,{},v2.3.0-buggy +evt_003661,u_0702,signup_completed,2026-06-14T16:36:00Z,u_0702_s01,ins_u_0702_002,{},v2.3.0-buggy +evt_003662,u_0256,onboarding_step_viewed,2026-06-14T16:37:00Z,u_0256_s01,ins_u_0256_004,{},v2.3.0-buggy +evt_003663,u_0527,activation_completed,2026-06-14T16:37:00Z,u_0527_s01,ins_u_0527_006,{},v2.3.0-buggy +evt_003664,u_0498,signup_completed,2026-06-14T16:38:00Z,u_0498_s01,ins_u_0498_002,{},v2.3.0-buggy +evt_003665,u_0741,onboarding_completed,2026-06-14T16:38:00Z,u_0741_s01,ins_u_0741_006,"{""completed_at"": ""2026-06-14T16:32:00Z""}",v2.3.0-buggy +evt_003666,u_0717,signup_started,2026-06-14T16:39:00Z,u_0717_s01,ins_u_0717_001,{},v2.3.0-buggy +evt_003667,u_0498,onboarding_completed,2026-06-14T16:40:00Z,u_0498_s01,ins_u_0498_003,{},v2.3.0-buggy +evt_003668,u_0717,signup_completed,2026-06-14T16:41:00Z,u_0717_s01,ins_u_0717_002,{},v2.3.0-buggy +evt_003669,u_0256,feature_used,2026-06-14T16:42:00Z,u_0256_s01,ins_u_0256_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003670,u_0498,session_abandoned,2026-06-14T16:42:00Z,u_0498_s01,ins_u_0498_004,{},v2.3.0-buggy +evt_003671,u_0717,onboarding_completed,2026-06-14T16:42:00Z,u_0717_s01,ins_u_0717_003,{},v2.3.0-buggy +evt_003672,u_0702,profile_saved,2026-06-14T16:43:00Z,u_0702_s01,ins_u_0702_003,{},v2.3.0-buggy +evt_003673,u_0717,session_abandoned,2026-06-14T16:47:00Z,u_0717_s01,ins_u_0717_004,{},v2.3.0-buggy +evt_003674,u_0741,activation_completed,2026-06-14T16:47:00Z,u_0741_s01,ins_u_0741_007,{},v2.3.0-buggy +evt_003675,u_0702,onboarding_step_viewed,2026-06-14T16:49:00Z,u_0702_s01,ins_u_0702_004,{},v2.3.0-buggy +evt_003676,u_0071,signup_started,2026-06-14T16:54:00Z,u_0071_s01,ins_u_0071_001,{},v2.3.0-buggy +evt_003677,u_0282,onboarding_completed,2026-06-14T16:56:00Z,u_0282_s01,ins_u_0282_005,"{""completed_at"": ""2026-06-14T16:43:00Z""}",v2.3.0-buggy +evt_003678,u_0071,signup_completed,2026-06-14T17:01:00Z,u_0071_s01,ins_u_0071_002,{},v2.3.0-buggy +evt_003679,u_0329,onboarding_completed,2026-06-14T17:01:00Z,u_0329_s01,ins_u_0329_005,"{""completed_at"": ""2026-06-14T16:53:00Z""}",v2.3.0-buggy +evt_003680,u_0702,feature_used,2026-06-14T17:03:00Z,u_0702_s01,ins_u_0702_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003681,u_0071,profile_saved,2026-06-14T17:07:00Z,u_0071_s01,ins_u_0071_003,{},v2.3.0-buggy +evt_003682,u_0256,onboarding_completed,2026-06-14T17:09:00Z,u_0256_s01,ins_u_0256_006,"{""completed_at"": ""2026-06-14T17:07:00Z""}",v2.3.0-buggy +evt_003683,u_0071,onboarding_step_viewed,2026-06-14T17:12:00Z,u_0071_s01,ins_u_0071_004,{},v2.3.0-buggy +evt_003684,u_0702,onboarding_completed,2026-06-14T17:13:00Z,u_0702_s01,ins_u_0702_006,"{""completed_at"": ""2026-06-14T17:15:00Z""}",v2.3.0-buggy +evt_003685,u_0253,signup_started,2026-06-14T17:16:00Z,u_0253_s01,ins_u_0253_001,{},v2.3.0-buggy +evt_003686,u_0071,feature_used,2026-06-14T17:18:00Z,u_0071_s01,ins_u_0071_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003687,u_0228,signup_started,2026-06-14T17:23:00Z,u_0228_s01,ins_u_0228_001,{},v2.3.0-buggy +evt_003688,u_0253,signup_completed,2026-06-14T17:24:00Z,u_0253_s01,ins_u_0253_002,{},v2.3.0-buggy +evt_003689,u_0207,signup_started,2026-06-14T17:31:00Z,u_0207_s01,ins_u_0207_001,{},v2.3.0-buggy +evt_003690,u_0228,signup_completed,2026-06-14T17:31:00Z,u_0228_s01,ins_u_0228_002,{},v2.3.0-buggy +evt_003691,u_0253,profile_saved,2026-06-14T17:31:00Z,u_0253_s01,ins_u_0253_003,{},v2.3.0-buggy +evt_003692,u_0329,activation_completed,2026-06-14T17:31:00Z,u_0329_s01,ins_u_0329_006,{},v2.3.0-buggy +evt_003693,u_0207,signup_completed,2026-06-14T17:34:00Z,u_0207_s01,ins_u_0207_002,{},v2.3.0-buggy +evt_003694,u_0228,profile_saved,2026-06-14T17:36:00Z,u_0228_s01,ins_u_0228_003,{},v2.3.0-buggy +evt_003695,u_0386,signup_started,2026-06-14T17:36:00Z,u_0386_s01,ins_u_0386_001,{},v2.3.0-buggy +evt_003696,u_0207,profile_saved,2026-06-14T17:37:00Z,u_0207_s01,ins_u_0207_003,{},v2.3.0-buggy +evt_003697,u_0253,onboarding_step_viewed,2026-06-14T17:37:00Z,u_0253_s01,ins_u_0253_004,{},v2.3.0-buggy +evt_003698,u_0386,signup_completed,2026-06-14T17:37:00Z,u_0386_s01,ins_u_0386_002,{},v2.3.0-buggy +evt_003699,u_0606,signup_started,2026-06-14T17:37:00Z,u_0606_s01,ins_u_0606_001,{},v2.3.0-buggy +evt_003700,u_0207,error_shown,2026-06-14T17:38:00Z,u_0207_s01,ins_u_0207_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003701,u_0386,profile_saved,2026-06-14T17:39:00Z,u_0386_s01,ins_u_0386_003,{},v2.3.0-buggy +evt_003702,u_0674,signup_started,2026-06-14T17:40:00Z,u_0674_s01,ins_u_0674_001,{},v2.3.0-buggy +evt_003703,u_0207,onboarding_step_viewed,2026-06-14T17:42:00Z,u_0207_s01,ins_u_0207_005,{},v2.3.0-buggy +evt_003704,u_0228,onboarding_step_viewed,2026-06-14T17:42:00Z,u_0228_s01,ins_u_0228_004,{},v2.3.0-buggy +evt_003705,u_0674,signup_completed,2026-06-14T17:42:00Z,u_0674_s01,ins_u_0674_002,{},v2.3.0-buggy +evt_003706,u_0207,onboarding_step_viewed,2026-06-14T17:43:00Z,u_0207_s01,ins_u_0207_005,{},v2.3.0-buggy +evt_003707,u_0386,onboarding_step_viewed,2026-06-14T17:43:00Z,u_0386_s01,ins_u_0386_004,{},v2.3.0-buggy +evt_003708,u_0617,signup_started,2026-06-14T17:43:00Z,u_0617_s01,ins_u_0617_001,{},v2.3.0-buggy +evt_003709,u_0228,feature_used,2026-06-14T17:44:00Z,u_0228_s01,ins_u_0228_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003710,u_0606,signup_completed,2026-06-14T17:44:00Z,u_0606_s01,ins_u_0606_002,{},v2.3.0-buggy +evt_003711,u_0071,onboarding_completed,2026-06-14T17:46:00Z,u_0071_s01,ins_u_0071_006,"{""completed_at"": ""2026-06-14T17:39:00Z""}",v2.3.0-buggy +evt_003712,u_0617,signup_completed,2026-06-14T17:47:00Z,u_0617_s01,ins_u_0617_002,{},v2.3.0-buggy +evt_003713,u_0674,profile_saved,2026-06-14T17:47:00Z,u_0674_s01,ins_u_0674_003,{},v2.3.0-buggy +evt_003714,u_0606,profile_saved,2026-06-14T17:50:00Z,u_0606_s01,ins_u_0606_003,{},v2.3.0-buggy +evt_003715,u_0674,onboarding_step_viewed,2026-06-14T17:50:00Z,u_0674_s01,ins_u_0674_004,{},v2.3.0-buggy +evt_003716,u_0207,feature_used,2026-06-14T17:53:00Z,u_0207_s01,ins_u_0207_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003717,u_0617,profile_saved,2026-06-14T17:53:00Z,u_0617_s01,ins_u_0617_003,{},v2.3.0-buggy +evt_003718,u_0253,feature_used,2026-06-14T17:55:00Z,u_0253_s01,ins_u_0253_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003719,u_0298,signup_started,2026-06-14T17:55:00Z,u_0298_s01,ins_u_0298_001,{},v2.3.0-buggy +evt_003720,u_0377,return_visit,2026-06-14T17:56:00Z,u_0377_s02,ins_u_0377_008,{},v2.3.0-buggy +evt_003721,u_0606,onboarding_step_viewed,2026-06-14T17:56:00Z,u_0606_s01,ins_u_0606_004,{},v2.3.0-buggy +evt_003722,u_0617,onboarding_step_viewed,2026-06-14T17:58:00Z,u_0617_s01,ins_u_0617_004,{},v2.3.0-buggy +evt_003723,u_0377,feature_used,2026-06-14T18:01:00Z,u_0377_s02,ins_u_0377_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003724,u_0298,signup_completed,2026-06-14T18:03:00Z,u_0298_s01,ins_u_0298_002,{},v2.3.0-buggy +evt_003725,u_0386,feature_used,2026-06-14T18:03:00Z,u_0386_s01,ins_u_0386_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003726,u_0674,feature_used,2026-06-14T18:07:00Z,u_0674_s01,ins_u_0674_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003727,u_0298,session_abandoned,2026-06-14T18:11:00Z,u_0298_s01,ins_u_0298_003,{},v2.3.0-buggy +evt_003728,u_0228,onboarding_completed,2026-06-14T18:15:00Z,u_0228_s01,ins_u_0228_006,"{""completed_at"": ""2026-06-14T18:03:00Z""}",v2.3.0-buggy +evt_003729,u_0253,onboarding_completed,2026-06-14T18:15:00Z,u_0253_s01,ins_u_0253_006,"{""completed_at"": ""2026-06-14T18:08:00Z""}",v2.3.0-buggy +evt_003730,u_0386,onboarding_completed,2026-06-14T18:15:00Z,u_0386_s01,ins_u_0386_006,"{""completed_at"": ""2026-06-14T18:05:00Z""}",v2.3.0-buggy +evt_003731,u_0606,feature_used,2026-06-14T18:15:00Z,u_0606_s01,ins_u_0606_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003732,u_0247,signup_started,2026-06-14T18:17:00Z,u_0247_s01,ins_u_0247_001,{},v2.3.0-buggy +evt_003733,u_0439,signup_started,2026-06-14T18:17:00Z,u_0439_s01,ins_u_0439_001,{},v2.3.0-buggy +evt_003734,u_0617,feature_used,2026-06-14T18:18:00Z,u_0617_s01,ins_u_0617_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003735,u_0247,signup_completed,2026-06-14T18:19:00Z,u_0247_s01,ins_u_0247_002,{},v2.3.0-buggy +evt_003736,u_0207,onboarding_completed,2026-06-14T18:20:00Z,u_0207_s01,ins_u_0207_007,"{""completed_at"": ""2026-06-14T18:03:00Z""}",v2.3.0-buggy +evt_003737,u_0069,signup_started,2026-06-14T18:23:00Z,u_0069_s01,ins_u_0069_001,{},v2.3.0-buggy +evt_003738,u_0439,session_abandoned,2026-06-14T18:23:00Z,u_0439_s01,ins_u_0439_002,{},v2.3.0-buggy +evt_003739,u_0606,onboarding_completed,2026-06-14T18:23:00Z,u_0606_s01,ins_u_0606_006,"{""completed_at"": ""2026-06-14T18:29:00Z""}",v2.3.0-buggy +evt_003740,u_0674,onboarding_completed,2026-06-14T18:23:00Z,u_0674_s01,ins_u_0674_006,"{""completed_at"": ""2026-06-14T18:15:00Z""}",v2.3.0-buggy +evt_003741,u_0247,profile_saved,2026-06-14T18:26:00Z,u_0247_s01,ins_u_0247_003,{},v2.3.0-buggy +evt_003742,u_0202,signup_started,2026-06-14T18:28:00Z,u_0202_s01,ins_u_0202_001,{},v2.3.0-buggy +evt_003743,u_0247,onboarding_step_viewed,2026-06-14T18:29:00Z,u_0247_s01,ins_u_0247_004,{},v2.3.0-buggy +evt_003744,u_0228,activation_completed,2026-06-14T18:30:00Z,u_0228_s01,ins_u_0228_007,{},v2.3.0-buggy +evt_003745,u_0069,signup_completed,2026-06-14T18:31:00Z,u_0069_s01,ins_u_0069_002,{},v2.3.0-buggy +evt_003746,u_0617,onboarding_completed,2026-06-14T18:31:00Z,u_0617_s01,ins_u_0617_006,"{""completed_at"": ""2026-06-14T18:24:00Z""}",v2.3.0-buggy +evt_003747,u_0253,activation_completed,2026-06-14T18:32:00Z,u_0253_s01,ins_u_0253_007,{},v2.3.0-buggy +evt_003748,u_0069,profile_saved,2026-06-14T18:33:00Z,u_0069_s01,ins_u_0069_003,{},v2.3.0-buggy +evt_003749,u_0069,error_shown,2026-06-14T18:34:00Z,u_0069_s01,ins_u_0069_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003750,u_0202,signup_completed,2026-06-14T18:35:00Z,u_0202_s01,ins_u_0202_002,{},v2.3.0-buggy +evt_003751,u_0069,onboarding_step_viewed,2026-06-14T18:36:00Z,u_0069_s01,ins_u_0069_005,{},v2.3.0-buggy +evt_003752,u_0779,signup_started,2026-06-14T18:36:00Z,u_0779_s01,ins_u_0779_001,{},v2.3.0-buggy +evt_003753,u_0779,signup_completed,2026-06-14T18:37:00Z,u_0779_s01,ins_u_0779_002,{},v2.3.0-buggy +evt_003754,u_0779,upsell_modal_shown,2026-06-14T18:38:00Z,u_0779_s01,ins_u_0779_003,{},v2.3.0-buggy +evt_003755,u_0165,signup_started,2026-06-14T18:39:00Z,u_0165_s01,ins_u_0165_001,{},v2.3.0-buggy +evt_003756,u_0202,profile_saved,2026-06-14T18:39:00Z,u_0202_s01,ins_u_0202_003,{},v2.3.0-buggy +evt_003757,u_0165,signup_completed,2026-06-14T18:41:00Z,u_0165_s01,ins_u_0165_002,{},v2.3.0-buggy +evt_003758,u_0202,onboarding_step_viewed,2026-06-14T18:41:00Z,u_0202_s01,ins_u_0202_004,{},v2.3.0-buggy +evt_003759,u_0073,signup_started,2026-06-14T18:43:00Z,u_0073_s01,ins_u_0073_001,{},v2.3.0-buggy +evt_003760,u_0779,profile_saved,2026-06-14T18:44:00Z,u_0779_s01,ins_u_0779_004,{},v2.3.0-buggy +evt_003761,u_0073,signup_completed,2026-06-14T18:46:00Z,u_0073_s01,ins_u_0073_002,{},v2.3.0-buggy +evt_003762,u_0165,profile_saved,2026-06-14T18:46:00Z,u_0165_s01,ins_u_0165_003,{},v2.3.0-buggy +evt_003763,u_0779,onboarding_step_viewed,2026-06-14T18:46:00Z,u_0779_s01,ins_u_0779_005,{},v2.3.0-buggy +evt_003764,u_0247,feature_used,2026-06-14T18:47:00Z,u_0247_s01,ins_u_0247_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003765,u_0773,signup_started,2026-06-14T18:47:00Z,u_0773_s01,ins_u_0773_001,{},v2.3.0-buggy +evt_003766,u_0773,session_abandoned,2026-06-14T18:48:00Z,u_0773_s01,ins_u_0773_002,{},v2.3.0-buggy +evt_003767,u_0073,profile_saved,2026-06-14T18:52:00Z,u_0073_s01,ins_u_0073_003,{},v2.3.0-buggy +evt_003768,u_0073,error_shown,2026-06-14T18:53:00Z,u_0073_s01,ins_u_0073_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003769,u_0727,signup_started,2026-06-14T18:54:00Z,u_0727_s01,ins_u_0727_001,{},v2.3.0-buggy +evt_003770,u_0073,onboarding_step_viewed,2026-06-14T18:56:00Z,u_0073_s01,ins_u_0073_005,{},v2.3.0-buggy +evt_003771,u_0179,signup_started,2026-06-14T18:56:00Z,u_0179_s01,ins_u_0179_001,{},v2.3.0-buggy +evt_003772,u_0727,session_abandoned,2026-06-14T18:56:00Z,u_0727_s01,ins_u_0727_002,{},v2.3.0-buggy +evt_003773,u_0617,activation_completed,2026-06-14T18:57:00Z,u_0617_s01,ins_u_0617_007,{},v2.3.0-buggy +evt_003774,u_0179,signup_completed,2026-06-14T18:59:00Z,u_0179_s01,ins_u_0179_002,{},v2.3.0-buggy +evt_003775,u_0674,activation_completed,2026-06-14T19:01:00Z,u_0674_s01,ins_u_0674_007,{},v2.3.0-buggy +evt_003776,u_0606,activation_completed,2026-06-14T19:02:00Z,u_0606_s01,ins_u_0606_007,{},v2.3.0-buggy +evt_003777,u_0202,feature_used,2026-06-14T19:03:00Z,u_0202_s01,ins_u_0202_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003778,u_0612,signup_started,2026-06-14T19:03:00Z,u_0612_s01,ins_u_0612_001,{},v2.3.0-buggy +evt_003779,u_0165,feature_used,2026-06-14T19:04:00Z,u_0165_s01,ins_u_0165_004,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003780,u_0179,profile_saved,2026-06-14T19:05:00Z,u_0179_s01,ins_u_0179_003,{},v2.3.0-buggy +evt_003781,u_0073,feature_used,2026-06-14T19:06:00Z,u_0073_s01,ins_u_0073_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003782,u_0788,signup_started,2026-06-14T19:06:00Z,u_0788_s01,ins_u_0788_001,{},v2.3.0-buggy +evt_003783,u_0788,signup_completed,2026-06-14T19:07:00Z,u_0788_s01,ins_u_0788_002,{},v2.3.0-buggy +evt_003784,u_0612,signup_completed,2026-06-14T19:08:00Z,u_0612_s01,ins_u_0612_002,{},v2.3.0-buggy +evt_003785,u_0247,onboarding_completed,2026-06-14T19:09:00Z,u_0247_s01,ins_u_0247_006,"{""completed_at"": ""2026-06-14T18:59:00Z""}",v2.3.0-buggy +evt_003786,u_0179,onboarding_step_viewed,2026-06-14T19:10:00Z,u_0179_s01,ins_u_0179_004,{},v2.3.0-buggy +evt_003787,u_0524,signup_started,2026-06-14T19:13:00Z,u_0524_s01,ins_u_0524_001,{},v2.3.0-buggy +evt_003788,u_0493,signup_started,2026-06-14T19:14:00Z,u_0493_s01,ins_u_0493_001,{},v2.3.0-buggy +evt_003789,u_0612,profile_saved,2026-06-14T19:14:00Z,u_0612_s01,ins_u_0612_003,{},v2.3.0-buggy +evt_003790,u_0788,profile_saved,2026-06-14T19:15:00Z,u_0788_s01,ins_u_0788_003,{},v2.3.0-buggy +evt_003791,u_0493,signup_completed,2026-06-14T19:16:00Z,u_0493_s01,ins_u_0493_002,{},v2.3.0-buggy +evt_003792,u_0779,onboarding_completed,2026-06-14T19:19:00Z,u_0779_s01,ins_u_0779_006,"{""completed_at"": ""2026-06-14T19:13:00Z""}",v2.3.0-buggy +evt_003793,u_0788,onboarding_step_viewed,2026-06-14T19:20:00Z,u_0788_s01,ins_u_0788_004,{},v2.3.0-buggy +evt_003794,u_0524,signup_completed,2026-06-14T19:21:00Z,u_0524_s01,ins_u_0524_002,{},v2.3.0-buggy +evt_003795,u_0774,signup_started,2026-06-14T19:23:00Z,u_0774_s01,ins_u_0774_001,{},v2.3.0-buggy +evt_003796,u_0493,profile_saved,2026-06-14T19:26:00Z,u_0493_s01,ins_u_0493_003,{},v2.3.0-buggy +evt_003797,u_0524,profile_saved,2026-06-14T19:26:00Z,u_0524_s01,ins_u_0524_003,{},v2.3.0-buggy +evt_003798,u_0555,signup_started,2026-06-14T19:27:00Z,u_0555_s01,ins_u_0555_001,{},v2.3.0-buggy +evt_003799,u_0165,onboarding_completed,2026-06-14T19:28:00Z,u_0165_s01,ins_u_0165_005,"{""completed_at"": ""2026-06-14T19:20:00Z""}",v2.3.0-buggy +evt_003800,u_0340,return_visit,2026-06-14T19:28:00Z,u_0340_s02,ins_u_0340_008,{},v2.3.0-buggy +evt_003801,u_0774,signup_completed,2026-06-14T19:30:00Z,u_0774_s01,ins_u_0774_002,{},v2.3.0-buggy +evt_003802,u_0493,onboarding_step_viewed,2026-06-14T19:32:00Z,u_0493_s01,ins_u_0493_004,{},v2.3.0-buggy +evt_003803,u_0165,activation_completed,2026-06-14T19:35:00Z,u_0165_s01,ins_u_0165_006,{},v2.3.0-buggy +evt_003804,u_0555,signup_completed,2026-06-14T19:35:00Z,u_0555_s01,ins_u_0555_002,{},v2.3.0-buggy +evt_003805,u_0774,profile_saved,2026-06-14T19:37:00Z,u_0774_s01,ins_u_0774_003,{},v2.3.0-buggy +evt_003806,u_0555,profile_saved,2026-06-14T19:38:00Z,u_0555_s01,ins_u_0555_003,{},v2.3.0-buggy +evt_003807,u_0612,feature_used,2026-06-14T19:39:00Z,u_0612_s01,ins_u_0612_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_003808,u_0774,onboarding_step_viewed,2026-06-14T19:39:00Z,u_0774_s01,ins_u_0774_004,{},v2.3.0-buggy +evt_003809,u_0555,onboarding_step_viewed,2026-06-14T19:40:00Z,u_0555_s01,ins_u_0555_004,{},v2.3.0-buggy +evt_003810,u_0524,feature_used,2026-06-14T19:43:00Z,u_0524_s01,ins_u_0524_004,"{""feature"": ""board""}",v2.3.0-buggy +evt_003811,u_0555,feature_used,2026-06-14T19:49:00Z,u_0555_s01,ins_u_0555_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003812,u_0634,signup_started,2026-06-14T19:49:00Z,u_0634_s01,ins_u_0634_001,{},v2.3.0-buggy +evt_003813,u_0779,activation_completed,2026-06-14T19:49:00Z,u_0779_s01,ins_u_0779_007,{},v2.3.0-buggy +evt_003814,u_0788,onboarding_completed,2026-06-14T19:50:00Z,u_0788_s01,ins_u_0788_005,"{""completed_at"": ""2026-06-14T19:49:00Z""}",v2.3.0-buggy +evt_003815,u_0612,onboarding_completed,2026-06-14T19:51:00Z,u_0612_s01,ins_u_0612_005,"{""completed_at"": ""2026-06-14T19:42:00Z""}",v2.3.0-buggy +evt_003816,u_0634,signup_completed,2026-06-14T19:53:00Z,u_0634_s01,ins_u_0634_002,{},v2.3.0-buggy +evt_003817,u_0471,signup_started,2026-06-14T19:55:00Z,u_0471_s01,ins_u_0471_001,{},v2.3.0-buggy +evt_003818,u_0524,onboarding_completed,2026-06-14T19:55:00Z,u_0524_s01,ins_u_0524_005,"{""completed_at"": ""2026-06-14T20:06:00Z""}",v2.3.0-buggy +evt_003819,u_0697,signup_started,2026-06-14T19:55:00Z,u_0697_s01,ins_u_0697_001,{},v2.3.0-buggy +evt_003820,u_0493,onboarding_completed,2026-06-14T19:56:00Z,u_0493_s01,ins_u_0493_005,"{""completed_at"": ""2026-06-14T19:58:00Z""}",v2.3.0-buggy +evt_003821,u_0471,signup_completed,2026-06-14T19:58:00Z,u_0471_s01,ins_u_0471_002,{},v2.3.0-buggy +evt_003822,u_0697,signup_completed,2026-06-14T19:58:00Z,u_0697_s01,ins_u_0697_002,{},v2.3.0-buggy +evt_003823,u_0294,signup_started,2026-06-14T19:59:00Z,u_0294_s01,ins_u_0294_001,{},v2.3.0-buggy +evt_003824,u_0697,onboarding_completed,2026-06-14T20:00:00Z,u_0697_s01,ins_u_0697_003,{},v2.3.0-buggy +evt_003825,u_0471,profile_saved,2026-06-14T20:01:00Z,u_0471_s01,ins_u_0471_003,{},v2.3.0-buggy +evt_003826,u_0774,feature_used,2026-06-14T20:01:00Z,u_0774_s01,ins_u_0774_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003827,u_0634,profile_saved,2026-06-14T20:02:00Z,u_0634_s01,ins_u_0634_003,{},v2.3.0-buggy +evt_003828,u_0634,error_shown,2026-06-14T20:03:00Z,u_0634_s01,ins_u_0634_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003829,u_0697,session_abandoned,2026-06-14T20:04:00Z,u_0697_s01,ins_u_0697_004,{},v2.3.0-buggy +evt_003830,u_0294,signup_completed,2026-06-14T20:05:00Z,u_0294_s01,ins_u_0294_002,{},v2.3.0-buggy +evt_003831,u_0471,onboarding_step_viewed,2026-06-14T20:06:00Z,u_0471_s01,ins_u_0471_004,{},v2.3.0-buggy +evt_003832,u_0774,onboarding_completed,2026-06-14T20:06:00Z,u_0774_s01,ins_u_0774_006,"{""completed_at"": ""2026-06-14T20:12:00Z""}",v2.3.0-buggy +evt_003833,u_0634,onboarding_step_viewed,2026-06-14T20:08:00Z,u_0634_s01,ins_u_0634_005,{},v2.3.0-buggy +evt_003834,u_0294,profile_saved,2026-06-14T20:14:00Z,u_0294_s01,ins_u_0294_003,{},v2.3.0-buggy +evt_003835,u_0493,activation_completed,2026-06-14T20:14:00Z,u_0493_s01,ins_u_0493_006,{},v2.3.0-buggy +evt_003836,u_0555,onboarding_completed,2026-06-14T20:14:00Z,u_0555_s01,ins_u_0555_006,"{""completed_at"": ""2026-06-14T20:17:00Z""}",v2.3.0-buggy +evt_003837,u_0294,onboarding_step_viewed,2026-06-14T20:16:00Z,u_0294_s01,ins_u_0294_004,{},v2.3.0-buggy +evt_003838,u_0355,signup_started,2026-06-14T20:16:00Z,u_0355_s01,ins_u_0355_001,{},v2.3.0-buggy +evt_003839,u_0355,session_abandoned,2026-06-14T20:17:00Z,u_0355_s01,ins_u_0355_002,{},v2.3.0-buggy +evt_003840,u_0524,activation_completed,2026-06-14T20:18:00Z,u_0524_s01,ins_u_0524_006,{},v2.3.0-buggy +evt_003841,u_0334,signup_started,2026-06-14T20:19:00Z,u_0334_s01,ins_u_0334_001,{},v2.3.0-buggy +evt_003842,u_0179,activation_completed,2026-06-14T20:20:00Z,u_0179_s01,ins_u_0179_005,{},v2.3.0-buggy +evt_003843,u_0294,feature_used,2026-06-14T20:22:00Z,u_0294_s01,ins_u_0294_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003844,u_0612,activation_completed,2026-06-14T20:22:00Z,u_0612_s01,ins_u_0612_006,{},v2.3.0-buggy +evt_003845,u_0334,signup_completed,2026-06-14T20:23:00Z,u_0334_s01,ins_u_0334_002,{},v2.3.0-buggy +evt_003846,u_0634,feature_used,2026-06-14T20:25:00Z,u_0634_s01,ins_u_0634_006,"{""feature"": ""board""}",v2.3.0-buggy +evt_003847,u_0662,signup_started,2026-06-14T20:29:00Z,u_0662_s01,ins_u_0662_001,{},v2.3.0-buggy +evt_003848,u_0471,onboarding_completed,2026-06-14T20:30:00Z,u_0471_s01,ins_u_0471_005,"{""completed_at"": ""2026-06-14T20:29:00Z""}",v2.3.0-buggy +evt_003849,u_0334,profile_saved,2026-06-14T20:31:00Z,u_0334_s01,ins_u_0334_003,{},v2.3.0-buggy +evt_003850,u_0788,activation_completed,2026-06-14T20:31:00Z,u_0788_s01,ins_u_0788_006,{},v2.3.0-buggy +evt_003851,u_0164,signup_started,2026-06-14T20:32:00Z,u_0164_s01,ins_u_0164_001,{},v2.3.0-buggy +evt_003852,u_0634,onboarding_completed,2026-06-14T20:32:00Z,u_0634_s01,ins_u_0634_007,"{""completed_at"": ""2026-06-14T20:42:00Z""}",v2.3.0-buggy +evt_003853,u_0662,signup_completed,2026-06-14T20:33:00Z,u_0662_s01,ins_u_0662_002,{},v2.3.0-buggy +evt_003854,u_0690,signup_started,2026-06-14T20:33:00Z,u_0690_s01,ins_u_0690_001,{},v2.3.0-buggy +evt_003855,u_0774,activation_completed,2026-06-14T20:33:00Z,u_0774_s01,ins_u_0774_007,{},v2.3.0-buggy +evt_003856,u_0080,signup_started,2026-06-14T20:34:00Z,u_0080_s01,ins_u_0080_001,{},v2.3.0-buggy +evt_003857,u_0164,signup_completed,2026-06-14T20:34:00Z,u_0164_s01,ins_u_0164_002,{},v2.3.0-buggy +evt_003858,u_0690,signup_completed,2026-06-14T20:34:00Z,u_0690_s01,ins_u_0690_002,{},v2.3.0-buggy +evt_003859,u_0334,onboarding_step_viewed,2026-06-14T20:35:00Z,u_0334_s01,ins_u_0334_004,{},v2.3.0-buggy +evt_003860,u_0690,signup_completed,2026-06-14T20:35:00Z,u_0690_s01,ins_u_0690_002,{},v2.3.0-buggy +evt_003861,u_0690,upsell_modal_shown,2026-06-14T20:35:00Z,u_0690_s01,ins_u_0690_003,{},v2.3.0-buggy +evt_003862,u_0662,onboarding_completed,2026-06-14T20:36:00Z,u_0662_s01,ins_u_0662_003,{},v2.3.0-buggy +evt_003863,u_0690,session_abandoned,2026-06-14T20:38:00Z,u_0690_s01,ins_u_0690_004,{},v2.3.0-buggy +evt_003864,u_0080,signup_completed,2026-06-14T20:39:00Z,u_0080_s01,ins_u_0080_002,{},v2.3.0-buggy +evt_003865,u_0662,session_abandoned,2026-06-14T20:39:00Z,u_0662_s01,ins_u_0662_004,{},v2.3.0-buggy +evt_003866,u_0164,profile_saved,2026-06-14T20:43:00Z,u_0164_s01,ins_u_0164_003,{},v2.3.0-buggy +evt_003867,u_0080,profile_saved,2026-06-14T20:48:00Z,u_0080_s01,ins_u_0080_003,{},v2.3.0-buggy +evt_003868,u_0164,onboarding_step_viewed,2026-06-14T20:48:00Z,u_0164_s01,ins_u_0164_004,{},v2.3.0-buggy +evt_003869,u_0321,signup_started,2026-06-14T20:49:00Z,u_0321_s01,ins_u_0321_001,{},v2.3.0-buggy +evt_003870,u_0294,onboarding_completed,2026-06-14T20:50:00Z,u_0294_s01,ins_u_0294_006,"{""completed_at"": ""2026-06-14T20:44:00Z""}",v2.3.0-buggy +evt_003871,u_0321,signup_completed,2026-06-14T20:51:00Z,u_0321_s01,ins_u_0321_002,{},v2.3.0-buggy +evt_003872,u_0334,feature_used,2026-06-14T20:51:00Z,u_0334_s01,ins_u_0334_005,"{""feature"": ""board""}",v2.3.0-buggy +evt_003873,u_0413,signup_started,2026-06-14T20:51:00Z,u_0413_s01,ins_u_0413_001,{},v2.3.0-buggy +evt_003874,u_0080,onboarding_step_viewed,2026-06-14T20:53:00Z,u_0080_s01,ins_u_0080_004,{},v2.3.0-buggy +evt_003875,u_0321,profile_saved,2026-06-14T20:53:00Z,u_0321_s01,ins_u_0321_003,{},v2.3.0-buggy +evt_003876,u_0413,signup_completed,2026-06-14T20:54:00Z,u_0413_s01,ins_u_0413_002,{},v2.3.0-buggy +evt_003877,u_0184,signup_started,2026-06-14T20:55:00Z,u_0184_s01,ins_u_0184_001,{},v2.3.0-buggy +evt_003878,u_0652,signup_started,2026-06-14T20:57:00Z,u_0652_s01,ins_u_0652_001,{},v2.3.0-buggy +evt_003879,u_0321,onboarding_step_viewed,2026-06-14T20:59:00Z,u_0321_s01,ins_u_0321_004,{},v2.3.0-buggy +evt_003880,u_0334,onboarding_completed,2026-06-14T21:01:00Z,u_0334_s01,ins_u_0334_006,"{""completed_at"": ""2026-06-14T20:57:00Z""}",v2.3.0-buggy +evt_003881,u_0184,signup_completed,2026-06-14T21:02:00Z,u_0184_s01,ins_u_0184_002,{},v2.3.0-buggy +evt_003882,u_0413,profile_saved,2026-06-14T21:02:00Z,u_0413_s01,ins_u_0413_003,{},v2.3.0-buggy +evt_003883,u_0652,signup_completed,2026-06-14T21:02:00Z,u_0652_s01,ins_u_0652_002,{},v2.3.0-buggy +evt_003884,u_0413,error_shown,2026-06-14T21:03:00Z,u_0413_s01,ins_u_0413_004,"{""code"": ""onboarding_timeout""}",v2.3.0-buggy +evt_003885,u_0413,onboarding_step_viewed,2026-06-14T21:06:00Z,u_0413_s01,ins_u_0413_005,{},v2.3.0-buggy +evt_003886,u_0652,profile_saved,2026-06-14T21:06:00Z,u_0652_s01,ins_u_0652_003,{},v2.3.0-buggy +evt_003887,u_0184,profile_saved,2026-06-14T21:08:00Z,u_0184_s01,ins_u_0184_003,{},v2.3.0-buggy +evt_003888,u_0321,feature_used,2026-06-14T21:09:00Z,u_0321_s01,ins_u_0321_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003889,u_0184,onboarding_step_viewed,2026-06-14T21:10:00Z,u_0184_s01,ins_u_0184_004,{},v2.3.0-buggy +evt_003890,u_0426,return_visit,2026-06-14T21:10:00Z,u_0426_s02,ins_u_0426_007,{},v2.3.0-buggy +evt_003891,u_0652,onboarding_step_viewed,2026-06-14T21:10:00Z,u_0652_s01,ins_u_0652_004,{},v2.3.0-buggy +evt_003892,u_0164,onboarding_completed,2026-06-14T21:13:00Z,u_0164_s01,ins_u_0164_005,"{""completed_at"": ""2026-06-14T21:17:00Z""}",v2.3.0-buggy +evt_003893,u_0080,onboarding_completed,2026-06-14T21:19:00Z,u_0080_s01,ins_u_0080_005,"{""completed_at"": ""2026-06-14T21:23:00Z""}",v2.3.0-buggy +evt_003894,u_0334,activation_completed,2026-06-14T21:21:00Z,u_0334_s01,ins_u_0334_007,{},v2.3.0-buggy +evt_003895,u_0294,activation_completed,2026-06-14T21:29:00Z,u_0294_s01,ins_u_0294_007,{},v2.3.0-buggy +evt_003896,u_0164,activation_completed,2026-06-14T21:30:00Z,u_0164_s01,ins_u_0164_006,{},v2.3.0-buggy +evt_003897,u_0652,onboarding_completed,2026-06-14T21:33:00Z,u_0652_s01,ins_u_0652_005,"{""completed_at"": ""2026-06-14T21:45:00Z""}",v2.3.0-buggy +evt_003898,u_0321,onboarding_completed,2026-06-14T21:35:00Z,u_0321_s01,ins_u_0321_006,"{""completed_at"": ""2026-06-14T21:31:00Z""}",v2.3.0-buggy +evt_003899,u_0413,onboarding_completed,2026-06-14T21:37:00Z,u_0413_s01,ins_u_0413_006,"{""completed_at"": ""2026-06-14T21:36:00Z""}",v2.3.0-buggy +evt_003900,u_0184,onboarding_completed,2026-06-14T21:39:00Z,u_0184_s01,ins_u_0184_005,"{""completed_at"": ""2026-06-14T21:37:00Z""}",v2.3.0-buggy +evt_003901,u_0080,activation_completed,2026-06-14T22:00:00Z,u_0080_s01,ins_u_0080_006,{},v2.3.0-buggy +evt_003902,u_0413,activation_completed,2026-06-14T22:07:00Z,u_0413_s01,ins_u_0413_007,{},v2.3.0-buggy +evt_003903,u_0594,return_visit,2026-06-14T23:59:00Z,u_0594_s02,ins_u_0594_006,{},v2.3.0-buggy +evt_003904,u_0594,feature_used,2026-06-15T00:04:00Z,u_0594_s02,ins_u_0594_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003905,u_0722,return_visit,2026-06-15T00:58:00Z,u_0722_s02,ins_u_0722_006,{},v2.3.0-buggy +evt_003906,u_0722,feature_used,2026-06-15T01:03:00Z,u_0722_s02,ins_u_0722_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003907,u_0369,return_visit,2026-06-15T01:40:00Z,u_0369_s02,ins_u_0369_006,{},v2.3.0-buggy +evt_003908,u_0369,feature_used,2026-06-15T01:45:00Z,u_0369_s02,ins_u_0369_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003909,u_0006,return_visit,2026-06-15T02:03:00Z,u_0006_s02,ins_u_0006_008,{},v2.3.0-buggy +evt_003910,u_0006,feature_used,2026-06-15T02:08:00Z,u_0006_s02,ins_u_0006_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003911,u_0490,return_visit,2026-06-15T04:40:00Z,u_0490_s02,ins_u_0490_007,{},v2.3.0-buggy +evt_003912,u_0490,feature_used,2026-06-15T04:45:00Z,u_0490_s02,ins_u_0490_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003913,u_0371,return_visit,2026-06-15T07:07:00Z,u_0371_s02,ins_u_0371_004,{},v2.3.0-buggy +evt_003914,u_0509,return_visit,2026-06-15T07:35:00Z,u_0509_s02,ins_u_0509_008,{},v2.3.0-buggy +evt_003915,u_0509,feature_used,2026-06-15T07:40:00Z,u_0509_s02,ins_u_0509_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003916,u_0259,return_visit,2026-06-15T08:31:00Z,u_0259_s02,ins_u_0259_007,{},v2.3.0-buggy +evt_003917,u_0107,return_visit,2026-06-15T09:06:00Z,u_0107_s02,ins_u_0107_007,{},v2.3.0-buggy +evt_003918,u_0107,feature_used,2026-06-15T09:11:00Z,u_0107_s02,ins_u_0107_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003919,u_0057,return_visit,2026-06-15T10:40:00Z,u_0057_s02,ins_u_0057_007,{},v2.3.0-buggy +evt_003920,u_0057,return_visit,2026-06-15T10:41:00Z,u_0057_s02,ins_u_0057_007,{},v2.3.0-buggy +evt_003921,u_0390,return_visit,2026-06-15T11:20:00Z,u_0390_s02,ins_u_0390_005,{},v2.3.0-buggy +evt_003922,u_0390,feature_used,2026-06-15T11:25:00Z,u_0390_s02,ins_u_0390_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003923,u_0474,return_visit,2026-06-15T11:27:00Z,u_0474_s02,ins_u_0474_007,{},v2.3.0-buggy +evt_003924,u_0474,feature_used,2026-06-15T11:32:00Z,u_0474_s02,ins_u_0474_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003925,u_0192,return_visit,2026-06-15T12:11:00Z,u_0192_s02,ins_u_0192_006,{},v2.3.0-buggy +evt_003926,u_0438,return_visit,2026-06-15T18:41:00Z,u_0438_s02,ins_u_0438_007,{},v2.3.0-buggy +evt_003927,u_0438,feature_used,2026-06-15T18:46:00Z,u_0438_s02,ins_u_0438_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003928,u_0113,return_visit,2026-06-15T20:01:00Z,u_0113_s02,ins_u_0113_007,{},v2.3.0-buggy +evt_003929,u_0003,return_visit,2026-06-15T22:40:00Z,u_0003_s02,ins_u_0003_008,{},v2.3.0-buggy +evt_003930,u_0565,return_visit,2026-06-15T23:54:00Z,u_0565_s02,ins_u_0565_008,{},v2.3.0-buggy +evt_003931,u_0565,feature_used,2026-06-15T23:59:00Z,u_0565_s02,ins_u_0565_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003932,u_0171,return_visit,2026-06-16T00:17:00Z,u_0171_s02,ins_u_0171_008,{},v2.3.0-buggy +evt_003933,u_0171,feature_used,2026-06-16T00:22:00Z,u_0171_s02,ins_u_0171_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003934,u_0023,return_visit,2026-06-16T01:32:00Z,u_0023_s02,ins_u_0023_007,{},v2.3.0-buggy +evt_003935,u_0023,feature_used,2026-06-16T01:37:00Z,u_0023_s02,ins_u_0023_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003936,u_0266,return_visit,2026-06-16T01:47:00Z,u_0266_s02,ins_u_0266_007,{},v2.3.0-buggy +evt_003937,u_0266,feature_used,2026-06-16T01:52:00Z,u_0266_s02,ins_u_0266_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003938,u_0721,return_visit,2026-06-16T02:31:00Z,u_0721_s02,ins_u_0721_008,{},v2.3.0-buggy +evt_003939,u_0503,return_visit,2026-06-16T02:32:00Z,u_0503_s02,ins_u_0503_007,{},v2.3.0-buggy +evt_003940,u_0485,return_visit,2026-06-16T05:01:00Z,u_0485_s02,ins_u_0485_006,{},v2.3.0-buggy +evt_003941,u_0469,return_visit,2026-06-16T05:26:00Z,u_0469_s02,ins_u_0469_006,{},v2.3.0-buggy +evt_003942,u_0163,return_visit,2026-06-16T05:39:00Z,u_0163_s02,ins_u_0163_007,{},v2.3.0-buggy +evt_003943,u_0673,return_visit,2026-06-16T06:46:00Z,u_0673_s02,ins_u_0673_007,{},v2.3.0-buggy +evt_003944,u_0673,feature_used,2026-06-16T06:51:00Z,u_0673_s02,ins_u_0673_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003945,u_0656,return_visit,2026-06-16T07:08:00Z,u_0656_s02,ins_u_0656_008,{},v2.3.0-buggy +evt_003946,u_0656,feature_used,2026-06-16T07:13:00Z,u_0656_s02,ins_u_0656_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003947,u_0636,return_visit,2026-06-16T07:14:00Z,u_0636_s02,ins_u_0636_007,{},v2.3.0-buggy +evt_003948,u_0636,feature_used,2026-06-16T07:19:00Z,u_0636_s02,ins_u_0636_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003949,u_0672,return_visit,2026-06-16T07:34:00Z,u_0672_s02,ins_u_0672_006,{},v2.3.0-buggy +evt_003950,u_0672,feature_used,2026-06-16T07:39:00Z,u_0672_s02,ins_u_0672_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003951,u_0479,return_visit,2026-06-16T07:49:00Z,u_0479_s02,ins_u_0479_008,{},v2.3.0-buggy +evt_003952,u_0375,return_visit,2026-06-16T08:21:00Z,u_0375_s02,ins_u_0375_006,{},v2.3.0-buggy +evt_003953,u_0655,return_visit,2026-06-16T08:45:00Z,u_0655_s02,ins_u_0655_006,{},v2.3.0-buggy +evt_003954,u_0725,return_visit,2026-06-16T08:46:00Z,u_0725_s02,ins_u_0725_007,{},v2.3.0-buggy +evt_003955,u_0655,feature_used,2026-06-16T08:50:00Z,u_0655_s02,ins_u_0655_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003956,u_0725,feature_used,2026-06-16T08:51:00Z,u_0725_s02,ins_u_0725_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003957,u_0142,return_visit,2026-06-16T09:11:00Z,u_0142_s02,ins_u_0142_006,{},v2.3.0-buggy +evt_003958,u_0028,return_visit,2026-06-16T09:14:00Z,u_0028_s02,ins_u_0028_006,{},v2.3.0-buggy +evt_003959,u_0142,feature_used,2026-06-16T09:16:00Z,u_0142_s02,ins_u_0142_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003960,u_0389,return_visit,2026-06-16T09:40:00Z,u_0389_s02,ins_u_0389_008,{},v2.3.0-buggy +evt_003961,u_0522,return_visit,2026-06-16T10:55:00Z,u_0522_s02,ins_u_0522_008,{},v2.3.0-buggy +evt_003962,u_0189,return_visit,2026-06-16T14:46:00Z,u_0189_s02,ins_u_0189_005,{},v2.3.0-buggy +evt_003963,u_0189,feature_used,2026-06-16T14:51:00Z,u_0189_s02,ins_u_0189_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003964,u_0051,return_visit,2026-06-16T15:59:00Z,u_0051_s02,ins_u_0051_008,{},v2.3.0-buggy +evt_003965,u_0051,feature_used,2026-06-16T16:04:00Z,u_0051_s02,ins_u_0051_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003966,u_0101,return_visit,2026-06-16T19:03:00Z,u_0101_s02,ins_u_0101_008,{},v2.3.0-buggy +evt_003967,u_0767,return_visit,2026-06-16T20:08:00Z,u_0767_s02,ins_u_0767_007,{},v2.3.0-buggy +evt_003968,u_0767,feature_used,2026-06-16T20:13:00Z,u_0767_s02,ins_u_0767_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003969,u_0769,return_visit,2026-06-16T20:47:00Z,u_0769_s02,ins_u_0769_008,{},v2.3.0-buggy +evt_003970,u_0769,feature_used,2026-06-16T20:52:00Z,u_0769_s02,ins_u_0769_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003971,u_0477,return_visit,2026-06-16T22:33:00Z,u_0477_s02,ins_u_0477_008,{},v2.3.0-buggy +evt_003972,u_0552,return_visit,2026-06-16T23:16:00Z,u_0552_s02,ins_u_0552_008,{},v2.3.0-buggy +evt_003973,u_0789,return_visit,2026-06-16T23:24:00Z,u_0789_s02,ins_u_0789_006,{},v2.3.0-buggy +evt_003974,u_0027,return_visit,2026-06-17T01:11:00Z,u_0027_s02,ins_u_0027_007,{},v2.3.0-buggy +evt_003975,u_0027,feature_used,2026-06-17T01:16:00Z,u_0027_s02,ins_u_0027_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003976,u_0087,return_visit,2026-06-17T01:48:00Z,u_0087_s02,ins_u_0087_005,{},v2.3.0-buggy +evt_003977,u_0071,return_visit,2026-06-17T01:54:00Z,u_0071_s02,ins_u_0071_007,{},v2.3.0-buggy +evt_003978,u_0501,return_visit,2026-06-17T02:20:00Z,u_0501_s02,ins_u_0501_006,{},v2.3.0-buggy +evt_003979,u_0040,return_visit,2026-06-17T02:35:00Z,u_0040_s02,ins_u_0040_005,{},v2.3.0-buggy +evt_003980,u_0040,feature_used,2026-06-17T02:40:00Z,u_0040_s02,ins_u_0040_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003981,u_0688,return_visit,2026-06-17T02:43:00Z,u_0688_s02,ins_u_0688_007,{},v2.3.0-buggy +evt_003982,u_0688,feature_used,2026-06-17T02:48:00Z,u_0688_s02,ins_u_0688_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003983,u_0465,return_visit,2026-06-17T03:06:00Z,u_0465_s02,ins_u_0465_008,{},v2.3.0-buggy +evt_003984,u_0465,feature_used,2026-06-17T03:11:00Z,u_0465_s02,ins_u_0465_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003985,u_0031,return_visit,2026-06-17T03:18:00Z,u_0031_s02,ins_u_0031_006,{},v2.3.0-buggy +evt_003986,u_0651,return_visit,2026-06-17T03:32:00Z,u_0651_s02,ins_u_0651_007,{},v2.3.0-buggy +evt_003987,u_0422,return_visit,2026-06-17T03:33:00Z,u_0422_s02,ins_u_0422_006,{},v2.3.0-buggy +evt_003988,u_0651,feature_used,2026-06-17T03:37:00Z,u_0651_s02,ins_u_0651_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003989,u_0422,feature_used,2026-06-17T03:38:00Z,u_0422_s02,ins_u_0422_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003990,u_0271,return_visit,2026-06-17T03:52:00Z,u_0271_s02,ins_u_0271_005,{},v2.3.0-buggy +evt_003991,u_0601,return_visit,2026-06-17T05:09:00Z,u_0601_s02,ins_u_0601_008,{},v2.3.0-buggy +evt_003992,u_0250,return_visit,2026-06-17T05:16:00Z,u_0250_s02,ins_u_0250_008,{},v2.3.0-buggy +evt_003993,u_0663,return_visit,2026-06-17T05:17:00Z,u_0663_s02,ins_u_0663_007,{},v2.3.0-buggy +evt_003994,u_0250,feature_used,2026-06-17T05:21:00Z,u_0250_s02,ins_u_0250_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003995,u_0250,feature_used,2026-06-17T05:22:00Z,u_0250_s02,ins_u_0250_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003996,u_0663,feature_used,2026-06-17T05:22:00Z,u_0663_s02,ins_u_0663_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003997,u_0774,return_visit,2026-06-17T05:23:00Z,u_0774_s02,ins_u_0774_008,{},v2.3.0-buggy +evt_003998,u_0774,feature_used,2026-06-17T05:28:00Z,u_0774_s02,ins_u_0774_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_003999,u_0201,return_visit,2026-06-17T06:08:00Z,u_0201_s02,ins_u_0201_007,{},v2.3.0-buggy +evt_004000,u_0638,return_visit,2026-06-17T06:16:00Z,u_0638_s02,ins_u_0638_008,{},v2.3.0-buggy +evt_004001,u_0105,return_visit,2026-06-17T06:47:00Z,u_0105_s02,ins_u_0105_007,{},v2.3.0-buggy +evt_004002,u_0105,feature_used,2026-06-17T06:52:00Z,u_0105_s02,ins_u_0105_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004003,u_0146,return_visit,2026-06-17T07:06:00Z,u_0146_s02,ins_u_0146_005,{},v2.3.0-buggy +evt_004004,u_0146,return_visit,2026-06-17T07:07:00Z,u_0146_s02,ins_u_0146_005,{},v2.3.0-buggy +evt_004005,u_0243,return_visit,2026-06-17T07:14:00Z,u_0243_s02,ins_u_0243_007,{},v2.3.0-buggy +evt_004006,u_0243,feature_used,2026-06-17T07:19:00Z,u_0243_s02,ins_u_0243_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004007,u_0414,return_visit,2026-06-17T07:40:00Z,u_0414_s02,ins_u_0414_006,{},v2.3.0-buggy +evt_004008,u_0414,feature_used,2026-06-17T07:45:00Z,u_0414_s02,ins_u_0414_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004009,u_0671,return_visit,2026-06-17T07:52:00Z,u_0671_s02,ins_u_0671_008,{},v2.3.0-buggy +evt_004010,u_0429,return_visit,2026-06-17T08:38:00Z,u_0429_s02,ins_u_0429_008,{},v2.3.0-buggy +evt_004011,u_0030,return_visit,2026-06-17T09:06:00Z,u_0030_s02,ins_u_0030_008,{},v2.3.0-buggy +evt_004012,u_0646,return_visit,2026-06-17T09:08:00Z,u_0646_s02,ins_u_0646_006,{},v2.3.0-buggy +evt_004013,u_0030,feature_used,2026-06-17T09:11:00Z,u_0030_s02,ins_u_0030_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004014,u_0602,return_visit,2026-06-17T10:00:00Z,u_0602_s02,ins_u_0602_007,{},v2.3.0-buggy +evt_004015,u_0282,return_visit,2026-06-17T11:08:00Z,u_0282_s02,ins_u_0282_006,{},v2.3.0-buggy +evt_004016,u_0282,feature_used,2026-06-17T11:13:00Z,u_0282_s02,ins_u_0282_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004017,u_0772,return_visit,2026-06-17T11:43:00Z,u_0772_s02,ins_u_0772_007,{},v2.3.0-buggy +evt_004018,u_0772,feature_used,2026-06-17T11:48:00Z,u_0772_s02,ins_u_0772_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004019,u_0388,return_visit,2026-06-17T19:13:00Z,u_0388_s02,ins_u_0388_006,{},v2.3.0-buggy +evt_004020,u_0743,return_visit,2026-06-17T20:04:00Z,u_0743_s02,ins_u_0743_007,{},v2.3.0-buggy +evt_004021,u_0743,feature_used,2026-06-17T20:09:00Z,u_0743_s02,ins_u_0743_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004022,u_0463,return_visit,2026-06-17T22:03:00Z,u_0463_s02,ins_u_0463_007,{},v2.3.0-buggy +evt_004023,u_0412,return_visit,2026-06-17T22:09:00Z,u_0412_s02,ins_u_0412_008,{},v2.3.0-buggy +evt_004024,u_0412,feature_used,2026-06-17T22:14:00Z,u_0412_s02,ins_u_0412_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004025,u_0597,return_visit,2026-06-17T22:18:00Z,u_0597_s02,ins_u_0597_008,{},v2.3.0-buggy +evt_004026,u_0336,return_visit,2026-06-17T22:19:00Z,u_0336_s02,ins_u_0336_006,{},v2.3.0-buggy +evt_004027,u_0597,feature_used,2026-06-17T22:23:00Z,u_0597_s02,ins_u_0597_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004028,u_0336,feature_used,2026-06-17T22:24:00Z,u_0336_s02,ins_u_0336_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004029,u_0365,return_visit,2026-06-18T00:09:00Z,u_0365_s02,ins_u_0365_007,{},v2.3.0-buggy +evt_004030,u_0365,feature_used,2026-06-18T00:14:00Z,u_0365_s02,ins_u_0365_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004031,u_0553,return_visit,2026-06-18T00:26:00Z,u_0553_s02,ins_u_0553_008,{},v2.3.0-buggy +evt_004032,u_0487,return_visit,2026-06-18T00:27:00Z,u_0487_s02,ins_u_0487_006,{},v2.3.0-buggy +evt_004033,u_0487,return_visit,2026-06-18T00:28:00Z,u_0487_s02,ins_u_0487_006,{},v2.3.0-buggy +evt_004034,u_0553,feature_used,2026-06-18T00:31:00Z,u_0553_s02,ins_u_0553_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004035,u_0487,feature_used,2026-06-18T00:32:00Z,u_0487_s02,ins_u_0487_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004036,u_0466,return_visit,2026-06-18T01:00:00Z,u_0466_s02,ins_u_0466_008,{},v2.3.0-buggy +evt_004037,u_0466,return_visit,2026-06-18T01:01:00Z,u_0466_s02,ins_u_0466_008,{},v2.3.0-buggy +evt_004038,u_0466,feature_used,2026-06-18T01:05:00Z,u_0466_s02,ins_u_0466_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004039,u_0504,return_visit,2026-06-18T01:07:00Z,u_0504_s02,ins_u_0504_007,{},v2.3.0-buggy +evt_004040,u_0504,feature_used,2026-06-18T01:12:00Z,u_0504_s02,ins_u_0504_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004041,u_0174,return_visit,2026-06-18T02:05:00Z,u_0174_s02,ins_u_0174_007,{},v2.3.0-buggy +evt_004042,u_0675,return_visit,2026-06-18T02:17:00Z,u_0675_s02,ins_u_0675_007,{},v2.3.0-buggy +evt_004043,u_0545,return_visit,2026-06-18T02:34:00Z,u_0545_s02,ins_u_0545_006,{},v2.3.0-buggy +evt_004044,u_0160,return_visit,2026-06-18T02:36:00Z,u_0160_s02,ins_u_0160_006,{},v2.3.0-buggy +evt_004045,u_0160,feature_used,2026-06-18T02:41:00Z,u_0160_s02,ins_u_0160_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004046,u_0699,return_visit,2026-06-18T02:49:00Z,u_0699_s02,ins_u_0699_005,{},v2.3.0-buggy +evt_004047,u_0335,return_visit,2026-06-18T02:50:00Z,u_0335_s02,ins_u_0335_006,{},v2.3.0-buggy +evt_004048,u_0699,feature_used,2026-06-18T02:54:00Z,u_0699_s02,ins_u_0699_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004049,u_0335,feature_used,2026-06-18T02:55:00Z,u_0335_s02,ins_u_0335_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004050,u_0009,return_visit,2026-06-18T02:56:00Z,u_0009_s02,ins_u_0009_006,{},v2.3.0-buggy +evt_004051,u_0009,feature_used,2026-06-18T03:01:00Z,u_0009_s02,ins_u_0009_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004052,u_0009,feature_used,2026-06-18T03:02:00Z,u_0009_s02,ins_u_0009_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004053,u_0024,return_visit,2026-06-18T03:34:00Z,u_0024_s02,ins_u_0024_007,{},v2.3.0-buggy +evt_004054,u_0541,return_visit,2026-06-18T03:51:00Z,u_0541_s02,ins_u_0541_007,{},v2.3.0-buggy +evt_004055,u_0541,feature_used,2026-06-18T03:56:00Z,u_0541_s02,ins_u_0541_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004056,u_0518,return_visit,2026-06-18T04:55:00Z,u_0518_s02,ins_u_0518_007,{},v2.3.0-buggy +evt_004057,u_0455,return_visit,2026-06-18T05:34:00Z,u_0455_s02,ins_u_0455_007,{},v2.3.0-buggy +evt_004058,u_0455,feature_used,2026-06-18T05:39:00Z,u_0455_s02,ins_u_0455_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004059,u_0016,return_visit,2026-06-18T06:08:00Z,u_0016_s02,ins_u_0016_008,{},v2.3.0-buggy +evt_004060,u_0729,return_visit,2026-06-18T08:25:00Z,u_0729_s02,ins_u_0729_006,{},v2.3.0-buggy +evt_004061,u_0729,feature_used,2026-06-18T08:30:00Z,u_0729_s02,ins_u_0729_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004062,u_0623,return_visit,2026-06-18T09:02:00Z,u_0623_s02,ins_u_0623_006,{},v2.3.0-buggy +evt_004063,u_0623,feature_used,2026-06-18T09:07:00Z,u_0623_s02,ins_u_0623_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004064,u_0654,return_visit,2026-06-18T09:35:00Z,u_0654_s02,ins_u_0654_007,{},v2.3.0-buggy +evt_004065,u_0278,return_visit,2026-06-18T11:07:00Z,u_0278_s02,ins_u_0278_007,{},v2.3.0-buggy +evt_004066,u_0278,feature_used,2026-06-18T11:12:00Z,u_0278_s02,ins_u_0278_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004067,u_0525,return_visit,2026-06-18T11:46:00Z,u_0525_s02,ins_u_0525_007,{},v2.3.0-buggy +evt_004068,u_0521,return_visit,2026-06-18T12:34:00Z,u_0521_s02,ins_u_0521_008,{},v2.3.0-buggy +evt_004069,u_0059,return_visit,2026-06-18T12:45:00Z,u_0059_s02,ins_u_0059_008,{},v2.3.0-buggy +evt_004070,u_0290,return_visit,2026-06-18T18:11:00Z,u_0290_s02,ins_u_0290_007,{},v2.3.0-buggy +evt_004071,u_0244,return_visit,2026-06-18T18:12:00Z,u_0244_s02,ins_u_0244_007,{},v2.3.0-buggy +evt_004072,u_0290,feature_used,2026-06-18T18:16:00Z,u_0290_s02,ins_u_0290_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004073,u_0244,feature_used,2026-06-18T18:17:00Z,u_0244_s02,ins_u_0244_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004074,u_0145,return_visit,2026-06-18T20:17:00Z,u_0145_s02,ins_u_0145_008,{},v2.3.0-buggy +evt_004075,u_0145,feature_used,2026-06-18T20:22:00Z,u_0145_s02,ins_u_0145_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004076,u_0397,return_visit,2026-06-18T23:23:00Z,u_0397_s02,ins_u_0397_007,{},v2.3.0-buggy +evt_004077,u_0679,return_visit,2026-06-18T23:28:00Z,u_0679_s02,ins_u_0679_006,{},v2.3.0-buggy +evt_004078,u_0760,return_visit,2026-06-18T23:28:00Z,u_0760_s02,ins_u_0760_008,{},v2.3.0-buggy +evt_004079,u_0225,return_visit,2026-06-19T00:29:00Z,u_0225_s02,ins_u_0225_006,{},v2.3.0-buggy +evt_004080,u_0225,feature_used,2026-06-19T00:34:00Z,u_0225_s02,ins_u_0225_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004081,u_0383,return_visit,2026-06-19T01:05:00Z,u_0383_s02,ins_u_0383_007,{},v2.3.0-buggy +evt_004082,u_0443,return_visit,2026-06-19T01:28:00Z,u_0443_s02,ins_u_0443_006,{},v2.3.0-buggy +evt_004083,u_0443,feature_used,2026-06-19T01:33:00Z,u_0443_s02,ins_u_0443_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004084,u_0539,return_visit,2026-06-19T01:44:00Z,u_0539_s02,ins_u_0539_007,{},v2.3.0-buggy +evt_004085,u_0168,return_visit,2026-06-19T01:45:00Z,u_0168_s02,ins_u_0168_009,{},v2.3.0-buggy +evt_004086,u_0168,feature_used,2026-06-19T01:50:00Z,u_0168_s02,ins_u_0168_010,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004087,u_0299,return_visit,2026-06-19T02:20:00Z,u_0299_s02,ins_u_0299_006,{},v2.3.0-buggy +evt_004088,u_0299,feature_used,2026-06-19T02:25:00Z,u_0299_s02,ins_u_0299_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004089,u_0005,return_visit,2026-06-19T03:38:00Z,u_0005_s02,ins_u_0005_007,{},v2.3.0-buggy +evt_004090,u_0005,feature_used,2026-06-19T03:43:00Z,u_0005_s02,ins_u_0005_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004091,u_0489,return_visit,2026-06-19T03:43:00Z,u_0489_s02,ins_u_0489_008,{},v2.3.0-buggy +evt_004092,u_0605,return_visit,2026-06-19T05:06:00Z,u_0605_s02,ins_u_0605_008,{},v2.3.0-buggy +evt_004093,u_0605,feature_used,2026-06-19T05:11:00Z,u_0605_s02,ins_u_0605_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004094,u_0384,return_visit,2026-06-19T05:14:00Z,u_0384_s02,ins_u_0384_007,{},v2.3.0-buggy +evt_004095,u_0384,feature_used,2026-06-19T05:19:00Z,u_0384_s02,ins_u_0384_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004096,u_0731,return_visit,2026-06-19T05:36:00Z,u_0731_s02,ins_u_0731_006,{},v2.3.0-buggy +evt_004097,u_0731,feature_used,2026-06-19T05:41:00Z,u_0731_s02,ins_u_0731_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004098,u_0253,return_visit,2026-06-19T06:16:00Z,u_0253_s02,ins_u_0253_008,{},v2.3.0-buggy +evt_004099,u_0780,return_visit,2026-06-19T06:44:00Z,u_0780_s02,ins_u_0780_008,{},v2.3.0-buggy +evt_004100,u_0780,feature_used,2026-06-19T06:49:00Z,u_0780_s02,ins_u_0780_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004101,u_0148,return_visit,2026-06-19T07:02:00Z,u_0148_s02,ins_u_0148_006,{},v2.3.0-buggy +evt_004102,u_0148,feature_used,2026-06-19T07:07:00Z,u_0148_s02,ins_u_0148_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004103,u_0179,return_visit,2026-06-19T07:56:00Z,u_0179_s02,ins_u_0179_006,{},v2.3.0-buggy +evt_004104,u_0139,return_visit,2026-06-19T08:20:00Z,u_0139_s02,ins_u_0139_007,{},v2.3.0-buggy +evt_004105,u_0125,return_visit,2026-06-19T08:21:00Z,u_0125_s02,ins_u_0125_007,{},v2.3.0-buggy +evt_004106,u_0139,feature_used,2026-06-19T08:25:00Z,u_0139_s02,ins_u_0139_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004107,u_0004,return_visit,2026-06-19T09:43:00Z,u_0004_s02,ins_u_0004_007,{},v2.3.0-buggy +evt_004108,u_0204,return_visit,2026-06-19T12:25:00Z,u_0204_s02,ins_u_0204_004,{},v2.3.0-buggy +evt_004109,u_0204,feature_used,2026-06-19T12:30:00Z,u_0204_s02,ins_u_0204_005,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004110,u_0488,return_visit,2026-06-19T12:37:00Z,u_0488_s02,ins_u_0488_006,{},v2.3.0-buggy +evt_004111,u_0488,feature_used,2026-06-19T12:42:00Z,u_0488_s02,ins_u_0488_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004112,u_0337,return_visit,2026-06-19T14:35:00Z,u_0337_s02,ins_u_0337_005,{},v2.3.0-buggy +evt_004113,u_0337,return_visit,2026-06-19T14:36:00Z,u_0337_s02,ins_u_0337_005,{},v2.3.0-buggy +evt_004114,u_0337,feature_used,2026-06-19T14:40:00Z,u_0337_s02,ins_u_0337_006,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004115,u_0231,return_visit,2026-06-19T21:55:00Z,u_0231_s02,ins_u_0231_007,{},v2.3.0-buggy +evt_004116,u_0512,return_visit,2026-06-19T22:00:00Z,u_0512_s02,ins_u_0512_005,{},v2.3.0-buggy +evt_004117,u_0799,return_visit,2026-06-20T02:25:00Z,u_0799_s02,ins_u_0799_007,{},v2.3.0-buggy +evt_004118,u_0799,feature_used,2026-06-20T02:30:00Z,u_0799_s02,ins_u_0799_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004119,u_0140,return_visit,2026-06-20T03:06:00Z,u_0140_s02,ins_u_0140_006,{},v2.3.0-buggy +evt_004120,u_0405,return_visit,2026-06-20T04:34:00Z,u_0405_s02,ins_u_0405_009,{},v2.3.0-buggy +evt_004121,u_0405,feature_used,2026-06-20T04:39:00Z,u_0405_s02,ins_u_0405_010,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004122,u_0634,return_visit,2026-06-20T05:49:00Z,u_0634_s02,ins_u_0634_008,{},v2.3.0-buggy +evt_004123,u_0634,feature_used,2026-06-20T05:54:00Z,u_0634_s02,ins_u_0634_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004124,u_0456,return_visit,2026-06-20T07:17:00Z,u_0456_s02,ins_u_0456_006,{},v2.3.0-buggy +evt_004125,u_0456,feature_used,2026-06-20T07:22:00Z,u_0456_s02,ins_u_0456_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004126,u_0317,return_visit,2026-06-20T07:37:00Z,u_0317_s02,ins_u_0317_006,{},v2.3.0-buggy +evt_004127,u_0643,return_visit,2026-06-20T08:49:00Z,u_0643_s02,ins_u_0643_008,{},v2.3.0-buggy +evt_004128,u_0143,return_visit,2026-06-20T09:13:00Z,u_0143_s02,ins_u_0143_008,{},v2.3.0-buggy +evt_004129,u_0073,return_visit,2026-06-20T09:43:00Z,u_0073_s02,ins_u_0073_007,{},v2.3.0-buggy +evt_004130,u_0073,feature_used,2026-06-20T09:48:00Z,u_0073_s02,ins_u_0073_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004131,u_0682,return_visit,2026-06-20T10:15:00Z,u_0682_s02,ins_u_0682_007,{},v2.3.0-buggy +evt_004132,u_0682,feature_used,2026-06-20T10:20:00Z,u_0682_s02,ins_u_0682_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004133,u_0080,return_visit,2026-06-20T10:34:00Z,u_0080_s02,ins_u_0080_007,{},v2.3.0-buggy +evt_004134,u_0194,return_visit,2026-06-20T10:36:00Z,u_0194_s02,ins_u_0194_005,{},v2.3.0-buggy +evt_004135,u_0080,feature_used,2026-06-20T10:39:00Z,u_0080_s02,ins_u_0080_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004136,u_0294,return_visit,2026-06-20T10:59:00Z,u_0294_s02,ins_u_0294_008,{},v2.3.0-buggy +evt_004137,u_0251,return_visit,2026-06-20T11:38:00Z,u_0251_s02,ins_u_0251_008,{},v2.3.0-buggy +evt_004138,u_0251,return_visit,2026-06-20T11:39:00Z,u_0251_s02,ins_u_0251_008,{},v2.3.0-buggy +evt_004139,u_0251,feature_used,2026-06-20T11:43:00Z,u_0251_s02,ins_u_0251_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004140,u_0696,return_visit,2026-06-20T12:14:00Z,u_0696_s02,ins_u_0696_008,{},v2.3.0-buggy +evt_004141,u_0696,feature_used,2026-06-20T12:19:00Z,u_0696_s02,ins_u_0696_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004142,u_0374,return_visit,2026-06-20T14:09:00Z,u_0374_s02,ins_u_0374_007,{},v2.3.0-buggy +evt_004143,u_0329,return_visit,2026-06-21T01:09:00Z,u_0329_s02,ins_u_0329_007,{},v2.3.0-buggy +evt_004144,u_0329,feature_used,2026-06-21T01:14:00Z,u_0329_s02,ins_u_0329_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004145,u_0741,return_visit,2026-06-21T01:50:00Z,u_0741_s02,ins_u_0741_008,{},v2.3.0-buggy +evt_004146,u_0741,feature_used,2026-06-21T01:55:00Z,u_0741_s02,ins_u_0741_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004147,u_0095,return_visit,2026-06-21T03:45:00Z,u_0095_s02,ins_u_0095_007,{},v2.3.0-buggy +evt_004148,u_0095,feature_used,2026-06-21T03:50:00Z,u_0095_s02,ins_u_0095_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004149,u_0632,return_visit,2026-06-21T05:39:00Z,u_0632_s02,ins_u_0632_007,{},v2.3.0-buggy +evt_004150,u_0613,return_visit,2026-06-21T05:43:00Z,u_0613_s02,ins_u_0613_006,{},v2.3.0-buggy +evt_004151,u_0632,feature_used,2026-06-21T05:44:00Z,u_0632_s02,ins_u_0632_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004152,u_0613,feature_used,2026-06-21T05:48:00Z,u_0613_s02,ins_u_0613_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004153,u_0674,return_visit,2026-06-21T07:40:00Z,u_0674_s02,ins_u_0674_008,{},v2.3.0-buggy +evt_004154,u_0454,return_visit,2026-06-21T08:34:00Z,u_0454_s02,ins_u_0454_008,{},v2.3.0-buggy +evt_004155,u_0546,return_visit,2026-06-21T09:19:00Z,u_0546_s02,ins_u_0546_006,{},v2.3.0-buggy +evt_004156,u_0546,feature_used,2026-06-21T09:24:00Z,u_0546_s02,ins_u_0546_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004157,u_0608,return_visit,2026-06-21T10:17:00Z,u_0608_s02,ins_u_0608_008,{},v2.3.0-buggy +evt_004158,u_0396,return_visit,2026-06-21T10:18:00Z,u_0396_s02,ins_u_0396_009,{},v2.3.0-buggy +evt_004159,u_0555,return_visit,2026-06-21T10:27:00Z,u_0555_s02,ins_u_0555_007,{},v2.3.0-buggy +evt_004160,u_0555,feature_used,2026-06-21T10:32:00Z,u_0555_s02,ins_u_0555_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004161,u_0382,return_visit,2026-06-21T11:05:00Z,u_0382_s02,ins_u_0382_006,{},v2.3.0-buggy +evt_004162,u_0382,feature_used,2026-06-21T11:10:00Z,u_0382_s02,ins_u_0382_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004163,u_0421,return_visit,2026-06-21T11:43:00Z,u_0421_s02,ins_u_0421_009,{},v2.3.0-buggy +evt_004164,u_0421,feature_used,2026-06-21T11:48:00Z,u_0421_s02,ins_u_0421_010,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004165,u_0493,return_visit,2026-06-21T12:14:00Z,u_0493_s02,ins_u_0493_007,{},v2.3.0-buggy +evt_004166,u_0493,feature_used,2026-06-21T12:19:00Z,u_0493_s02,ins_u_0493_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004167,u_0761,return_visit,2026-06-21T21:19:00Z,u_0761_s02,ins_u_0761_006,{},v2.3.0-buggy +evt_004168,u_0761,feature_used,2026-06-21T21:24:00Z,u_0761_s02,ins_u_0761_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004169,u_0790,return_visit,2026-06-21T21:41:00Z,u_0790_s02,ins_u_0790_008,{},v2.3.0-buggy +evt_004170,u_0790,feature_used,2026-06-21T21:46:00Z,u_0790_s02,ins_u_0790_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004171,u_0288,return_visit,2026-06-21T23:08:00Z,u_0288_s02,ins_u_0288_008,{},v2.3.0-buggy +evt_004172,u_0288,feature_used,2026-06-21T23:13:00Z,u_0288_s02,ins_u_0288_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004173,u_0338,return_visit,2026-06-22T01:30:00Z,u_0338_s02,ins_u_0338_007,{},v2.3.0-buggy +evt_004174,u_0347,return_visit,2026-06-22T02:19:00Z,u_0347_s02,ins_u_0347_006,{},v2.3.0-buggy +evt_004175,u_0347,feature_used,2026-06-22T02:24:00Z,u_0347_s02,ins_u_0347_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004176,u_0759,return_visit,2026-06-22T03:12:00Z,u_0759_s02,ins_u_0759_006,{},v2.3.0-buggy +evt_004177,u_0322,return_visit,2026-06-22T03:14:00Z,u_0322_s02,ins_u_0322_006,{},v2.3.0-buggy +evt_004178,u_0320,return_visit,2026-06-22T05:00:00Z,u_0320_s02,ins_u_0320_007,{},v2.3.0-buggy +evt_004179,u_0612,return_visit,2026-06-22T08:03:00Z,u_0612_s02,ins_u_0612_007,{},v2.3.0-buggy +evt_004180,u_0612,feature_used,2026-06-22T08:08:00Z,u_0612_s02,ins_u_0612_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004181,u_0184,return_visit,2026-06-22T08:55:00Z,u_0184_s02,ins_u_0184_006,{},v2.3.0-buggy +evt_004182,u_0513,return_visit,2026-06-22T10:42:00Z,u_0513_s02,ins_u_0513_007,{},v2.3.0-buggy +evt_004183,u_0496,return_visit,2026-06-22T11:44:00Z,u_0496_s02,ins_u_0496_007,{},v2.3.0-buggy +evt_004184,u_0496,feature_used,2026-06-22T11:49:00Z,u_0496_s02,ins_u_0496_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004185,u_0394,return_visit,2026-06-22T12:38:00Z,u_0394_s02,ins_u_0394_006,{},v2.3.0-buggy +evt_004186,u_0394,feature_used,2026-06-22T12:43:00Z,u_0394_s02,ins_u_0394_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004187,u_0607,return_visit,2026-06-22T13:16:00Z,u_0607_s02,ins_u_0607_008,{},v2.3.0-buggy +evt_004188,u_0642,return_visit,2026-06-22T17:19:00Z,u_0642_s02,ins_u_0642_005,{},v2.3.0-buggy +evt_004189,u_0286,return_visit,2026-06-22T20:50:00Z,u_0286_s02,ins_u_0286_008,{},v2.3.0-buggy +evt_004190,u_0591,return_visit,2026-06-22T22:56:00Z,u_0591_s02,ins_u_0591_008,{},v2.3.0-buggy +evt_004191,u_0609,return_visit,2026-06-23T05:09:00Z,u_0609_s03,ins_u_0609_008,{},v2.3.0-buggy +evt_004192,u_0609,feature_used,2026-06-23T05:13:00Z,u_0609_s03,ins_u_0609_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004193,u_0617,return_visit,2026-06-23T06:43:00Z,u_0617_s02,ins_u_0617_008,{},v2.3.0-buggy +evt_004194,u_0617,feature_used,2026-06-23T06:48:00Z,u_0617_s02,ins_u_0617_009,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004195,u_0681,return_visit,2026-06-23T08:00:00Z,u_0681_s03,ins_u_0681_008,{},v2.3.0-buggy +evt_004196,u_0681,feature_used,2026-06-23T08:04:00Z,u_0681_s03,ins_u_0681_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004197,u_0409,return_visit,2026-06-23T10:33:00Z,u_0409_s02,ins_u_0409_006,{},v2.3.0-buggy +evt_004198,u_0409,feature_used,2026-06-23T10:38:00Z,u_0409_s02,ins_u_0409_007,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004199,u_0256,return_visit,2026-06-23T11:18:00Z,u_0256_s02,ins_u_0256_007,{},v2.3.0-buggy +evt_004200,u_0256,feature_used,2026-06-23T11:23:00Z,u_0256_s02,ins_u_0256_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004201,u_0164,return_visit,2026-06-23T12:32:00Z,u_0164_s02,ins_u_0164_007,{},v2.3.0-buggy +evt_004202,u_0164,feature_used,2026-06-23T12:37:00Z,u_0164_s02,ins_u_0164_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004203,u_0164,feature_used,2026-06-23T12:38:00Z,u_0164_s02,ins_u_0164_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004204,u_0471,return_visit,2026-06-23T12:55:00Z,u_0471_s02,ins_u_0471_006,{},v2.3.0-buggy +evt_004205,u_0377,return_visit,2026-06-23T20:56:00Z,u_0377_s03,ins_u_0377_010,{},v2.3.0-buggy +evt_004206,u_0377,feature_used,2026-06-23T21:00:00Z,u_0377_s03,ins_u_0377_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004207,u_0579,return_visit,2026-06-24T01:59:00Z,u_0579_s02,ins_u_0579_006,{},v2.3.0-buggy +evt_004208,u_0571,return_visit,2026-06-24T02:13:00Z,u_0571_s02,ins_u_0571_008,{},v2.3.0-buggy +evt_004209,u_0165,return_visit,2026-06-24T06:39:00Z,u_0165_s02,ins_u_0165_007,{},v2.3.0-buggy +evt_004210,u_0165,feature_used,2026-06-24T06:44:00Z,u_0165_s02,ins_u_0165_008,"{""feature"": ""insights""}",v2.3.0-buggy +evt_004211,u_0389,return_visit,2026-06-24T07:40:00Z,u_0389_s03,ins_u_0389_009,{},v2.3.0-buggy +evt_004212,u_0389,feature_used,2026-06-24T07:44:00Z,u_0389_s03,ins_u_0389_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004213,u_0214,return_visit,2026-06-24T08:21:00Z,u_0214_s03,ins_u_0214_008,{},v2.3.0-buggy +evt_004214,u_0214,feature_used,2026-06-24T08:25:00Z,u_0214_s03,ins_u_0214_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004215,u_0694,return_visit,2026-06-24T08:40:00Z,u_0694_s03,ins_u_0694_008,{},v2.3.0-buggy +evt_004216,u_0694,feature_used,2026-06-24T08:44:00Z,u_0694_s03,ins_u_0694_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004217,u_0668,return_visit,2026-06-25T07:36:00Z,u_0668_s03,ins_u_0668_007,{},v2.3.0-buggy +evt_004218,u_0668,feature_used,2026-06-25T07:40:00Z,u_0668_s03,ins_u_0668_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004219,u_0044,return_visit,2026-06-26T04:02:00Z,u_0044_s03,ins_u_0044_008,{},v2.3.0-buggy +evt_004220,u_0044,feature_used,2026-06-26T04:06:00Z,u_0044_s03,ins_u_0044_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004221,u_0698,return_visit,2026-06-26T06:14:00Z,u_0698_s03,ins_u_0698_007,{},v2.3.0-buggy +evt_004222,u_0698,feature_used,2026-06-26T06:18:00Z,u_0698_s03,ins_u_0698_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004223,u_0731,return_visit,2026-06-26T07:36:00Z,u_0731_s03,ins_u_0731_008,{},v2.3.0-buggy +evt_004224,u_0731,feature_used,2026-06-26T07:40:00Z,u_0731_s03,ins_u_0731_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004225,u_0438,return_visit,2026-06-26T21:41:00Z,u_0438_s03,ins_u_0438_009,{},v2.3.0-buggy +evt_004226,u_0438,feature_used,2026-06-26T21:45:00Z,u_0438_s03,ins_u_0438_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004227,u_0753,return_visit,2026-06-27T02:43:00Z,u_0753_s03,ins_u_0753_008,{},v2.3.0-buggy +evt_004228,u_0753,feature_used,2026-06-27T02:47:00Z,u_0753_s03,ins_u_0753_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004229,u_0663,return_visit,2026-06-27T05:17:00Z,u_0663_s03,ins_u_0663_009,{},v2.3.0-buggy +evt_004230,u_0663,feature_used,2026-06-27T05:21:00Z,u_0663_s03,ins_u_0663_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004231,u_0029,return_visit,2026-06-27T05:47:00Z,u_0029_s03,ins_u_0029_008,{},v2.3.0-buggy +evt_004232,u_0029,feature_used,2026-06-27T05:51:00Z,u_0029_s03,ins_u_0029_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004233,u_0605,return_visit,2026-06-27T07:06:00Z,u_0605_s03,ins_u_0605_010,{},v2.3.0-buggy +evt_004234,u_0605,feature_used,2026-06-27T07:10:00Z,u_0605_s03,ins_u_0605_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004235,u_0421,return_visit,2026-06-27T08:43:00Z,u_0421_s03,ins_u_0421_011,{},v2.3.0-buggy +evt_004236,u_0421,feature_used,2026-06-27T08:47:00Z,u_0421_s03,ins_u_0421_012,"{""feature"": ""board""}",v2.3.0-buggy +evt_004237,u_0030,return_visit,2026-06-27T13:06:00Z,u_0030_s03,ins_u_0030_010,{},v2.3.0-buggy +evt_004238,u_0030,feature_used,2026-06-27T13:10:00Z,u_0030_s03,ins_u_0030_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004239,u_0381,return_visit,2026-06-28T00:48:00Z,u_0381_s03,ins_u_0381_009,{},v2.3.0-buggy +evt_004240,u_0381,feature_used,2026-06-28T00:52:00Z,u_0381_s03,ins_u_0381_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004241,u_0725,return_visit,2026-06-28T03:46:00Z,u_0725_s03,ins_u_0725_009,{},v2.3.0-buggy +evt_004242,u_0725,feature_used,2026-06-28T03:50:00Z,u_0725_s03,ins_u_0725_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004243,u_0740,return_visit,2026-06-28T05:34:00Z,u_0740_s03,ins_u_0740_007,{},v2.3.0-buggy +evt_004244,u_0740,feature_used,2026-06-28T05:38:00Z,u_0740_s03,ins_u_0740_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004245,u_0330,return_visit,2026-06-28T07:16:00Z,u_0330_s03,ins_u_0330_008,{},v2.3.0-buggy +evt_004246,u_0330,feature_used,2026-06-28T07:20:00Z,u_0330_s03,ins_u_0330_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004247,u_0349,return_visit,2026-06-28T08:10:00Z,u_0349_s03,ins_u_0349_008,{},v2.3.0-buggy +evt_004248,u_0349,feature_used,2026-06-28T08:14:00Z,u_0349_s03,ins_u_0349_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004249,u_0272,return_visit,2026-06-28T09:41:00Z,u_0272_s03,ins_u_0272_007,{},v2.3.0-buggy +evt_004250,u_0272,feature_used,2026-06-28T09:45:00Z,u_0272_s03,ins_u_0272_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004251,u_0144,return_visit,2026-06-28T12:20:00Z,u_0144_s03,ins_u_0144_008,{},v2.3.0-buggy +evt_004252,u_0144,feature_used,2026-06-28T12:24:00Z,u_0144_s03,ins_u_0144_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004253,u_0338,return_visit,2026-06-28T20:30:00Z,u_0338_s03,ins_u_0338_008,{},v2.3.0-buggy +evt_004254,u_0338,feature_used,2026-06-28T20:34:00Z,u_0338_s03,ins_u_0338_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004255,u_0288,return_visit,2026-06-29T01:08:00Z,u_0288_s03,ins_u_0288_010,{},v2.3.0-buggy +evt_004256,u_0288,feature_used,2026-06-29T01:12:00Z,u_0288_s03,ins_u_0288_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004257,u_0741,return_visit,2026-06-29T02:50:00Z,u_0741_s03,ins_u_0741_010,{},v2.3.0-buggy +evt_004258,u_0741,feature_used,2026-06-29T02:54:00Z,u_0741_s03,ins_u_0741_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004259,u_0772,return_visit,2026-06-29T03:43:00Z,u_0772_s03,ins_u_0772_009,{},v2.3.0-buggy +evt_004260,u_0772,feature_used,2026-06-29T03:47:00Z,u_0772_s03,ins_u_0772_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004261,u_0513,return_visit,2026-06-29T04:42:00Z,u_0513_s03,ins_u_0513_008,{},v2.3.0-buggy +evt_004262,u_0513,feature_used,2026-06-29T04:46:00Z,u_0513_s03,ins_u_0513_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004263,u_0504,return_visit,2026-06-29T06:07:00Z,u_0504_s03,ins_u_0504_009,{},v2.3.0-buggy +evt_004264,u_0504,feature_used,2026-06-29T06:11:00Z,u_0504_s03,ins_u_0504_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004265,u_0509,return_visit,2026-06-29T06:35:00Z,u_0509_s03,ins_u_0509_010,{},v2.3.0-buggy +evt_004266,u_0509,return_visit,2026-06-29T06:36:00Z,u_0509_s03,ins_u_0509_010,{},v2.3.0-buggy +evt_004267,u_0509,feature_used,2026-06-29T06:39:00Z,u_0509_s03,ins_u_0509_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004268,u_0673,return_visit,2026-06-29T07:46:00Z,u_0673_s03,ins_u_0673_009,{},v2.3.0-buggy +evt_004269,u_0673,feature_used,2026-06-29T07:50:00Z,u_0673_s03,ins_u_0673_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004270,u_0143,return_visit,2026-06-29T09:13:00Z,u_0143_s03,ins_u_0143_009,{},v2.3.0-buggy +evt_004271,u_0143,feature_used,2026-06-29T09:17:00Z,u_0143_s03,ins_u_0143_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004272,u_0076,return_visit,2026-06-29T10:36:00Z,u_0076_s03,ins_u_0076_007,{},v2.3.0-buggy +evt_004273,u_0076,feature_used,2026-06-29T10:40:00Z,u_0076_s03,ins_u_0076_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004274,u_0243,return_visit,2026-06-29T11:14:00Z,u_0243_s03,ins_u_0243_009,{},v2.3.0-buggy +evt_004275,u_0243,return_visit,2026-06-29T11:15:00Z,u_0243_s03,ins_u_0243_009,{},v2.3.0-buggy +evt_004276,u_0243,feature_used,2026-06-29T11:18:00Z,u_0243_s03,ins_u_0243_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004277,u_0183,return_visit,2026-06-29T22:10:00Z,u_0183_s03,ins_u_0183_007,{},v2.3.0-buggy +evt_004278,u_0183,feature_used,2026-06-29T22:14:00Z,u_0183_s03,ins_u_0183_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004279,u_0553,return_visit,2026-06-29T23:26:00Z,u_0553_s03,ins_u_0553_010,{},v2.3.0-buggy +evt_004280,u_0553,feature_used,2026-06-29T23:30:00Z,u_0553_s03,ins_u_0553_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004281,u_0248,return_visit,2026-06-30T02:09:00Z,u_0248_s03,ins_u_0248_007,{},v2.3.0-buggy +evt_004282,u_0248,feature_used,2026-06-30T02:13:00Z,u_0248_s03,ins_u_0248_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004283,u_0236,return_visit,2026-06-30T03:17:00Z,u_0236_s03,ins_u_0236_008,{},v2.3.0-buggy +evt_004284,u_0236,feature_used,2026-06-30T03:21:00Z,u_0236_s03,ins_u_0236_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004285,u_0527,return_visit,2026-06-30T03:26:00Z,u_0527_s03,ins_u_0527_007,{},v2.3.0-buggy +evt_004286,u_0527,feature_used,2026-06-30T03:30:00Z,u_0527_s03,ins_u_0527_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004287,u_0578,return_visit,2026-06-30T04:50:00Z,u_0578_s03,ins_u_0578_008,{},v2.3.0-buggy +evt_004288,u_0578,feature_used,2026-06-30T04:54:00Z,u_0578_s03,ins_u_0578_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004289,u_0760,return_visit,2026-06-30T05:28:00Z,u_0760_s03,ins_u_0760_009,{},v2.3.0-buggy +evt_004290,u_0760,feature_used,2026-06-30T05:32:00Z,u_0760_s03,ins_u_0760_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004291,u_0175,return_visit,2026-06-30T08:08:00Z,u_0175_s03,ins_u_0175_007,{},v2.3.0-buggy +evt_004292,u_0175,feature_used,2026-06-30T08:12:00Z,u_0175_s03,ins_u_0175_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004293,u_0466,return_visit,2026-06-30T21:00:00Z,u_0466_s03,ins_u_0466_010,{},v2.3.0-buggy +evt_004294,u_0466,feature_used,2026-06-30T21:04:00Z,u_0466_s03,ins_u_0466_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004295,u_0384,return_visit,2026-07-01T00:14:00Z,u_0384_s03,ins_u_0384_009,{},v2.3.0-buggy +evt_004296,u_0384,feature_used,2026-07-01T00:18:00Z,u_0384_s03,ins_u_0384_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004297,u_0454,return_visit,2026-07-01T01:34:00Z,u_0454_s03,ins_u_0454_009,{},v2.3.0-buggy +evt_004298,u_0454,feature_used,2026-07-01T01:38:00Z,u_0454_s03,ins_u_0454_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004299,u_0752,return_visit,2026-07-01T02:14:00Z,u_0752_s03,ins_u_0752_008,{},v2.3.0-buggy +evt_004300,u_0752,feature_used,2026-07-01T02:18:00Z,u_0752_s03,ins_u_0752_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004301,u_0799,return_visit,2026-07-01T04:25:00Z,u_0799_s03,ins_u_0799_009,{},v2.3.0-buggy +evt_004302,u_0799,feature_used,2026-07-01T04:29:00Z,u_0799_s03,ins_u_0799_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004303,u_0571,return_visit,2026-07-01T20:13:00Z,u_0571_s03,ins_u_0571_009,{},v2.3.0-buggy +evt_004304,u_0571,feature_used,2026-07-01T20:17:00Z,u_0571_s03,ins_u_0571_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004305,u_0231,return_visit,2026-07-01T20:55:00Z,u_0231_s03,ins_u_0231_008,{},v2.3.0-buggy +evt_004306,u_0231,feature_used,2026-07-01T20:59:00Z,u_0231_s03,ins_u_0231_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004307,u_0418,return_visit,2026-07-02T01:30:00Z,u_0418_s03,ins_u_0418_008,{},v2.3.0-buggy +evt_004308,u_0418,feature_used,2026-07-02T01:34:00Z,u_0418_s03,ins_u_0418_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004309,u_0670,return_visit,2026-07-02T04:45:00Z,u_0670_s03,ins_u_0670_007,{},v2.3.0-buggy +evt_004310,u_0670,feature_used,2026-07-02T04:49:00Z,u_0670_s03,ins_u_0670_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004311,u_0623,return_visit,2026-07-02T07:02:00Z,u_0623_s03,ins_u_0623_008,{},v2.3.0-buggy +evt_004312,u_0623,feature_used,2026-07-02T07:06:00Z,u_0623_s03,ins_u_0623_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004313,u_0179,return_visit,2026-07-02T10:56:00Z,u_0179_s03,ins_u_0179_007,{},v2.3.0-buggy +evt_004314,u_0179,feature_used,2026-07-02T11:00:00Z,u_0179_s03,ins_u_0179_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004315,u_0091,return_visit,2026-07-02T11:51:00Z,u_0091_s03,ins_u_0091_007,{},v2.3.0-buggy +evt_004316,u_0091,feature_used,2026-07-02T11:55:00Z,u_0091_s03,ins_u_0091_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004317,u_0006,return_visit,2026-07-03T00:03:00Z,u_0006_s03,ins_u_0006_010,{},v2.3.0-buggy +evt_004318,u_0006,feature_used,2026-07-03T00:07:00Z,u_0006_s03,ins_u_0006_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004319,u_0396,return_visit,2026-07-03T02:18:00Z,u_0396_s03,ins_u_0396_010,{},v2.3.0-buggy +evt_004320,u_0396,feature_used,2026-07-03T02:22:00Z,u_0396_s03,ins_u_0396_011,"{""feature"": ""board""}",v2.3.0-buggy +evt_004321,u_0792,return_visit,2026-07-03T04:02:00Z,u_0792_s03,ins_u_0792_007,{},v2.3.0-buggy +evt_004322,u_0792,feature_used,2026-07-03T04:06:00Z,u_0792_s03,ins_u_0792_008,"{""feature"": ""board""}",v2.3.0-buggy +evt_004323,u_0562,return_visit,2026-07-03T05:57:00Z,u_0562_s03,ins_u_0562_006,{},v2.3.0-buggy +evt_004324,u_0562,feature_used,2026-07-03T06:01:00Z,u_0562_s03,ins_u_0562_007,"{""feature"": ""board""}",v2.3.0-buggy +evt_004325,u_0643,return_visit,2026-07-03T11:49:00Z,u_0643_s03,ins_u_0643_009,{},v2.3.0-buggy +evt_004326,u_0643,feature_used,2026-07-03T11:53:00Z,u_0643_s03,ins_u_0643_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004327,u_0591,return_visit,2026-07-03T22:56:00Z,u_0591_s03,ins_u_0591_009,{},v2.3.0-buggy +evt_004328,u_0591,feature_used,2026-07-03T23:00:00Z,u_0591_s03,ins_u_0591_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004329,u_0671,return_visit,2026-07-04T00:52:00Z,u_0671_s03,ins_u_0671_009,{},v2.3.0-buggy +evt_004330,u_0671,feature_used,2026-07-04T00:56:00Z,u_0671_s03,ins_u_0671_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004331,u_0334,return_visit,2026-07-04T09:19:00Z,u_0334_s03,ins_u_0334_008,{},v2.3.0-buggy +evt_004332,u_0334,feature_used,2026-07-04T09:23:00Z,u_0334_s03,ins_u_0334_009,"{""feature"": ""board""}",v2.3.0-buggy +evt_004333,u_0661,return_visit,2026-07-04T22:30:00Z,u_0661_s03,ins_u_0661_009,{},v2.3.0-buggy +evt_004334,u_0661,feature_used,2026-07-04T22:34:00Z,u_0661_s03,ins_u_0661_010,"{""feature"": ""board""}",v2.3.0-buggy +evt_004335,u_0617,return_visit,2026-07-05T05:43:00Z,u_0617_s03,ins_u_0617_010,{},v2.3.0-buggy +evt_004336,u_0617,feature_used,2026-07-05T05:47:00Z,u_0617_s03,ins_u_0617_011,"{""feature"": ""board""}",v2.3.0-buggy diff --git a/data/seed/releases/v2.3.0-buggy/manifest.json b/data/seed/releases/v2.3.0-buggy/manifest.json new file mode 100644 index 0000000..ef628e7 --- /dev/null +++ b/data/seed/releases/v2.3.0-buggy/manifest.json @@ -0,0 +1,9 @@ +{ + "ended_at": "2026-06-14T23:59:59Z", + "events": 4336, + "experiment": false, + "generator_seed": 2301, + "release": "v2.3.0-buggy", + "started_at": "2026-06-08T00:00:00Z", + "users": 800 +} diff --git a/data/seed/releases/v2.3.0-fixed/events.csv b/data/seed/releases/v2.3.0-fixed/events.csv new file mode 100644 index 0000000..3b3b5fe --- /dev/null +++ b/data/seed/releases/v2.3.0-fixed/events.csv @@ -0,0 +1,4060 @@ +event_id,user_id,event_name,ts,session_id,insert_id,properties,release +evt_000001,u_0724,signup_started,2026-06-15T08:09:00Z,u_0724_s01,ins_u_0724_001,{},v2.3.0-fixed +evt_000002,u_0724,signup_completed,2026-06-15T08:11:00Z,u_0724_s01,ins_u_0724_002,{},v2.3.0-fixed +evt_000003,u_0724,profile_saved,2026-06-15T08:21:00Z,u_0724_s01,ins_u_0724_003,{},v2.3.0-fixed +evt_000004,u_0014,signup_started,2026-06-15T08:23:00Z,u_0014_s01,ins_u_0014_001,{},v2.3.0-fixed +evt_000005,u_0014,session_abandoned,2026-06-15T08:24:00Z,u_0014_s01,ins_u_0014_002,{},v2.3.0-fixed +evt_000006,u_0532,signup_started,2026-06-15T08:25:00Z,u_0532_s01,ins_u_0532_001,{},v2.3.0-fixed +evt_000007,u_0724,onboarding_step_viewed,2026-06-15T08:25:00Z,u_0724_s01,ins_u_0724_004,{},v2.3.0-fixed +evt_000008,u_0724,feature_used,2026-06-15T08:29:00Z,u_0724_s01,ins_u_0724_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000009,u_0532,signup_completed,2026-06-15T08:30:00Z,u_0532_s01,ins_u_0532_002,{},v2.3.0-fixed +evt_000010,u_0733,signup_started,2026-06-15T08:30:00Z,u_0733_s01,ins_u_0733_001,{},v2.3.0-fixed +evt_000011,u_0072,signup_started,2026-06-15T08:33:00Z,u_0072_s01,ins_u_0072_001,{},v2.3.0-fixed +evt_000012,u_0072,signup_completed,2026-06-15T08:36:00Z,u_0072_s01,ins_u_0072_002,{},v2.3.0-fixed +evt_000013,u_0733,signup_completed,2026-06-15T08:38:00Z,u_0733_s01,ins_u_0733_002,{},v2.3.0-fixed +evt_000014,u_0532,profile_saved,2026-06-15T08:40:00Z,u_0532_s01,ins_u_0532_003,{},v2.3.0-fixed +evt_000015,u_0633,signup_started,2026-06-15T08:43:00Z,u_0633_s01,ins_u_0633_001,{},v2.3.0-fixed +evt_000016,u_0633,signup_completed,2026-06-15T08:44:00Z,u_0633_s01,ins_u_0633_002,{},v2.3.0-fixed +evt_000017,u_0072,profile_saved,2026-06-15T08:46:00Z,u_0072_s01,ins_u_0072_003,{},v2.3.0-fixed +evt_000018,u_0532,onboarding_step_viewed,2026-06-15T08:46:00Z,u_0532_s01,ins_u_0532_004,{},v2.3.0-fixed +evt_000019,u_0733,session_abandoned,2026-06-15T08:46:00Z,u_0733_s01,ins_u_0733_003,{},v2.3.0-fixed +evt_000020,u_0267,signup_started,2026-06-15T08:48:00Z,u_0267_s01,ins_u_0267_001,{},v2.3.0-fixed +evt_000021,u_0072,onboarding_step_viewed,2026-06-15T08:49:00Z,u_0072_s01,ins_u_0072_004,{},v2.3.0-fixed +evt_000022,u_0633,profile_saved,2026-06-15T08:49:00Z,u_0633_s01,ins_u_0633_003,{},v2.3.0-fixed +evt_000023,u_0532,feature_used,2026-06-15T08:50:00Z,u_0532_s01,ins_u_0532_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000024,u_0633,onboarding_step_viewed,2026-06-15T08:53:00Z,u_0633_s01,ins_u_0633_004,{},v2.3.0-fixed +evt_000025,u_0267,signup_completed,2026-06-15T08:56:00Z,u_0267_s01,ins_u_0267_002,{},v2.3.0-fixed +evt_000026,u_0724,onboarding_completed,2026-06-15T08:59:00Z,u_0724_s01,ins_u_0724_006,"{""completed_at"": ""2026-06-15T09:01:00Z""}",v2.3.0-fixed +evt_000027,u_0267,session_abandoned,2026-06-15T09:04:00Z,u_0267_s01,ins_u_0267_003,{},v2.3.0-fixed +evt_000028,u_0633,feature_used,2026-06-15T09:05:00Z,u_0633_s01,ins_u_0633_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000029,u_0072,onboarding_completed,2026-06-15T09:15:00Z,u_0072_s01,ins_u_0072_005,"{""completed_at"": ""2026-06-15T09:25:00Z""}",v2.3.0-fixed +evt_000030,u_0532,onboarding_completed,2026-06-15T09:15:00Z,u_0532_s01,ins_u_0532_006,"{""completed_at"": ""2026-06-15T09:10:00Z""}",v2.3.0-fixed +evt_000031,u_0290,signup_started,2026-06-15T09:18:00Z,u_0290_s01,ins_u_0290_001,{},v2.3.0-fixed +evt_000032,u_0190,signup_started,2026-06-15T09:20:00Z,u_0190_s01,ins_u_0190_001,{},v2.3.0-fixed +evt_000033,u_0190,signup_completed,2026-06-15T09:24:00Z,u_0190_s01,ins_u_0190_002,{},v2.3.0-fixed +evt_000034,u_0290,session_abandoned,2026-06-15T09:26:00Z,u_0290_s01,ins_u_0290_002,{},v2.3.0-fixed +evt_000035,u_0633,onboarding_completed,2026-06-15T09:30:00Z,u_0633_s01,ins_u_0633_006,"{""completed_at"": ""2026-06-15T09:21:00Z""}",v2.3.0-fixed +evt_000036,u_0190,profile_saved,2026-06-15T09:32:00Z,u_0190_s01,ins_u_0190_003,{},v2.3.0-fixed +evt_000037,u_0724,activation_completed,2026-06-15T09:34:00Z,u_0724_s01,ins_u_0724_007,{},v2.3.0-fixed +evt_000038,u_0190,onboarding_step_viewed,2026-06-15T09:35:00Z,u_0190_s01,ins_u_0190_004,{},v2.3.0-fixed +evt_000039,u_0626,signup_started,2026-06-15T09:35:00Z,u_0626_s01,ins_u_0626_001,{},v2.3.0-fixed +evt_000040,u_0238,signup_started,2026-06-15T09:43:00Z,u_0238_s01,ins_u_0238_001,{},v2.3.0-fixed +evt_000041,u_0626,signup_completed,2026-06-15T09:43:00Z,u_0626_s01,ins_u_0626_002,{},v2.3.0-fixed +evt_000042,u_0238,signup_completed,2026-06-15T09:46:00Z,u_0238_s01,ins_u_0238_002,{},v2.3.0-fixed +evt_000043,u_0626,profile_saved,2026-06-15T09:46:00Z,u_0626_s01,ins_u_0626_003,{},v2.3.0-fixed +evt_000044,u_0087,signup_started,2026-06-15T09:47:00Z,u_0087_s01,ins_u_0087_001,{},v2.3.0-fixed +evt_000045,u_0087,signup_completed,2026-06-15T09:52:00Z,u_0087_s01,ins_u_0087_002,{},v2.3.0-fixed +evt_000046,u_0238,profile_saved,2026-06-15T09:52:00Z,u_0238_s01,ins_u_0238_003,{},v2.3.0-fixed +evt_000047,u_0626,onboarding_step_viewed,2026-06-15T09:52:00Z,u_0626_s01,ins_u_0626_004,{},v2.3.0-fixed +evt_000048,u_0179,signup_started,2026-06-15T09:53:00Z,u_0179_s01,ins_u_0179_001,{},v2.3.0-fixed +evt_000049,u_0087,profile_saved,2026-06-15T09:54:00Z,u_0087_s01,ins_u_0087_003,{},v2.3.0-fixed +evt_000050,u_0633,activation_completed,2026-06-15T09:54:00Z,u_0633_s01,ins_u_0633_007,{},v2.3.0-fixed +evt_000051,u_0179,signup_completed,2026-06-15T09:56:00Z,u_0179_s01,ins_u_0179_002,{},v2.3.0-fixed +evt_000052,u_0532,activation_completed,2026-06-15T09:57:00Z,u_0532_s01,ins_u_0532_007,{},v2.3.0-fixed +evt_000053,u_0179,profile_saved,2026-06-15T09:58:00Z,u_0179_s01,ins_u_0179_003,{},v2.3.0-fixed +evt_000054,u_0253,signup_started,2026-06-15T09:59:00Z,u_0253_s01,ins_u_0253_001,{},v2.3.0-fixed +evt_000055,u_0626,feature_used,2026-06-15T09:59:00Z,u_0626_s01,ins_u_0626_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000056,u_0087,onboarding_step_viewed,2026-06-15T10:00:00Z,u_0087_s01,ins_u_0087_004,{},v2.3.0-fixed +evt_000057,u_0179,onboarding_step_viewed,2026-06-15T10:00:00Z,u_0179_s01,ins_u_0179_004,{},v2.3.0-fixed +evt_000058,u_0665,signup_started,2026-06-15T10:03:00Z,u_0665_s01,ins_u_0665_001,{},v2.3.0-fixed +evt_000059,u_0253,signup_completed,2026-06-15T10:04:00Z,u_0253_s01,ins_u_0253_002,{},v2.3.0-fixed +evt_000060,u_0311,signup_started,2026-06-15T10:06:00Z,u_0311_s01,ins_u_0311_001,{},v2.3.0-fixed +evt_000061,u_0311,signup_completed,2026-06-15T10:11:00Z,u_0311_s01,ins_u_0311_002,{},v2.3.0-fixed +evt_000062,u_0665,signup_completed,2026-06-15T10:11:00Z,u_0665_s01,ins_u_0665_002,{},v2.3.0-fixed +evt_000063,u_0253,profile_saved,2026-06-15T10:13:00Z,u_0253_s01,ins_u_0253_003,{},v2.3.0-fixed +evt_000064,u_0238,feature_used,2026-06-15T10:14:00Z,u_0238_s01,ins_u_0238_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000065,u_0311,session_abandoned,2026-06-15T10:15:00Z,u_0311_s01,ins_u_0311_003,{},v2.3.0-fixed +evt_000066,u_0665,profile_saved,2026-06-15T10:17:00Z,u_0665_s01,ins_u_0665_003,{},v2.3.0-fixed +evt_000067,u_0253,onboarding_step_viewed,2026-06-15T10:18:00Z,u_0253_s01,ins_u_0253_004,{},v2.3.0-fixed +evt_000068,u_0617,signup_started,2026-06-15T10:20:00Z,u_0617_s01,ins_u_0617_001,{},v2.3.0-fixed +evt_000069,u_0665,onboarding_step_viewed,2026-06-15T10:22:00Z,u_0665_s01,ins_u_0665_004,{},v2.3.0-fixed +evt_000070,u_0190,activation_completed,2026-06-15T10:25:00Z,u_0190_s01,ins_u_0190_005,{},v2.3.0-fixed +evt_000071,u_0617,session_abandoned,2026-06-15T10:25:00Z,u_0617_s01,ins_u_0617_002,{},v2.3.0-fixed +evt_000072,u_0019,signup_started,2026-06-15T10:27:00Z,u_0019_s01,ins_u_0019_001,{},v2.3.0-fixed +evt_000073,u_0365,signup_started,2026-06-15T10:28:00Z,u_0365_s01,ins_u_0365_001,{},v2.3.0-fixed +evt_000074,u_0019,signup_completed,2026-06-15T10:29:00Z,u_0019_s01,ins_u_0019_002,{},v2.3.0-fixed +evt_000075,u_0238,onboarding_completed,2026-06-15T10:32:00Z,u_0238_s01,ins_u_0238_005,"{""completed_at"": ""2026-06-15T10:29:00Z""}",v2.3.0-fixed +evt_000076,u_0019,session_abandoned,2026-06-15T10:33:00Z,u_0019_s01,ins_u_0019_003,{},v2.3.0-fixed +evt_000077,u_0179,onboarding_completed,2026-06-15T10:33:00Z,u_0179_s01,ins_u_0179_005,"{""completed_at"": ""2026-06-15T10:37:00Z""}",v2.3.0-fixed +evt_000078,u_0087,onboarding_completed,2026-06-15T10:34:00Z,u_0087_s01,ins_u_0087_005,"{""completed_at"": ""2026-06-15T10:20:00Z""}",v2.3.0-fixed +evt_000079,u_0690,signup_started,2026-06-15T10:35:00Z,u_0690_s01,ins_u_0690_001,{},v2.3.0-fixed +evt_000080,u_0365,signup_completed,2026-06-15T10:36:00Z,u_0365_s01,ins_u_0365_002,{},v2.3.0-fixed +evt_000081,u_0253,onboarding_completed,2026-06-15T10:39:00Z,u_0253_s01,ins_u_0253_005,"{""completed_at"": ""2026-06-15T10:43:00Z""}",v2.3.0-fixed +evt_000082,u_0024,signup_started,2026-06-15T10:40:00Z,u_0024_s01,ins_u_0024_001,{},v2.3.0-fixed +evt_000083,u_0365,profile_saved,2026-06-15T10:40:00Z,u_0365_s01,ins_u_0365_003,{},v2.3.0-fixed +evt_000084,u_0690,signup_completed,2026-06-15T10:41:00Z,u_0690_s01,ins_u_0690_002,{},v2.3.0-fixed +evt_000085,u_0634,signup_started,2026-06-15T10:42:00Z,u_0634_s01,ins_u_0634_001,{},v2.3.0-fixed +evt_000086,u_0626,activation_completed,2026-06-15T10:43:00Z,u_0626_s01,ins_u_0626_006,{},v2.3.0-fixed +evt_000087,u_0185,signup_started,2026-06-15T10:44:00Z,u_0185_s01,ins_u_0185_001,{},v2.3.0-fixed +evt_000088,u_0185,session_abandoned,2026-06-15T10:45:00Z,u_0185_s01,ins_u_0185_002,{},v2.3.0-fixed +evt_000089,u_0238,activation_completed,2026-06-15T10:45:00Z,u_0238_s01,ins_u_0238_006,{},v2.3.0-fixed +evt_000090,u_0365,onboarding_step_viewed,2026-06-15T10:45:00Z,u_0365_s01,ins_u_0365_004,{},v2.3.0-fixed +evt_000091,u_0679,signup_started,2026-06-15T10:45:00Z,u_0679_s01,ins_u_0679_001,{},v2.3.0-fixed +evt_000092,u_0024,signup_completed,2026-06-15T10:46:00Z,u_0024_s01,ins_u_0024_002,{},v2.3.0-fixed +evt_000093,u_0087,activation_completed,2026-06-15T10:46:00Z,u_0087_s01,ins_u_0087_006,{},v2.3.0-fixed +evt_000094,u_0681,signup_started,2026-06-15T10:46:00Z,u_0681_s01,ins_u_0681_001,{},v2.3.0-fixed +evt_000095,u_0690,profile_saved,2026-06-15T10:46:00Z,u_0690_s01,ins_u_0690_003,{},v2.3.0-fixed +evt_000096,u_0690,error_shown,2026-06-15T10:47:00Z,u_0690_s01,ins_u_0690_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000097,u_0221,signup_started,2026-06-15T10:48:00Z,u_0221_s01,ins_u_0221_001,{},v2.3.0-fixed +evt_000098,u_0665,onboarding_completed,2026-06-15T10:48:00Z,u_0665_s01,ins_u_0665_005,"{""completed_at"": ""2026-06-15T10:43:00Z""}",v2.3.0-fixed +evt_000099,u_0221,signup_completed,2026-06-15T10:50:00Z,u_0221_s01,ins_u_0221_002,{},v2.3.0-fixed +evt_000100,u_0634,signup_completed,2026-06-15T10:50:00Z,u_0634_s01,ins_u_0634_002,{},v2.3.0-fixed +evt_000101,u_0679,signup_completed,2026-06-15T10:50:00Z,u_0679_s01,ins_u_0679_002,{},v2.3.0-fixed +evt_000102,u_0024,profile_saved,2026-06-15T10:51:00Z,u_0024_s01,ins_u_0024_003,{},v2.3.0-fixed +evt_000103,u_0681,signup_completed,2026-06-15T10:51:00Z,u_0681_s01,ins_u_0681_002,{},v2.3.0-fixed +evt_000104,u_0690,onboarding_step_viewed,2026-06-15T10:51:00Z,u_0690_s01,ins_u_0690_005,{},v2.3.0-fixed +evt_000105,u_0024,error_shown,2026-06-15T10:52:00Z,u_0024_s01,ins_u_0024_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000106,u_0365,feature_used,2026-06-15T10:52:00Z,u_0365_s01,ins_u_0365_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000107,u_0024,onboarding_step_viewed,2026-06-15T10:53:00Z,u_0024_s01,ins_u_0024_005,{},v2.3.0-fixed +evt_000108,u_0346,signup_started,2026-06-15T10:55:00Z,u_0346_s01,ins_u_0346_001,{},v2.3.0-fixed +evt_000109,u_0639,signup_started,2026-06-15T10:55:00Z,u_0639_s01,ins_u_0639_001,{},v2.3.0-fixed +evt_000110,u_0679,profile_saved,2026-06-15T10:55:00Z,u_0679_s01,ins_u_0679_003,{},v2.3.0-fixed +evt_000111,u_0221,profile_saved,2026-06-15T10:57:00Z,u_0221_s01,ins_u_0221_003,{},v2.3.0-fixed +evt_000112,u_0346,signup_completed,2026-06-15T10:59:00Z,u_0346_s01,ins_u_0346_002,{},v2.3.0-fixed +evt_000113,u_0679,onboarding_step_viewed,2026-06-15T10:59:00Z,u_0679_s01,ins_u_0679_004,{},v2.3.0-fixed +evt_000114,u_0253,activation_completed,2026-06-15T11:00:00Z,u_0253_s01,ins_u_0253_006,{},v2.3.0-fixed +evt_000115,u_0634,profile_saved,2026-06-15T11:00:00Z,u_0634_s01,ins_u_0634_003,{},v2.3.0-fixed +evt_000116,u_0681,profile_saved,2026-06-15T11:00:00Z,u_0681_s01,ins_u_0681_003,{},v2.3.0-fixed +evt_000117,u_0346,profile_saved,2026-06-15T11:01:00Z,u_0346_s01,ins_u_0346_003,{},v2.3.0-fixed +evt_000118,u_0639,signup_completed,2026-06-15T11:01:00Z,u_0639_s01,ins_u_0639_002,{},v2.3.0-fixed +evt_000119,u_0681,onboarding_step_viewed,2026-06-15T11:02:00Z,u_0681_s01,ins_u_0681_004,{},v2.3.0-fixed +evt_000120,u_0024,feature_used,2026-06-15T11:03:00Z,u_0024_s01,ins_u_0024_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_000121,u_0221,onboarding_step_viewed,2026-06-15T11:03:00Z,u_0221_s01,ins_u_0221_004,{},v2.3.0-fixed +evt_000122,u_0634,onboarding_step_viewed,2026-06-15T11:03:00Z,u_0634_s01,ins_u_0634_004,{},v2.3.0-fixed +evt_000123,u_0395,signup_started,2026-06-15T11:06:00Z,u_0395_s01,ins_u_0395_001,{},v2.3.0-fixed +evt_000124,u_0639,profile_saved,2026-06-15T11:07:00Z,u_0639_s01,ins_u_0639_003,{},v2.3.0-fixed +evt_000125,u_0639,onboarding_step_viewed,2026-06-15T11:09:00Z,u_0639_s01,ins_u_0639_004,{},v2.3.0-fixed +evt_000126,u_0641,signup_started,2026-06-15T11:09:00Z,u_0641_s01,ins_u_0641_001,{},v2.3.0-fixed +evt_000127,u_0681,feature_used,2026-06-15T11:09:00Z,u_0681_s01,ins_u_0681_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000128,u_0679,feature_used,2026-06-15T11:10:00Z,u_0679_s01,ins_u_0679_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000129,u_0055,signup_started,2026-06-15T11:13:00Z,u_0055_s01,ins_u_0055_001,{},v2.3.0-fixed +evt_000130,u_0221,feature_used,2026-06-15T11:13:00Z,u_0221_s01,ins_u_0221_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000131,u_0395,signup_completed,2026-06-15T11:13:00Z,u_0395_s01,ins_u_0395_002,{},v2.3.0-fixed +evt_000132,u_0634,feature_used,2026-06-15T11:13:00Z,u_0634_s01,ins_u_0634_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000133,u_0365,onboarding_completed,2026-06-15T11:14:00Z,u_0365_s01,ins_u_0365_006,"{""completed_at"": ""2026-06-15T11:10:00Z""}",v2.3.0-fixed +evt_000134,u_0641,session_abandoned,2026-06-15T11:15:00Z,u_0641_s01,ins_u_0641_002,{},v2.3.0-fixed +evt_000135,u_0055,signup_completed,2026-06-15T11:19:00Z,u_0055_s01,ins_u_0055_002,{},v2.3.0-fixed +evt_000136,u_0024,onboarding_completed,2026-06-15T11:21:00Z,u_0024_s01,ins_u_0024_007,"{""completed_at"": ""2026-06-15T11:19:00Z""}",v2.3.0-fixed +evt_000137,u_0055,profile_saved,2026-06-15T11:21:00Z,u_0055_s01,ins_u_0055_003,{},v2.3.0-fixed +evt_000138,u_0395,session_abandoned,2026-06-15T11:22:00Z,u_0395_s01,ins_u_0395_003,{},v2.3.0-fixed +evt_000139,u_0033,signup_started,2026-06-15T11:23:00Z,u_0033_s01,ins_u_0033_001,{},v2.3.0-fixed +evt_000140,u_0055,onboarding_step_viewed,2026-06-15T11:23:00Z,u_0055_s01,ins_u_0055_004,{},v2.3.0-fixed +evt_000141,u_0634,onboarding_completed,2026-06-15T11:27:00Z,u_0634_s01,ins_u_0634_006,"{""completed_at"": ""2026-06-15T11:26:00Z""}",v2.3.0-fixed +evt_000142,u_0033,signup_completed,2026-06-15T11:29:00Z,u_0033_s01,ins_u_0033_002,{},v2.3.0-fixed +evt_000143,u_0221,onboarding_completed,2026-06-15T11:29:00Z,u_0221_s01,ins_u_0221_006,"{""completed_at"": ""2026-06-15T11:31:00Z""}",v2.3.0-fixed +evt_000144,u_0623,signup_started,2026-06-15T11:30:00Z,u_0623_s01,ins_u_0623_001,{},v2.3.0-fixed +evt_000145,u_0796,signup_started,2026-06-15T11:30:00Z,u_0796_s01,ins_u_0796_001,{},v2.3.0-fixed +evt_000146,u_0365,activation_completed,2026-06-15T11:31:00Z,u_0365_s01,ins_u_0365_007,{},v2.3.0-fixed +evt_000147,u_0681,onboarding_completed,2026-06-15T11:33:00Z,u_0681_s01,ins_u_0681_006,"{""completed_at"": ""2026-06-15T11:27:00Z""}",v2.3.0-fixed +evt_000148,u_0623,signup_completed,2026-06-15T11:35:00Z,u_0623_s01,ins_u_0623_002,{},v2.3.0-fixed +evt_000149,u_0679,onboarding_completed,2026-06-15T11:35:00Z,u_0679_s01,ins_u_0679_006,"{""completed_at"": ""2026-06-15T11:31:00Z""}",v2.3.0-fixed +evt_000150,u_0033,profile_saved,2026-06-15T11:38:00Z,u_0033_s01,ins_u_0033_003,{},v2.3.0-fixed +evt_000151,u_0796,session_abandoned,2026-06-15T11:38:00Z,u_0796_s01,ins_u_0796_002,{},v2.3.0-fixed +evt_000152,u_0055,feature_used,2026-06-15T11:39:00Z,u_0055_s01,ins_u_0055_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000153,u_0623,profile_saved,2026-06-15T11:40:00Z,u_0623_s01,ins_u_0623_003,{},v2.3.0-fixed +evt_000154,u_0639,onboarding_completed,2026-06-15T11:40:00Z,u_0639_s01,ins_u_0639_005,"{""completed_at"": ""2026-06-15T11:33:00Z""}",v2.3.0-fixed +evt_000155,u_0033,onboarding_step_viewed,2026-06-15T11:42:00Z,u_0033_s01,ins_u_0033_004,{},v2.3.0-fixed +evt_000156,u_0346,onboarding_completed,2026-06-15T11:43:00Z,u_0346_s01,ins_u_0346_004,"{""completed_at"": ""2026-06-15T11:32:00Z""}",v2.3.0-fixed +evt_000157,u_0623,onboarding_step_viewed,2026-06-15T11:43:00Z,u_0623_s01,ins_u_0623_004,{},v2.3.0-fixed +evt_000158,u_0645,signup_started,2026-06-15T11:49:00Z,u_0645_s01,ins_u_0645_001,{},v2.3.0-fixed +evt_000159,u_0623,feature_used,2026-06-15T11:50:00Z,u_0623_s01,ins_u_0623_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000160,u_0346,activation_completed,2026-06-15T11:52:00Z,u_0346_s01,ins_u_0346_005,{},v2.3.0-fixed +evt_000161,u_0024,activation_completed,2026-06-15T11:53:00Z,u_0024_s01,ins_u_0024_008,{},v2.3.0-fixed +evt_000162,u_0044,signup_started,2026-06-15T11:55:00Z,u_0044_s01,ins_u_0044_001,{},v2.3.0-fixed +evt_000163,u_0033,feature_used,2026-06-15T11:56:00Z,u_0033_s01,ins_u_0033_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000164,u_0645,signup_completed,2026-06-15T11:57:00Z,u_0645_s01,ins_u_0645_002,{},v2.3.0-fixed +evt_000165,u_0044,signup_completed,2026-06-15T11:58:00Z,u_0044_s01,ins_u_0044_002,{},v2.3.0-fixed +evt_000166,u_0194,signup_started,2026-06-15T12:00:00Z,u_0194_s01,ins_u_0194_001,{},v2.3.0-fixed +evt_000167,u_0645,profile_saved,2026-06-15T12:00:00Z,u_0645_s01,ins_u_0645_003,{},v2.3.0-fixed +evt_000168,u_0055,onboarding_completed,2026-06-15T12:01:00Z,u_0055_s01,ins_u_0055_006,"{""completed_at"": ""2026-06-15T11:54:00Z""}",v2.3.0-fixed +evt_000169,u_0194,signup_completed,2026-06-15T12:02:00Z,u_0194_s01,ins_u_0194_002,{},v2.3.0-fixed +evt_000170,u_0634,activation_completed,2026-06-15T12:02:00Z,u_0634_s01,ins_u_0634_007,{},v2.3.0-fixed +evt_000171,u_0044,profile_saved,2026-06-15T12:05:00Z,u_0044_s01,ins_u_0044_003,{},v2.3.0-fixed +evt_000172,u_0044,error_shown,2026-06-15T12:06:00Z,u_0044_s01,ins_u_0044_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000173,u_0645,onboarding_step_viewed,2026-06-15T12:06:00Z,u_0645_s01,ins_u_0645_004,{},v2.3.0-fixed +evt_000174,u_0623,onboarding_completed,2026-06-15T12:07:00Z,u_0623_s01,ins_u_0623_006,"{""completed_at"": ""2026-06-15T12:20:00Z""}",v2.3.0-fixed +evt_000175,u_0044,onboarding_step_viewed,2026-06-15T12:08:00Z,u_0044_s01,ins_u_0044_005,{},v2.3.0-fixed +evt_000176,u_0194,session_abandoned,2026-06-15T12:09:00Z,u_0194_s01,ins_u_0194_003,{},v2.3.0-fixed +evt_000177,u_0221,activation_completed,2026-06-15T12:12:00Z,u_0221_s01,ins_u_0221_007,{},v2.3.0-fixed +evt_000178,u_0645,feature_used,2026-06-15T12:12:00Z,u_0645_s01,ins_u_0645_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000179,u_0639,activation_completed,2026-06-15T12:16:00Z,u_0639_s01,ins_u_0639_006,{},v2.3.0-fixed +evt_000180,u_0033,onboarding_completed,2026-06-15T12:17:00Z,u_0033_s01,ins_u_0033_006,"{""completed_at"": ""2026-06-15T12:08:00Z""}",v2.3.0-fixed +evt_000181,u_0800,signup_started,2026-06-15T12:17:00Z,u_0800_s01,ins_u_0800_001,{},v2.3.0-fixed +evt_000182,u_0725,signup_started,2026-06-15T12:18:00Z,u_0725_s01,ins_u_0725_001,{},v2.3.0-fixed +evt_000183,u_0725,signup_completed,2026-06-15T12:20:00Z,u_0725_s01,ins_u_0725_002,{},v2.3.0-fixed +evt_000184,u_0800,session_abandoned,2026-06-15T12:24:00Z,u_0800_s01,ins_u_0800_002,{},v2.3.0-fixed +evt_000185,u_0187,signup_started,2026-06-15T12:25:00Z,u_0187_s01,ins_u_0187_001,{},v2.3.0-fixed +evt_000186,u_0725,session_abandoned,2026-06-15T12:25:00Z,u_0725_s01,ins_u_0725_003,{},v2.3.0-fixed +evt_000187,u_0187,signup_completed,2026-06-15T12:28:00Z,u_0187_s01,ins_u_0187_002,{},v2.3.0-fixed +evt_000188,u_0412,signup_started,2026-06-15T12:28:00Z,u_0412_s01,ins_u_0412_001,{},v2.3.0-fixed +evt_000189,u_0288,signup_started,2026-06-15T12:29:00Z,u_0288_s01,ins_u_0288_001,{},v2.3.0-fixed +evt_000190,u_0563,signup_started,2026-06-15T12:29:00Z,u_0563_s01,ins_u_0563_001,{},v2.3.0-fixed +evt_000191,u_0645,onboarding_completed,2026-06-15T12:30:00Z,u_0645_s01,ins_u_0645_006,"{""completed_at"": ""2026-06-15T12:27:00Z""}",v2.3.0-fixed +evt_000192,u_0288,signup_completed,2026-06-15T12:33:00Z,u_0288_s01,ins_u_0288_002,{},v2.3.0-fixed +evt_000193,u_0187,profile_saved,2026-06-15T12:34:00Z,u_0187_s01,ins_u_0187_003,{},v2.3.0-fixed +evt_000194,u_0774,signup_started,2026-06-15T12:34:00Z,u_0774_s01,ins_u_0774_001,{},v2.3.0-fixed +evt_000195,u_0563,session_abandoned,2026-06-15T12:35:00Z,u_0563_s01,ins_u_0563_002,{},v2.3.0-fixed +evt_000196,u_0412,signup_completed,2026-06-15T12:36:00Z,u_0412_s01,ins_u_0412_002,{},v2.3.0-fixed +evt_000197,u_0187,onboarding_step_viewed,2026-06-15T12:37:00Z,u_0187_s01,ins_u_0187_004,{},v2.3.0-fixed +evt_000198,u_0288,session_abandoned,2026-06-15T12:40:00Z,u_0288_s01,ins_u_0288_003,{},v2.3.0-fixed +evt_000199,u_0308,signup_started,2026-06-15T12:41:00Z,u_0308_s01,ins_u_0308_001,{},v2.3.0-fixed +evt_000200,u_0774,signup_completed,2026-06-15T12:41:00Z,u_0774_s01,ins_u_0774_002,{},v2.3.0-fixed +evt_000201,u_0414,signup_started,2026-06-15T12:42:00Z,u_0414_s01,ins_u_0414_001,{},v2.3.0-fixed +evt_000202,u_0044,onboarding_completed,2026-06-15T12:44:00Z,u_0044_s01,ins_u_0044_006,"{""completed_at"": ""2026-06-15T12:33:00Z""}",v2.3.0-fixed +evt_000203,u_0412,profile_saved,2026-06-15T12:46:00Z,u_0412_s01,ins_u_0412_003,{},v2.3.0-fixed +evt_000204,u_0414,signup_completed,2026-06-15T12:46:00Z,u_0414_s01,ins_u_0414_002,{},v2.3.0-fixed +evt_000205,u_0308,signup_completed,2026-06-15T12:48:00Z,u_0308_s01,ins_u_0308_002,{},v2.3.0-fixed +evt_000206,u_0623,activation_completed,2026-06-15T12:48:00Z,u_0623_s01,ins_u_0623_007,{},v2.3.0-fixed +evt_000207,u_0774,profile_saved,2026-06-15T12:49:00Z,u_0774_s01,ins_u_0774_003,{},v2.3.0-fixed +evt_000208,u_0412,onboarding_step_viewed,2026-06-15T12:51:00Z,u_0412_s01,ins_u_0412_004,{},v2.3.0-fixed +evt_000209,u_0774,onboarding_step_viewed,2026-06-15T12:54:00Z,u_0774_s01,ins_u_0774_004,{},v2.3.0-fixed +evt_000210,u_0414,profile_saved,2026-06-15T12:56:00Z,u_0414_s01,ins_u_0414_003,{},v2.3.0-fixed +evt_000211,u_0645,activation_completed,2026-06-15T12:57:00Z,u_0645_s01,ins_u_0645_007,{},v2.3.0-fixed +evt_000212,u_0308,profile_saved,2026-06-15T12:58:00Z,u_0308_s01,ins_u_0308_003,{},v2.3.0-fixed +evt_000213,u_0414,onboarding_step_viewed,2026-06-15T13:02:00Z,u_0414_s01,ins_u_0414_004,{},v2.3.0-fixed +evt_000214,u_0558,signup_started,2026-06-15T13:02:00Z,u_0558_s01,ins_u_0558_001,{},v2.3.0-fixed +evt_000215,u_0485,signup_started,2026-06-15T13:03:00Z,u_0485_s01,ins_u_0485_001,{},v2.3.0-fixed +evt_000216,u_0308,onboarding_step_viewed,2026-06-15T13:04:00Z,u_0308_s01,ins_u_0308_004,{},v2.3.0-fixed +evt_000217,u_0414,feature_used,2026-06-15T13:05:00Z,u_0414_s01,ins_u_0414_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000218,u_0558,session_abandoned,2026-06-15T13:05:00Z,u_0558_s01,ins_u_0558_002,{},v2.3.0-fixed +evt_000219,u_0705,signup_started,2026-06-15T13:09:00Z,u_0705_s01,ins_u_0705_001,{},v2.3.0-fixed +evt_000220,u_0166,signup_started,2026-06-15T13:10:00Z,u_0166_s01,ins_u_0166_001,{},v2.3.0-fixed +evt_000221,u_0705,signup_completed,2026-06-15T13:10:00Z,u_0705_s01,ins_u_0705_002,{},v2.3.0-fixed +evt_000222,u_0485,signup_completed,2026-06-15T13:11:00Z,u_0485_s01,ins_u_0485_002,{},v2.3.0-fixed +evt_000223,u_0187,onboarding_completed,2026-06-15T13:14:00Z,u_0187_s01,ins_u_0187_005,"{""completed_at"": ""2026-06-15T13:04:00Z""}",v2.3.0-fixed +evt_000224,u_0166,session_abandoned,2026-06-15T13:15:00Z,u_0166_s01,ins_u_0166_002,{},v2.3.0-fixed +evt_000225,u_0412,onboarding_completed,2026-06-15T13:15:00Z,u_0412_s01,ins_u_0412_005,"{""completed_at"": ""2026-06-15T13:21:00Z""}",v2.3.0-fixed +evt_000226,u_0705,profile_saved,2026-06-15T13:17:00Z,u_0705_s01,ins_u_0705_003,{},v2.3.0-fixed +evt_000227,u_0485,session_abandoned,2026-06-15T13:19:00Z,u_0485_s01,ins_u_0485_003,{},v2.3.0-fixed +evt_000228,u_0614,signup_started,2026-06-15T13:20:00Z,u_0614_s01,ins_u_0614_001,{},v2.3.0-fixed +evt_000229,u_0205,signup_started,2026-06-15T13:21:00Z,u_0205_s01,ins_u_0205_001,{},v2.3.0-fixed +evt_000230,u_0705,onboarding_step_viewed,2026-06-15T13:21:00Z,u_0705_s01,ins_u_0705_004,{},v2.3.0-fixed +evt_000231,u_0044,activation_completed,2026-06-15T13:22:00Z,u_0044_s01,ins_u_0044_007,{},v2.3.0-fixed +evt_000232,u_0205,signup_completed,2026-06-15T13:22:00Z,u_0205_s01,ins_u_0205_002,{},v2.3.0-fixed +evt_000233,u_0205,session_abandoned,2026-06-15T13:26:00Z,u_0205_s01,ins_u_0205_003,{},v2.3.0-fixed +evt_000234,u_0614,signup_completed,2026-06-15T13:28:00Z,u_0614_s01,ins_u_0614_002,{},v2.3.0-fixed +evt_000235,u_0308,onboarding_completed,2026-06-15T13:30:00Z,u_0308_s01,ins_u_0308_005,"{""completed_at"": ""2026-06-15T13:35:00Z""}",v2.3.0-fixed +evt_000236,u_0614,profile_saved,2026-06-15T13:30:00Z,u_0614_s01,ins_u_0614_003,{},v2.3.0-fixed +evt_000237,u_0774,onboarding_completed,2026-06-15T13:30:00Z,u_0774_s01,ins_u_0774_005,"{""completed_at"": ""2026-06-15T13:19:00Z""}",v2.3.0-fixed +evt_000238,u_0448,signup_started,2026-06-15T13:34:00Z,u_0448_s01,ins_u_0448_001,{},v2.3.0-fixed +evt_000239,u_0614,onboarding_step_viewed,2026-06-15T13:34:00Z,u_0614_s01,ins_u_0614_004,{},v2.3.0-fixed +evt_000240,u_0448,signup_completed,2026-06-15T13:35:00Z,u_0448_s01,ins_u_0448_002,{},v2.3.0-fixed +evt_000241,u_0414,onboarding_completed,2026-06-15T13:39:00Z,u_0414_s01,ins_u_0414_006,"{""completed_at"": ""2026-06-15T13:30:00Z""}",v2.3.0-fixed +evt_000242,u_0187,activation_completed,2026-06-15T13:40:00Z,u_0187_s01,ins_u_0187_006,{},v2.3.0-fixed +evt_000243,u_0448,profile_saved,2026-06-15T13:40:00Z,u_0448_s01,ins_u_0448_003,{},v2.3.0-fixed +evt_000244,u_0448,error_shown,2026-06-15T13:41:00Z,u_0448_s01,ins_u_0448_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000245,u_0448,onboarding_step_viewed,2026-06-15T13:42:00Z,u_0448_s01,ins_u_0448_005,{},v2.3.0-fixed +evt_000246,u_0412,activation_completed,2026-06-15T13:49:00Z,u_0412_s01,ins_u_0412_006,{},v2.3.0-fixed +evt_000247,u_0781,signup_started,2026-06-15T13:51:00Z,u_0781_s01,ins_u_0781_001,{},v2.3.0-fixed +evt_000248,u_0781,session_abandoned,2026-06-15T13:53:00Z,u_0781_s01,ins_u_0781_002,{},v2.3.0-fixed +evt_000249,u_0705,onboarding_completed,2026-06-15T13:56:00Z,u_0705_s01,ins_u_0705_005,"{""completed_at"": ""2026-06-15T13:44:00Z""}",v2.3.0-fixed +evt_000250,u_0414,activation_completed,2026-06-15T13:58:00Z,u_0414_s01,ins_u_0414_007,{},v2.3.0-fixed +evt_000251,u_0448,feature_used,2026-06-15T14:01:00Z,u_0448_s01,ins_u_0448_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_000252,u_0408,signup_started,2026-06-15T14:05:00Z,u_0408_s01,ins_u_0408_001,{},v2.3.0-fixed +evt_000253,u_0308,activation_completed,2026-06-15T14:12:00Z,u_0308_s01,ins_u_0308_006,{},v2.3.0-fixed +evt_000254,u_0408,signup_completed,2026-06-15T14:13:00Z,u_0408_s01,ins_u_0408_002,{},v2.3.0-fixed +evt_000255,u_0448,onboarding_completed,2026-06-15T14:15:00Z,u_0448_s01,ins_u_0448_007,"{""completed_at"": ""2026-06-15T14:13:00Z""}",v2.3.0-fixed +evt_000256,u_0705,activation_completed,2026-06-15T14:17:00Z,u_0705_s01,ins_u_0705_006,{},v2.3.0-fixed +evt_000257,u_0303,signup_started,2026-06-15T14:18:00Z,u_0303_s01,ins_u_0303_001,{},v2.3.0-fixed +evt_000258,u_0408,profile_saved,2026-06-15T14:18:00Z,u_0408_s01,ins_u_0408_003,{},v2.3.0-fixed +evt_000259,u_0303,session_abandoned,2026-06-15T14:19:00Z,u_0303_s01,ins_u_0303_002,{},v2.3.0-fixed +evt_000260,u_0408,onboarding_step_viewed,2026-06-15T14:22:00Z,u_0408_s01,ins_u_0408_004,{},v2.3.0-fixed +evt_000261,u_0307,signup_started,2026-06-15T14:24:00Z,u_0307_s01,ins_u_0307_001,{},v2.3.0-fixed +evt_000262,u_0307,signup_completed,2026-06-15T14:30:00Z,u_0307_s01,ins_u_0307_002,{},v2.3.0-fixed +evt_000263,u_0307,profile_saved,2026-06-15T14:36:00Z,u_0307_s01,ins_u_0307_003,{},v2.3.0-fixed +evt_000264,u_0608,signup_started,2026-06-15T14:36:00Z,u_0608_s01,ins_u_0608_001,{},v2.3.0-fixed +evt_000265,u_0313,signup_started,2026-06-15T14:37:00Z,u_0313_s01,ins_u_0313_001,{},v2.3.0-fixed +evt_000266,u_0313,session_abandoned,2026-06-15T14:40:00Z,u_0313_s01,ins_u_0313_002,{},v2.3.0-fixed +evt_000267,u_0448,activation_completed,2026-06-15T14:40:00Z,u_0448_s01,ins_u_0448_008,{},v2.3.0-fixed +evt_000268,u_0307,onboarding_step_viewed,2026-06-15T14:41:00Z,u_0307_s01,ins_u_0307_004,{},v2.3.0-fixed +evt_000269,u_0408,feature_used,2026-06-15T14:42:00Z,u_0408_s01,ins_u_0408_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000270,u_0608,signup_completed,2026-06-15T14:44:00Z,u_0608_s01,ins_u_0608_002,{},v2.3.0-fixed +evt_000271,u_0408,onboarding_completed,2026-06-15T14:45:00Z,u_0408_s01,ins_u_0408_006,"{""completed_at"": ""2026-06-15T14:51:00Z""}",v2.3.0-fixed +evt_000272,u_0462,signup_started,2026-06-15T14:50:00Z,u_0462_s01,ins_u_0462_001,{},v2.3.0-fixed +evt_000273,u_0462,session_abandoned,2026-06-15T14:51:00Z,u_0462_s01,ins_u_0462_002,{},v2.3.0-fixed +evt_000274,u_0608,profile_saved,2026-06-15T14:53:00Z,u_0608_s01,ins_u_0608_003,{},v2.3.0-fixed +evt_000275,u_0608,onboarding_step_viewed,2026-06-15T14:57:00Z,u_0608_s01,ins_u_0608_004,{},v2.3.0-fixed +evt_000276,u_0307,feature_used,2026-06-15T15:00:00Z,u_0307_s01,ins_u_0307_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000277,u_0307,onboarding_completed,2026-06-15T15:05:00Z,u_0307_s01,ins_u_0307_006,"{""completed_at"": ""2026-06-15T15:13:00Z""}",v2.3.0-fixed +evt_000278,u_0608,onboarding_completed,2026-06-15T15:20:00Z,u_0608_s01,ins_u_0608_005,"{""completed_at"": ""2026-06-15T15:20:00Z""}",v2.3.0-fixed +evt_000279,u_0441,signup_started,2026-06-15T15:22:00Z,u_0441_s01,ins_u_0441_001,{},v2.3.0-fixed +evt_000280,u_0441,signup_completed,2026-06-15T15:28:00Z,u_0441_s01,ins_u_0441_002,{},v2.3.0-fixed +evt_000281,u_0261,signup_started,2026-06-15T15:29:00Z,u_0261_s01,ins_u_0261_001,{},v2.3.0-fixed +evt_000282,u_0441,profile_saved,2026-06-15T15:34:00Z,u_0441_s01,ins_u_0441_003,{},v2.3.0-fixed +evt_000283,u_0261,signup_completed,2026-06-15T15:36:00Z,u_0261_s01,ins_u_0261_002,{},v2.3.0-fixed +evt_000284,u_0441,onboarding_step_viewed,2026-06-15T15:40:00Z,u_0441_s01,ins_u_0441_004,{},v2.3.0-fixed +evt_000285,u_0608,activation_completed,2026-06-15T15:40:00Z,u_0608_s01,ins_u_0608_006,{},v2.3.0-fixed +evt_000286,u_0261,profile_saved,2026-06-15T15:41:00Z,u_0261_s01,ins_u_0261_003,{},v2.3.0-fixed +evt_000287,u_0650,signup_started,2026-06-15T15:41:00Z,u_0650_s01,ins_u_0650_001,{},v2.3.0-fixed +evt_000288,u_0441,feature_used,2026-06-15T15:43:00Z,u_0441_s01,ins_u_0441_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000289,u_0261,onboarding_step_viewed,2026-06-15T15:45:00Z,u_0261_s01,ins_u_0261_004,{},v2.3.0-fixed +evt_000290,u_0650,signup_completed,2026-06-15T15:48:00Z,u_0650_s01,ins_u_0650_002,{},v2.3.0-fixed +evt_000291,u_0650,profile_saved,2026-06-15T15:51:00Z,u_0650_s01,ins_u_0650_003,{},v2.3.0-fixed +evt_000292,u_0797,signup_started,2026-06-15T15:55:00Z,u_0797_s01,ins_u_0797_001,{},v2.3.0-fixed +evt_000293,u_0797,signup_completed,2026-06-15T15:56:00Z,u_0797_s01,ins_u_0797_002,{},v2.3.0-fixed +evt_000294,u_0797,session_abandoned,2026-06-15T16:03:00Z,u_0797_s01,ins_u_0797_003,{},v2.3.0-fixed +evt_000295,u_0131,signup_started,2026-06-15T16:10:00Z,u_0131_s01,ins_u_0131_001,{},v2.3.0-fixed +evt_000296,u_0262,signup_started,2026-06-15T16:13:00Z,u_0262_s01,ins_u_0262_001,{},v2.3.0-fixed +evt_000297,u_0131,session_abandoned,2026-06-15T16:14:00Z,u_0131_s01,ins_u_0131_002,{},v2.3.0-fixed +evt_000298,u_0650,feature_used,2026-06-15T16:14:00Z,u_0650_s01,ins_u_0650_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000299,u_0262,signup_completed,2026-06-15T16:19:00Z,u_0262_s01,ins_u_0262_002,{},v2.3.0-fixed +evt_000300,u_0441,onboarding_completed,2026-06-15T16:19:00Z,u_0441_s01,ins_u_0441_006,"{""completed_at"": ""2026-06-15T16:05:00Z""}",v2.3.0-fixed +evt_000301,u_0799,signup_started,2026-06-15T16:20:00Z,u_0799_s01,ins_u_0799_001,{},v2.3.0-fixed +evt_000302,u_0561,signup_started,2026-06-15T16:23:00Z,u_0561_s01,ins_u_0561_001,{},v2.3.0-fixed +evt_000303,u_0799,signup_completed,2026-06-15T16:23:00Z,u_0799_s01,ins_u_0799_002,{},v2.3.0-fixed +evt_000304,u_0261,onboarding_completed,2026-06-15T16:25:00Z,u_0261_s01,ins_u_0261_005,"{""completed_at"": ""2026-06-15T16:20:00Z""}",v2.3.0-fixed +evt_000305,u_0663,signup_started,2026-06-15T16:26:00Z,u_0663_s01,ins_u_0663_001,{},v2.3.0-fixed +evt_000306,u_0650,onboarding_completed,2026-06-15T16:27:00Z,u_0650_s01,ins_u_0650_005,"{""completed_at"": ""2026-06-15T16:29:00Z""}",v2.3.0-fixed +evt_000307,u_0576,signup_started,2026-06-15T16:28:00Z,u_0576_s01,ins_u_0576_001,{},v2.3.0-fixed +evt_000308,u_0262,profile_saved,2026-06-15T16:29:00Z,u_0262_s01,ins_u_0262_003,{},v2.3.0-fixed +evt_000309,u_0561,signup_completed,2026-06-15T16:29:00Z,u_0561_s01,ins_u_0561_002,{},v2.3.0-fixed +evt_000310,u_0663,signup_completed,2026-06-15T16:29:00Z,u_0663_s01,ins_u_0663_002,{},v2.3.0-fixed +evt_000311,u_0576,signup_completed,2026-06-15T16:30:00Z,u_0576_s01,ins_u_0576_002,{},v2.3.0-fixed +evt_000312,u_0799,profile_saved,2026-06-15T16:31:00Z,u_0799_s01,ins_u_0799_003,{},v2.3.0-fixed +evt_000313,u_0561,session_abandoned,2026-06-15T16:33:00Z,u_0561_s01,ins_u_0561_003,{},v2.3.0-fixed +evt_000314,u_0262,onboarding_step_viewed,2026-06-15T16:34:00Z,u_0262_s01,ins_u_0262_004,{},v2.3.0-fixed +evt_000315,u_0799,onboarding_step_viewed,2026-06-15T16:34:00Z,u_0799_s01,ins_u_0799_004,{},v2.3.0-fixed +evt_000316,u_0663,session_abandoned,2026-06-15T16:35:00Z,u_0663_s01,ins_u_0663_003,{},v2.3.0-fixed +evt_000317,u_0576,session_abandoned,2026-06-15T16:36:00Z,u_0576_s01,ins_u_0576_003,{},v2.3.0-fixed +evt_000318,u_0262,feature_used,2026-06-15T16:54:00Z,u_0262_s01,ins_u_0262_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000319,u_0799,onboarding_completed,2026-06-15T17:01:00Z,u_0799_s01,ins_u_0799_005,"{""completed_at"": ""2026-06-15T17:05:00Z""}",v2.3.0-fixed +evt_000320,u_0262,onboarding_completed,2026-06-15T17:02:00Z,u_0262_s01,ins_u_0262_006,"{""completed_at"": ""2026-06-15T16:59:00Z""}",v2.3.0-fixed +evt_000321,u_0425,signup_started,2026-06-15T17:02:00Z,u_0425_s01,ins_u_0425_001,{},v2.3.0-fixed +evt_000322,u_0508,signup_started,2026-06-15T17:02:00Z,u_0508_s01,ins_u_0508_001,{},v2.3.0-fixed +evt_000323,u_0508,signup_completed,2026-06-15T17:08:00Z,u_0508_s01,ins_u_0508_002,{},v2.3.0-fixed +evt_000324,u_0425,signup_completed,2026-06-15T17:10:00Z,u_0425_s01,ins_u_0425_002,{},v2.3.0-fixed +evt_000325,u_0508,profile_saved,2026-06-15T17:10:00Z,u_0508_s01,ins_u_0508_003,{},v2.3.0-fixed +evt_000326,u_0508,onboarding_step_viewed,2026-06-15T17:12:00Z,u_0508_s01,ins_u_0508_004,{},v2.3.0-fixed +evt_000327,u_0255,signup_started,2026-06-15T17:14:00Z,u_0255_s01,ins_u_0255_001,{},v2.3.0-fixed +evt_000328,u_0425,session_abandoned,2026-06-15T17:17:00Z,u_0425_s01,ins_u_0425_003,{},v2.3.0-fixed +evt_000329,u_0255,signup_completed,2026-06-15T17:18:00Z,u_0255_s01,ins_u_0255_002,{},v2.3.0-fixed +evt_000330,u_0712,signup_started,2026-06-15T17:18:00Z,u_0712_s01,ins_u_0712_001,{},v2.3.0-fixed +evt_000331,u_0051,signup_started,2026-06-15T17:19:00Z,u_0051_s01,ins_u_0051_001,{},v2.3.0-fixed +evt_000332,u_0712,signup_completed,2026-06-15T17:22:00Z,u_0712_s01,ins_u_0712_002,{},v2.3.0-fixed +evt_000333,u_0051,signup_completed,2026-06-15T17:26:00Z,u_0051_s01,ins_u_0051_002,{},v2.3.0-fixed +evt_000334,u_0255,profile_saved,2026-06-15T17:26:00Z,u_0255_s01,ins_u_0255_003,{},v2.3.0-fixed +evt_000335,u_0508,feature_used,2026-06-15T17:27:00Z,u_0508_s01,ins_u_0508_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000336,u_0712,profile_saved,2026-06-15T17:27:00Z,u_0712_s01,ins_u_0712_003,{},v2.3.0-fixed +evt_000337,u_0051,profile_saved,2026-06-15T17:28:00Z,u_0051_s01,ins_u_0051_003,{},v2.3.0-fixed +evt_000338,u_0051,error_shown,2026-06-15T17:29:00Z,u_0051_s01,ins_u_0051_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000339,u_0255,onboarding_step_viewed,2026-06-15T17:29:00Z,u_0255_s01,ins_u_0255_004,{},v2.3.0-fixed +evt_000340,u_0712,onboarding_step_viewed,2026-06-15T17:30:00Z,u_0712_s01,ins_u_0712_004,{},v2.3.0-fixed +evt_000341,u_0051,onboarding_step_viewed,2026-06-15T17:34:00Z,u_0051_s01,ins_u_0051_005,{},v2.3.0-fixed +evt_000342,u_0799,activation_completed,2026-06-15T17:36:00Z,u_0799_s01,ins_u_0799_006,{},v2.3.0-fixed +evt_000343,u_0051,feature_used,2026-06-15T17:39:00Z,u_0051_s01,ins_u_0051_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000344,u_0712,feature_used,2026-06-15T17:42:00Z,u_0712_s01,ins_u_0712_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000345,u_0262,activation_completed,2026-06-15T17:43:00Z,u_0262_s01,ins_u_0262_007,{},v2.3.0-fixed +evt_000346,u_0255,feature_used,2026-06-15T17:46:00Z,u_0255_s01,ins_u_0255_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000347,u_0508,onboarding_completed,2026-06-15T17:55:00Z,u_0508_s01,ins_u_0508_006,"{""completed_at"": ""2026-06-15T17:44:00Z""}",v2.3.0-fixed +evt_000348,u_0445,signup_started,2026-06-15T17:56:00Z,u_0445_s01,ins_u_0445_001,{},v2.3.0-fixed +evt_000349,u_0256,signup_started,2026-06-15T17:57:00Z,u_0256_s01,ins_u_0256_001,{},v2.3.0-fixed +evt_000350,u_0255,onboarding_completed,2026-06-15T17:59:00Z,u_0255_s01,ins_u_0255_006,"{""completed_at"": ""2026-06-15T17:59:00Z""}",v2.3.0-fixed +evt_000351,u_0712,onboarding_completed,2026-06-15T17:59:00Z,u_0712_s01,ins_u_0712_006,"{""completed_at"": ""2026-06-15T18:02:00Z""}",v2.3.0-fixed +evt_000352,u_0445,signup_completed,2026-06-15T18:00:00Z,u_0445_s01,ins_u_0445_002,{},v2.3.0-fixed +evt_000353,u_0085,signup_started,2026-06-15T18:01:00Z,u_0085_s01,ins_u_0085_001,{},v2.3.0-fixed +evt_000354,u_0236,signup_started,2026-06-15T18:02:00Z,u_0236_s01,ins_u_0236_001,{},v2.3.0-fixed +evt_000355,u_0748,signup_started,2026-06-15T18:02:00Z,u_0748_s01,ins_u_0748_001,{},v2.3.0-fixed +evt_000356,u_0085,signup_completed,2026-06-15T18:03:00Z,u_0085_s01,ins_u_0085_002,{},v2.3.0-fixed +evt_000357,u_0748,signup_completed,2026-06-15T18:03:00Z,u_0748_s01,ins_u_0748_002,{},v2.3.0-fixed +evt_000358,u_0236,signup_completed,2026-06-15T18:04:00Z,u_0236_s01,ins_u_0236_002,{},v2.3.0-fixed +evt_000359,u_0445,profile_saved,2026-06-15T18:04:00Z,u_0445_s01,ins_u_0445_003,{},v2.3.0-fixed +evt_000360,u_0256,signup_completed,2026-06-15T18:05:00Z,u_0256_s01,ins_u_0256_002,{},v2.3.0-fixed +evt_000361,u_0286,signup_started,2026-06-15T18:06:00Z,u_0286_s01,ins_u_0286_001,{},v2.3.0-fixed +evt_000362,u_0286,signup_completed,2026-06-15T18:07:00Z,u_0286_s01,ins_u_0286_002,{},v2.3.0-fixed +evt_000363,u_0445,onboarding_step_viewed,2026-06-15T18:08:00Z,u_0445_s01,ins_u_0445_004,{},v2.3.0-fixed +evt_000364,u_0085,session_abandoned,2026-06-15T18:09:00Z,u_0085_s01,ins_u_0085_003,{},v2.3.0-fixed +evt_000365,u_0286,profile_saved,2026-06-15T18:09:00Z,u_0286_s01,ins_u_0286_003,{},v2.3.0-fixed +evt_000366,u_0236,profile_saved,2026-06-15T18:10:00Z,u_0236_s01,ins_u_0236_003,{},v2.3.0-fixed +evt_000367,u_0236,error_shown,2026-06-15T18:11:00Z,u_0236_s01,ins_u_0236_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000368,u_0256,session_abandoned,2026-06-15T18:12:00Z,u_0256_s01,ins_u_0256_003,{},v2.3.0-fixed +evt_000369,u_0445,feature_used,2026-06-15T18:12:00Z,u_0445_s01,ins_u_0445_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000370,u_0748,profile_saved,2026-06-15T18:12:00Z,u_0748_s01,ins_u_0748_003,{},v2.3.0-fixed +evt_000371,u_0286,onboarding_step_viewed,2026-06-15T18:14:00Z,u_0286_s01,ins_u_0286_004,{},v2.3.0-fixed +evt_000372,u_0416,signup_started,2026-06-15T18:14:00Z,u_0416_s01,ins_u_0416_001,{},v2.3.0-fixed +evt_000373,u_0236,onboarding_step_viewed,2026-06-15T18:15:00Z,u_0236_s01,ins_u_0236_005,{},v2.3.0-fixed +evt_000374,u_0286,feature_used,2026-06-15T18:16:00Z,u_0286_s01,ins_u_0286_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000375,u_0416,signup_completed,2026-06-15T18:16:00Z,u_0416_s01,ins_u_0416_002,{},v2.3.0-fixed +evt_000376,u_0416,profile_saved,2026-06-15T18:24:00Z,u_0416_s01,ins_u_0416_003,{},v2.3.0-fixed +evt_000377,u_0381,signup_started,2026-06-15T18:25:00Z,u_0381_s01,ins_u_0381_001,{},v2.3.0-fixed +evt_000378,u_0748,feature_used,2026-06-15T18:26:00Z,u_0748_s01,ins_u_0748_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000379,u_0416,onboarding_step_viewed,2026-06-15T18:27:00Z,u_0416_s01,ins_u_0416_004,{},v2.3.0-fixed +evt_000380,u_0508,activation_completed,2026-06-15T18:28:00Z,u_0508_s01,ins_u_0508_007,{},v2.3.0-fixed +evt_000381,u_0712,activation_completed,2026-06-15T18:28:00Z,u_0712_s01,ins_u_0712_007,{},v2.3.0-fixed +evt_000382,u_0008,signup_started,2026-06-15T18:31:00Z,u_0008_s01,ins_u_0008_001,{},v2.3.0-fixed +evt_000383,u_0454,signup_started,2026-06-15T18:31:00Z,u_0454_s01,ins_u_0454_001,{},v2.3.0-fixed +evt_000384,u_0381,signup_completed,2026-06-15T18:32:00Z,u_0381_s01,ins_u_0381_002,{},v2.3.0-fixed +evt_000385,u_0008,signup_completed,2026-06-15T18:33:00Z,u_0008_s01,ins_u_0008_002,{},v2.3.0-fixed +evt_000386,u_0454,session_abandoned,2026-06-15T18:35:00Z,u_0454_s01,ins_u_0454_002,{},v2.3.0-fixed +evt_000387,u_0008,profile_saved,2026-06-15T18:38:00Z,u_0008_s01,ins_u_0008_003,{},v2.3.0-fixed +evt_000388,u_0606,signup_started,2026-06-15T18:39:00Z,u_0606_s01,ins_u_0606_001,{},v2.3.0-fixed +evt_000389,u_0008,onboarding_step_viewed,2026-06-15T18:40:00Z,u_0008_s01,ins_u_0008_004,{},v2.3.0-fixed +evt_000390,u_0236,onboarding_completed,2026-06-15T18:40:00Z,u_0236_s01,ins_u_0236_006,"{""completed_at"": ""2026-06-15T18:36:00Z""}",v2.3.0-fixed +evt_000391,u_0305,signup_started,2026-06-15T18:40:00Z,u_0305_s01,ins_u_0305_001,{},v2.3.0-fixed +evt_000392,u_0381,profile_saved,2026-06-15T18:40:00Z,u_0381_s01,ins_u_0381_003,{},v2.3.0-fixed +evt_000393,u_0606,signup_completed,2026-06-15T18:40:00Z,u_0606_s01,ins_u_0606_002,{},v2.3.0-fixed +evt_000394,u_0286,onboarding_completed,2026-06-15T18:42:00Z,u_0286_s01,ins_u_0286_006,"{""completed_at"": ""2026-06-15T18:39:00Z""}",v2.3.0-fixed +evt_000395,u_0305,signup_completed,2026-06-15T18:44:00Z,u_0305_s01,ins_u_0305_002,{},v2.3.0-fixed +evt_000396,u_0381,onboarding_step_viewed,2026-06-15T18:45:00Z,u_0381_s01,ins_u_0381_004,{},v2.3.0-fixed +evt_000397,u_0606,profile_saved,2026-06-15T18:48:00Z,u_0606_s01,ins_u_0606_003,{},v2.3.0-fixed +evt_000398,u_0445,onboarding_completed,2026-06-15T18:49:00Z,u_0445_s01,ins_u_0445_006,"{""completed_at"": ""2026-06-15T18:43:00Z""}",v2.3.0-fixed +evt_000399,u_0606,error_shown,2026-06-15T18:49:00Z,u_0606_s01,ins_u_0606_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000400,u_0748,onboarding_completed,2026-06-15T18:51:00Z,u_0748_s01,ins_u_0748_005,"{""completed_at"": ""2026-06-15T18:52:00Z""}",v2.3.0-fixed +evt_000401,u_0305,profile_saved,2026-06-15T18:52:00Z,u_0305_s01,ins_u_0305_003,{},v2.3.0-fixed +evt_000402,u_0305,onboarding_step_viewed,2026-06-15T18:54:00Z,u_0305_s01,ins_u_0305_004,{},v2.3.0-fixed +evt_000403,u_0606,onboarding_step_viewed,2026-06-15T18:54:00Z,u_0606_s01,ins_u_0606_005,{},v2.3.0-fixed +evt_000404,u_0603,signup_started,2026-06-15T18:57:00Z,u_0603_s01,ins_u_0603_001,{},v2.3.0-fixed +evt_000405,u_0008,feature_used,2026-06-15T18:58:00Z,u_0008_s01,ins_u_0008_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000406,u_0416,onboarding_completed,2026-06-15T18:59:00Z,u_0416_s01,ins_u_0416_005,"{""completed_at"": ""2026-06-15T19:01:00Z""}",v2.3.0-fixed +evt_000407,u_0603,signup_completed,2026-06-15T19:04:00Z,u_0603_s01,ins_u_0603_002,{},v2.3.0-fixed +evt_000408,u_0547,signup_started,2026-06-15T19:05:00Z,u_0547_s01,ins_u_0547_001,{},v2.3.0-fixed +evt_000409,u_0381,onboarding_completed,2026-06-15T19:06:00Z,u_0381_s01,ins_u_0381_005,"{""completed_at"": ""2026-06-15T19:19:00Z""}",v2.3.0-fixed +evt_000410,u_0547,signup_completed,2026-06-15T19:07:00Z,u_0547_s01,ins_u_0547_002,{},v2.3.0-fixed +evt_000411,u_0603,profile_saved,2026-06-15T19:10:00Z,u_0603_s01,ins_u_0603_003,{},v2.3.0-fixed +evt_000412,u_0008,onboarding_completed,2026-06-15T19:12:00Z,u_0008_s01,ins_u_0008_006,"{""completed_at"": ""2026-06-15T19:10:00Z""}",v2.3.0-fixed +evt_000413,u_0547,profile_saved,2026-06-15T19:15:00Z,u_0547_s01,ins_u_0547_003,{},v2.3.0-fixed +evt_000414,u_0547,onboarding_step_viewed,2026-06-15T19:20:00Z,u_0547_s01,ins_u_0547_004,{},v2.3.0-fixed +evt_000415,u_0547,feature_used,2026-06-15T19:22:00Z,u_0547_s01,ins_u_0547_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000416,u_0599,signup_started,2026-06-15T19:23:00Z,u_0599_s01,ins_u_0599_001,{},v2.3.0-fixed +evt_000417,u_0603,feature_used,2026-06-15T19:23:00Z,u_0603_s01,ins_u_0603_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000418,u_0644,signup_started,2026-06-15T19:23:00Z,u_0644_s01,ins_u_0644_001,{},v2.3.0-fixed +evt_000419,u_0644,signup_completed,2026-06-15T19:25:00Z,u_0644_s01,ins_u_0644_002,{},v2.3.0-fixed +evt_000420,u_0599,signup_completed,2026-06-15T19:28:00Z,u_0599_s01,ins_u_0599_002,{},v2.3.0-fixed +evt_000421,u_0748,activation_completed,2026-06-15T19:28:00Z,u_0748_s01,ins_u_0748_006,{},v2.3.0-fixed +evt_000422,u_0606,onboarding_completed,2026-06-15T19:29:00Z,u_0606_s01,ins_u_0606_006,"{""completed_at"": ""2026-06-15T19:25:00Z""}",v2.3.0-fixed +evt_000423,u_0644,session_abandoned,2026-06-15T19:31:00Z,u_0644_s01,ins_u_0644_003,{},v2.3.0-fixed +evt_000424,u_0420,signup_started,2026-06-15T19:32:00Z,u_0420_s01,ins_u_0420_001,{},v2.3.0-fixed +evt_000425,u_0420,signup_completed,2026-06-15T19:33:00Z,u_0420_s01,ins_u_0420_002,{},v2.3.0-fixed +evt_000426,u_0305,onboarding_completed,2026-06-15T19:35:00Z,u_0305_s01,ins_u_0305_005,"{""completed_at"": ""2026-06-15T19:32:00Z""}",v2.3.0-fixed +evt_000427,u_0599,session_abandoned,2026-06-15T19:36:00Z,u_0599_s01,ins_u_0599_003,{},v2.3.0-fixed +evt_000428,u_0305,activation_completed,2026-06-15T19:40:00Z,u_0305_s01,ins_u_0305_006,{},v2.3.0-fixed +evt_000429,u_0606,activation_completed,2026-06-15T19:40:00Z,u_0606_s01,ins_u_0606_007,{},v2.3.0-fixed +evt_000430,u_0008,activation_completed,2026-06-15T19:41:00Z,u_0008_s01,ins_u_0008_007,{},v2.3.0-fixed +evt_000431,u_0547,onboarding_completed,2026-06-15T19:41:00Z,u_0547_s01,ins_u_0547_006,"{""completed_at"": ""2026-06-15T19:51:00Z""}",v2.3.0-fixed +evt_000432,u_0535,signup_started,2026-06-15T19:42:00Z,u_0535_s01,ins_u_0535_001,{},v2.3.0-fixed +evt_000433,u_0420,profile_saved,2026-06-15T19:43:00Z,u_0420_s01,ins_u_0420_003,{},v2.3.0-fixed +evt_000434,u_0535,signup_completed,2026-06-15T19:44:00Z,u_0535_s01,ins_u_0535_002,{},v2.3.0-fixed +evt_000435,u_0420,onboarding_step_viewed,2026-06-15T19:45:00Z,u_0420_s01,ins_u_0420_004,{},v2.3.0-fixed +evt_000436,u_0163,signup_started,2026-06-15T19:48:00Z,u_0163_s01,ins_u_0163_001,{},v2.3.0-fixed +evt_000437,u_0420,feature_used,2026-06-15T19:50:00Z,u_0420_s01,ins_u_0420_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000438,u_0163,session_abandoned,2026-06-15T19:51:00Z,u_0163_s01,ins_u_0163_002,{},v2.3.0-fixed +evt_000439,u_0535,profile_saved,2026-06-15T19:52:00Z,u_0535_s01,ins_u_0535_003,{},v2.3.0-fixed +evt_000440,u_0351,signup_started,2026-06-15T19:53:00Z,u_0351_s01,ins_u_0351_001,{},v2.3.0-fixed +evt_000441,u_0580,signup_started,2026-06-15T19:53:00Z,u_0580_s01,ins_u_0580_001,{},v2.3.0-fixed +evt_000442,u_0535,onboarding_step_viewed,2026-06-15T19:55:00Z,u_0535_s01,ins_u_0535_004,{},v2.3.0-fixed +evt_000443,u_0001,signup_started,2026-06-15T19:56:00Z,u_0001_s01,ins_u_0001_001,{},v2.3.0-fixed +evt_000444,u_0351,signup_completed,2026-06-15T19:58:00Z,u_0351_s01,ins_u_0351_002,{},v2.3.0-fixed +evt_000445,u_0433,signup_started,2026-06-15T20:01:00Z,u_0433_s01,ins_u_0433_001,{},v2.3.0-fixed +evt_000446,u_0535,feature_used,2026-06-15T20:01:00Z,u_0535_s01,ins_u_0535_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000447,u_0580,signup_completed,2026-06-15T20:01:00Z,u_0580_s01,ins_u_0580_002,{},v2.3.0-fixed +evt_000448,u_0351,session_abandoned,2026-06-15T20:02:00Z,u_0351_s01,ins_u_0351_003,{},v2.3.0-fixed +evt_000449,u_0001,signup_completed,2026-06-15T20:03:00Z,u_0001_s01,ins_u_0001_002,{},v2.3.0-fixed +evt_000450,u_0580,session_abandoned,2026-06-15T20:05:00Z,u_0580_s01,ins_u_0580_003,{},v2.3.0-fixed +evt_000451,u_0711,signup_started,2026-06-15T20:05:00Z,u_0711_s01,ins_u_0711_001,{},v2.3.0-fixed +evt_000452,u_0433,signup_completed,2026-06-15T20:08:00Z,u_0433_s01,ins_u_0433_002,{},v2.3.0-fixed +evt_000453,u_0711,signup_completed,2026-06-15T20:08:00Z,u_0711_s01,ins_u_0711_002,{},v2.3.0-fixed +evt_000454,u_0001,session_abandoned,2026-06-15T20:09:00Z,u_0001_s01,ins_u_0001_003,{},v2.3.0-fixed +evt_000455,u_0711,profile_saved,2026-06-15T20:12:00Z,u_0711_s01,ins_u_0711_003,{},v2.3.0-fixed +evt_000456,u_0284,signup_started,2026-06-15T20:15:00Z,u_0284_s01,ins_u_0284_001,{},v2.3.0-fixed +evt_000457,u_0433,profile_saved,2026-06-15T20:17:00Z,u_0433_s01,ins_u_0433_003,{},v2.3.0-fixed +evt_000458,u_0711,onboarding_step_viewed,2026-06-15T20:17:00Z,u_0711_s01,ins_u_0711_004,{},v2.3.0-fixed +evt_000459,u_0420,onboarding_completed,2026-06-15T20:19:00Z,u_0420_s01,ins_u_0420_006,"{""completed_at"": ""2026-06-15T20:16:00Z""}",v2.3.0-fixed +evt_000460,u_0284,signup_completed,2026-06-15T20:23:00Z,u_0284_s01,ins_u_0284_002,{},v2.3.0-fixed +evt_000461,u_0284,profile_saved,2026-06-15T20:27:00Z,u_0284_s01,ins_u_0284_003,{},v2.3.0-fixed +evt_000462,u_0433,feature_used,2026-06-15T20:27:00Z,u_0433_s01,ins_u_0433_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000463,u_0061,signup_started,2026-06-15T20:32:00Z,u_0061_s01,ins_u_0061_001,{},v2.3.0-fixed +evt_000464,u_0465,signup_started,2026-06-15T20:32:00Z,u_0465_s01,ins_u_0465_001,{},v2.3.0-fixed +evt_000465,u_0535,onboarding_completed,2026-06-15T20:34:00Z,u_0535_s01,ins_u_0535_006,"{""completed_at"": ""2026-06-15T20:23:00Z""}",v2.3.0-fixed +evt_000466,u_0028,signup_started,2026-06-15T20:37:00Z,u_0028_s01,ins_u_0028_001,{},v2.3.0-fixed +evt_000467,u_0028,session_abandoned,2026-06-15T20:39:00Z,u_0028_s01,ins_u_0028_002,{},v2.3.0-fixed +evt_000468,u_0061,signup_completed,2026-06-15T20:39:00Z,u_0061_s01,ins_u_0061_002,{},v2.3.0-fixed +evt_000469,u_0465,session_abandoned,2026-06-15T20:39:00Z,u_0465_s01,ins_u_0465_002,{},v2.3.0-fixed +evt_000470,u_0128,signup_started,2026-06-15T20:40:00Z,u_0128_s01,ins_u_0128_001,{},v2.3.0-fixed +evt_000471,u_0284,feature_used,2026-06-15T20:43:00Z,u_0284_s01,ins_u_0284_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000472,u_0061,profile_saved,2026-06-15T20:45:00Z,u_0061_s01,ins_u_0061_003,{},v2.3.0-fixed +evt_000473,u_0128,signup_completed,2026-06-15T20:45:00Z,u_0128_s01,ins_u_0128_002,{},v2.3.0-fixed +evt_000474,u_0711,onboarding_completed,2026-06-15T20:50:00Z,u_0711_s01,ins_u_0711_005,"{""completed_at"": ""2026-06-15T20:39:00Z""}",v2.3.0-fixed +evt_000475,u_0128,profile_saved,2026-06-15T20:55:00Z,u_0128_s01,ins_u_0128_003,{},v2.3.0-fixed +evt_000476,u_0535,activation_completed,2026-06-15T20:56:00Z,u_0535_s01,ins_u_0535_007,{},v2.3.0-fixed +evt_000477,u_0128,onboarding_step_viewed,2026-06-15T20:58:00Z,u_0128_s01,ins_u_0128_004,{},v2.3.0-fixed +evt_000478,u_0789,signup_started,2026-06-15T20:59:00Z,u_0789_s01,ins_u_0789_001,{},v2.3.0-fixed +evt_000479,u_0711,activation_completed,2026-06-15T21:03:00Z,u_0711_s01,ins_u_0711_006,{},v2.3.0-fixed +evt_000480,u_0789,signup_completed,2026-06-15T21:06:00Z,u_0789_s01,ins_u_0789_002,{},v2.3.0-fixed +evt_000481,u_0789,profile_saved,2026-06-15T21:13:00Z,u_0789_s01,ins_u_0789_003,{},v2.3.0-fixed +evt_000482,u_0128,feature_used,2026-06-15T21:14:00Z,u_0128_s01,ins_u_0128_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000483,u_0789,onboarding_step_viewed,2026-06-15T21:19:00Z,u_0789_s01,ins_u_0789_004,{},v2.3.0-fixed +evt_000484,u_0128,onboarding_completed,2026-06-15T21:27:00Z,u_0128_s01,ins_u_0128_006,"{""completed_at"": ""2026-06-15T21:32:00Z""}",v2.3.0-fixed +evt_000485,u_0789,feature_used,2026-06-15T21:29:00Z,u_0789_s01,ins_u_0789_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000486,u_0061,onboarding_completed,2026-06-15T21:30:00Z,u_0061_s01,ins_u_0061_004,"{""completed_at"": ""2026-06-15T21:12:00Z""}",v2.3.0-fixed +evt_000487,u_0433,activation_completed,2026-06-15T21:37:00Z,u_0433_s01,ins_u_0433_005,{},v2.3.0-fixed +evt_000488,u_0789,onboarding_completed,2026-06-15T21:49:00Z,u_0789_s01,ins_u_0789_006,"{""completed_at"": ""2026-06-15T21:45:00Z""}",v2.3.0-fixed +evt_000489,u_0061,activation_completed,2026-06-15T22:01:00Z,u_0061_s01,ins_u_0061_005,{},v2.3.0-fixed +evt_000490,u_0050,signup_started,2026-06-16T08:02:00Z,u_0050_s01,ins_u_0050_001,{},v2.3.0-fixed +evt_000491,u_0050,signup_completed,2026-06-16T08:03:00Z,u_0050_s01,ins_u_0050_002,{},v2.3.0-fixed +evt_000492,u_0050,profile_saved,2026-06-16T08:06:00Z,u_0050_s01,ins_u_0050_003,{},v2.3.0-fixed +evt_000493,u_0299,signup_started,2026-06-16T08:09:00Z,u_0299_s01,ins_u_0299_001,{},v2.3.0-fixed +evt_000494,u_0050,onboarding_step_viewed,2026-06-16T08:11:00Z,u_0050_s01,ins_u_0050_004,{},v2.3.0-fixed +evt_000495,u_0494,signup_started,2026-06-16T08:11:00Z,u_0494_s01,ins_u_0494_001,{},v2.3.0-fixed +evt_000496,u_0756,signup_started,2026-06-16T08:11:00Z,u_0756_s01,ins_u_0756_001,{},v2.3.0-fixed +evt_000497,u_0726,signup_started,2026-06-16T08:12:00Z,u_0726_s01,ins_u_0726_001,{},v2.3.0-fixed +evt_000498,u_0756,signup_completed,2026-06-16T08:12:00Z,u_0756_s01,ins_u_0756_002,{},v2.3.0-fixed +evt_000499,u_0726,signup_completed,2026-06-16T08:13:00Z,u_0726_s01,ins_u_0726_002,{},v2.3.0-fixed +evt_000500,u_0299,signup_completed,2026-06-16T08:14:00Z,u_0299_s01,ins_u_0299_002,{},v2.3.0-fixed +evt_000501,u_0494,session_abandoned,2026-06-16T08:14:00Z,u_0494_s01,ins_u_0494_002,{},v2.3.0-fixed +evt_000502,u_0312,signup_started,2026-06-16T08:16:00Z,u_0312_s01,ins_u_0312_001,{},v2.3.0-fixed +evt_000503,u_0312,signup_completed,2026-06-16T08:20:00Z,u_0312_s01,ins_u_0312_002,{},v2.3.0-fixed +evt_000504,u_0756,session_abandoned,2026-06-16T08:20:00Z,u_0756_s01,ins_u_0756_003,{},v2.3.0-fixed +evt_000505,u_0390,signup_started,2026-06-16T08:21:00Z,u_0390_s01,ins_u_0390_001,{},v2.3.0-fixed +evt_000506,u_0299,profile_saved,2026-06-16T08:22:00Z,u_0299_s01,ins_u_0299_003,{},v2.3.0-fixed +evt_000507,u_0312,profile_saved,2026-06-16T08:22:00Z,u_0312_s01,ins_u_0312_003,{},v2.3.0-fixed +evt_000508,u_0726,profile_saved,2026-06-16T08:22:00Z,u_0726_s01,ins_u_0726_003,{},v2.3.0-fixed +evt_000509,u_0312,error_shown,2026-06-16T08:23:00Z,u_0312_s01,ins_u_0312_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000510,u_0098,signup_started,2026-06-16T08:25:00Z,u_0098_s01,ins_u_0098_001,{},v2.3.0-fixed +evt_000511,u_0390,signup_completed,2026-06-16T08:26:00Z,u_0390_s01,ins_u_0390_002,{},v2.3.0-fixed +evt_000512,u_0299,onboarding_step_viewed,2026-06-16T08:28:00Z,u_0299_s01,ins_u_0299_004,{},v2.3.0-fixed +evt_000513,u_0312,onboarding_step_viewed,2026-06-16T08:28:00Z,u_0312_s01,ins_u_0312_005,{},v2.3.0-fixed +evt_000514,u_0050,feature_used,2026-06-16T08:29:00Z,u_0050_s01,ins_u_0050_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000515,u_0726,feature_used,2026-06-16T08:29:00Z,u_0726_s01,ins_u_0726_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000516,u_0098,signup_completed,2026-06-16T08:31:00Z,u_0098_s01,ins_u_0098_002,{},v2.3.0-fixed +evt_000517,u_0390,session_abandoned,2026-06-16T08:35:00Z,u_0390_s01,ins_u_0390_003,{},v2.3.0-fixed +evt_000518,u_0299,feature_used,2026-06-16T08:37:00Z,u_0299_s01,ins_u_0299_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000519,u_0312,feature_used,2026-06-16T08:37:00Z,u_0312_s01,ins_u_0312_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_000520,u_0050,onboarding_completed,2026-06-16T08:38:00Z,u_0050_s01,ins_u_0050_006,"{""completed_at"": ""2026-06-16T08:43:00Z""}",v2.3.0-fixed +evt_000521,u_0098,profile_saved,2026-06-16T08:39:00Z,u_0098_s01,ins_u_0098_003,{},v2.3.0-fixed +evt_000522,u_0526,signup_started,2026-06-16T08:49:00Z,u_0526_s01,ins_u_0526_001,{},v2.3.0-fixed +evt_000523,u_0726,onboarding_completed,2026-06-16T08:51:00Z,u_0726_s01,ins_u_0726_005,"{""completed_at"": ""2026-06-16T08:52:00Z""}",v2.3.0-fixed +evt_000524,u_0299,onboarding_completed,2026-06-16T08:54:00Z,u_0299_s01,ins_u_0299_006,"{""completed_at"": ""2026-06-16T08:51:00Z""}",v2.3.0-fixed +evt_000525,u_0446,signup_started,2026-06-16T08:54:00Z,u_0446_s01,ins_u_0446_001,{},v2.3.0-fixed +evt_000526,u_0526,signup_completed,2026-06-16T08:54:00Z,u_0526_s01,ins_u_0526_002,{},v2.3.0-fixed +evt_000527,u_0058,signup_started,2026-06-16T08:59:00Z,u_0058_s01,ins_u_0058_001,{},v2.3.0-fixed +evt_000528,u_0526,profile_saved,2026-06-16T09:00:00Z,u_0526_s01,ins_u_0526_003,{},v2.3.0-fixed +evt_000529,u_0707,signup_started,2026-06-16T09:00:00Z,u_0707_s01,ins_u_0707_001,{},v2.3.0-fixed +evt_000530,u_0058,signup_completed,2026-06-16T09:01:00Z,u_0058_s01,ins_u_0058_002,{},v2.3.0-fixed +evt_000531,u_0098,feature_used,2026-06-16T09:01:00Z,u_0098_s01,ins_u_0098_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000532,u_0446,signup_completed,2026-06-16T09:01:00Z,u_0446_s01,ins_u_0446_002,{},v2.3.0-fixed +evt_000533,u_0707,signup_completed,2026-06-16T09:01:00Z,u_0707_s01,ins_u_0707_002,{},v2.3.0-fixed +evt_000534,u_0526,onboarding_step_viewed,2026-06-16T09:02:00Z,u_0526_s01,ins_u_0526_004,{},v2.3.0-fixed +evt_000535,u_0707,profile_saved,2026-06-16T09:03:00Z,u_0707_s01,ins_u_0707_003,{},v2.3.0-fixed +evt_000536,u_0312,onboarding_completed,2026-06-16T09:05:00Z,u_0312_s01,ins_u_0312_007,"{""completed_at"": ""2026-06-16T09:01:00Z""}",v2.3.0-fixed +evt_000537,u_0446,profile_saved,2026-06-16T09:06:00Z,u_0446_s01,ins_u_0446_003,{},v2.3.0-fixed +evt_000538,u_0058,profile_saved,2026-06-16T09:08:00Z,u_0058_s01,ins_u_0058_003,{},v2.3.0-fixed +evt_000539,u_0446,onboarding_step_viewed,2026-06-16T09:08:00Z,u_0446_s01,ins_u_0446_004,{},v2.3.0-fixed +evt_000540,u_0707,onboarding_step_viewed,2026-06-16T09:08:00Z,u_0707_s01,ins_u_0707_004,{},v2.3.0-fixed +evt_000541,u_0117,signup_started,2026-06-16T09:11:00Z,u_0117_s01,ins_u_0117_001,{},v2.3.0-fixed +evt_000542,u_0117,signup_completed,2026-06-16T09:12:00Z,u_0117_s01,ins_u_0117_002,{},v2.3.0-fixed +evt_000543,u_0446,feature_used,2026-06-16T09:13:00Z,u_0446_s01,ins_u_0446_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000544,u_0073,signup_started,2026-06-16T09:14:00Z,u_0073_s01,ins_u_0073_001,{},v2.3.0-fixed +evt_000545,u_0098,onboarding_completed,2026-06-16T09:16:00Z,u_0098_s01,ins_u_0098_005,"{""completed_at"": ""2026-06-16T09:08:00Z""}",v2.3.0-fixed +evt_000546,u_0117,session_abandoned,2026-06-16T09:16:00Z,u_0117_s01,ins_u_0117_003,{},v2.3.0-fixed +evt_000547,u_0214,signup_started,2026-06-16T09:16:00Z,u_0214_s01,ins_u_0214_001,{},v2.3.0-fixed +evt_000548,u_0073,signup_completed,2026-06-16T09:17:00Z,u_0073_s01,ins_u_0073_002,{},v2.3.0-fixed +evt_000549,u_0405,signup_started,2026-06-16T09:18:00Z,u_0405_s01,ins_u_0405_001,{},v2.3.0-fixed +evt_000550,u_0707,feature_used,2026-06-16T09:20:00Z,u_0707_s01,ins_u_0707_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000551,u_0526,feature_used,2026-06-16T09:22:00Z,u_0526_s01,ins_u_0526_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000552,u_0214,signup_completed,2026-06-16T09:24:00Z,u_0214_s01,ins_u_0214_002,{},v2.3.0-fixed +evt_000553,u_0279,signup_started,2026-06-16T09:24:00Z,u_0279_s01,ins_u_0279_001,{},v2.3.0-fixed +evt_000554,u_0405,signup_completed,2026-06-16T09:24:00Z,u_0405_s01,ins_u_0405_002,{},v2.3.0-fixed +evt_000555,u_0073,session_abandoned,2026-06-16T09:25:00Z,u_0073_s01,ins_u_0073_003,{},v2.3.0-fixed +evt_000556,u_0279,signup_completed,2026-06-16T09:25:00Z,u_0279_s01,ins_u_0279_002,{},v2.3.0-fixed +evt_000557,u_0058,feature_used,2026-06-16T09:27:00Z,u_0058_s01,ins_u_0058_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000558,u_0405,session_abandoned,2026-06-16T09:28:00Z,u_0405_s01,ins_u_0405_003,{},v2.3.0-fixed +evt_000559,u_0214,profile_saved,2026-06-16T09:31:00Z,u_0214_s01,ins_u_0214_003,{},v2.3.0-fixed +evt_000560,u_0279,profile_saved,2026-06-16T09:33:00Z,u_0279_s01,ins_u_0279_003,{},v2.3.0-fixed +evt_000561,u_0299,activation_completed,2026-06-16T09:33:00Z,u_0299_s01,ins_u_0299_007,{},v2.3.0-fixed +evt_000562,u_0214,onboarding_step_viewed,2026-06-16T09:34:00Z,u_0214_s01,ins_u_0214_004,{},v2.3.0-fixed +evt_000563,u_0279,error_shown,2026-06-16T09:34:00Z,u_0279_s01,ins_u_0279_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000564,u_0279,onboarding_step_viewed,2026-06-16T09:37:00Z,u_0279_s01,ins_u_0279_005,{},v2.3.0-fixed +evt_000565,u_0130,signup_started,2026-06-16T09:40:00Z,u_0130_s01,ins_u_0130_001,{},v2.3.0-fixed +evt_000566,u_0248,signup_started,2026-06-16T09:40:00Z,u_0248_s01,ins_u_0248_001,{},v2.3.0-fixed +evt_000567,u_0526,onboarding_completed,2026-06-16T09:40:00Z,u_0526_s01,ins_u_0526_006,"{""completed_at"": ""2026-06-16T09:35:00Z""}",v2.3.0-fixed +evt_000568,u_0130,signup_completed,2026-06-16T09:41:00Z,u_0130_s01,ins_u_0130_002,{},v2.3.0-fixed +evt_000569,u_0315,signup_started,2026-06-16T09:41:00Z,u_0315_s01,ins_u_0315_001,{},v2.3.0-fixed +evt_000570,u_0248,signup_completed,2026-06-16T09:42:00Z,u_0248_s01,ins_u_0248_002,{},v2.3.0-fixed +evt_000571,u_0531,signup_started,2026-06-16T09:43:00Z,u_0531_s01,ins_u_0531_001,{},v2.3.0-fixed +evt_000572,u_0315,signup_completed,2026-06-16T09:44:00Z,u_0315_s01,ins_u_0315_002,{},v2.3.0-fixed +evt_000573,u_0769,signup_started,2026-06-16T09:44:00Z,u_0769_s01,ins_u_0769_001,{},v2.3.0-fixed +evt_000574,u_0707,onboarding_completed,2026-06-16T09:45:00Z,u_0707_s01,ins_u_0707_006,"{""completed_at"": ""2026-06-16T09:37:00Z""}",v2.3.0-fixed +evt_000575,u_0769,signup_completed,2026-06-16T09:46:00Z,u_0769_s01,ins_u_0769_002,{},v2.3.0-fixed +evt_000576,u_0214,feature_used,2026-06-16T09:48:00Z,u_0214_s01,ins_u_0214_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000577,u_0248,profile_saved,2026-06-16T09:48:00Z,u_0248_s01,ins_u_0248_003,{},v2.3.0-fixed +evt_000578,u_0315,session_abandoned,2026-06-16T09:48:00Z,u_0315_s01,ins_u_0315_003,{},v2.3.0-fixed +evt_000579,u_0769,profile_saved,2026-06-16T09:48:00Z,u_0769_s01,ins_u_0769_003,{},v2.3.0-fixed +evt_000580,u_0130,profile_saved,2026-06-16T09:49:00Z,u_0130_s01,ins_u_0130_003,{},v2.3.0-fixed +evt_000581,u_0587,signup_started,2026-06-16T09:49:00Z,u_0587_s01,ins_u_0587_001,{},v2.3.0-fixed +evt_000582,u_0446,onboarding_completed,2026-06-16T09:50:00Z,u_0446_s01,ins_u_0446_006,"{""completed_at"": ""2026-06-16T09:39:00Z""}",v2.3.0-fixed +evt_000583,u_0531,signup_completed,2026-06-16T09:51:00Z,u_0531_s01,ins_u_0531_002,{},v2.3.0-fixed +evt_000584,u_0769,onboarding_step_viewed,2026-06-16T09:51:00Z,u_0769_s01,ins_u_0769_004,{},v2.3.0-fixed +evt_000585,u_0130,onboarding_step_viewed,2026-06-16T09:53:00Z,u_0130_s01,ins_u_0130_004,{},v2.3.0-fixed +evt_000586,u_0369,signup_started,2026-06-16T09:53:00Z,u_0369_s01,ins_u_0369_001,{},v2.3.0-fixed +evt_000587,u_0531,profile_saved,2026-06-16T09:53:00Z,u_0531_s01,ins_u_0531_003,{},v2.3.0-fixed +evt_000588,u_0248,onboarding_step_viewed,2026-06-16T09:54:00Z,u_0248_s01,ins_u_0248_004,{},v2.3.0-fixed +evt_000589,u_0587,session_abandoned,2026-06-16T09:55:00Z,u_0587_s01,ins_u_0587_002,{},v2.3.0-fixed +evt_000590,u_0531,onboarding_step_viewed,2026-06-16T09:58:00Z,u_0531_s01,ins_u_0531_004,{},v2.3.0-fixed +evt_000591,u_0686,signup_started,2026-06-16T09:58:00Z,u_0686_s01,ins_u_0686_001,{},v2.3.0-fixed +evt_000592,u_0359,signup_started,2026-06-16T10:00:00Z,u_0359_s01,ins_u_0359_001,{},v2.3.0-fixed +evt_000593,u_0686,signup_completed,2026-06-16T10:00:00Z,u_0686_s01,ins_u_0686_002,{},v2.3.0-fixed +evt_000594,u_0369,session_abandoned,2026-06-16T10:01:00Z,u_0369_s01,ins_u_0369_002,{},v2.3.0-fixed +evt_000595,u_0359,session_abandoned,2026-06-16T10:03:00Z,u_0359_s01,ins_u_0359_002,{},v2.3.0-fixed +evt_000596,u_0279,onboarding_completed,2026-06-16T10:04:00Z,u_0279_s01,ins_u_0279_006,"{""completed_at"": ""2026-06-16T10:11:00Z""}",v2.3.0-fixed +evt_000597,u_0531,feature_used,2026-06-16T10:09:00Z,u_0531_s01,ins_u_0531_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000598,u_0686,profile_saved,2026-06-16T10:09:00Z,u_0686_s01,ins_u_0686_003,{},v2.3.0-fixed +evt_000599,u_0214,onboarding_completed,2026-06-16T10:12:00Z,u_0214_s01,ins_u_0214_006,"{""completed_at"": ""2026-06-16T10:07:00Z""}",v2.3.0-fixed +evt_000600,u_0686,onboarding_step_viewed,2026-06-16T10:12:00Z,u_0686_s01,ins_u_0686_004,{},v2.3.0-fixed +evt_000601,u_0526,activation_completed,2026-06-16T10:14:00Z,u_0526_s01,ins_u_0526_007,{},v2.3.0-fixed +evt_000602,u_0446,activation_completed,2026-06-16T10:18:00Z,u_0446_s01,ins_u_0446_007,{},v2.3.0-fixed +evt_000603,u_0769,onboarding_completed,2026-06-16T10:20:00Z,u_0769_s01,ins_u_0769_005,"{""completed_at"": ""2026-06-16T10:27:00Z""}",v2.3.0-fixed +evt_000604,u_0214,activation_completed,2026-06-16T10:22:00Z,u_0214_s01,ins_u_0214_007,{},v2.3.0-fixed +evt_000605,u_0279,activation_completed,2026-06-16T10:24:00Z,u_0279_s01,ins_u_0279_007,{},v2.3.0-fixed +evt_000606,u_0248,onboarding_completed,2026-06-16T10:27:00Z,u_0248_s01,ins_u_0248_005,"{""completed_at"": ""2026-06-16T10:20:00Z""}",v2.3.0-fixed +evt_000607,u_0130,onboarding_completed,2026-06-16T10:31:00Z,u_0130_s01,ins_u_0130_005,"{""completed_at"": ""2026-06-16T10:27:00Z""}",v2.3.0-fixed +evt_000608,u_0686,onboarding_completed,2026-06-16T10:36:00Z,u_0686_s01,ins_u_0686_005,"{""completed_at"": ""2026-06-16T10:35:00Z""}",v2.3.0-fixed +evt_000609,u_0612,signup_started,2026-06-16T10:46:00Z,u_0612_s01,ins_u_0612_001,{},v2.3.0-fixed +evt_000610,u_0423,signup_started,2026-06-16T10:47:00Z,u_0423_s01,ins_u_0423_001,{},v2.3.0-fixed +evt_000611,u_0423,signup_completed,2026-06-16T10:49:00Z,u_0423_s01,ins_u_0423_002,{},v2.3.0-fixed +evt_000612,u_0612,session_abandoned,2026-06-16T10:52:00Z,u_0612_s01,ins_u_0612_002,{},v2.3.0-fixed +evt_000613,u_0423,profile_saved,2026-06-16T10:53:00Z,u_0423_s01,ins_u_0423_003,{},v2.3.0-fixed +evt_000614,u_0423,onboarding_step_viewed,2026-06-16T10:55:00Z,u_0423_s01,ins_u_0423_004,{},v2.3.0-fixed +evt_000615,u_0769,activation_completed,2026-06-16T11:00:00Z,u_0769_s01,ins_u_0769_006,{},v2.3.0-fixed +evt_000616,u_0224,signup_started,2026-06-16T11:04:00Z,u_0224_s01,ins_u_0224_001,{},v2.3.0-fixed +evt_000617,u_0248,activation_completed,2026-06-16T11:05:00Z,u_0248_s01,ins_u_0248_006,{},v2.3.0-fixed +evt_000618,u_0531,activation_completed,2026-06-16T11:09:00Z,u_0531_s01,ins_u_0531_006,{},v2.3.0-fixed +evt_000619,u_0224,signup_completed,2026-06-16T11:10:00Z,u_0224_s01,ins_u_0224_002,{},v2.3.0-fixed +evt_000620,u_0268,signup_started,2026-06-16T11:10:00Z,u_0268_s01,ins_u_0268_001,{},v2.3.0-fixed +evt_000621,u_0423,feature_used,2026-06-16T11:11:00Z,u_0423_s01,ins_u_0423_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000622,u_0268,signup_completed,2026-06-16T11:14:00Z,u_0268_s01,ins_u_0268_002,{},v2.3.0-fixed +evt_000623,u_0268,profile_saved,2026-06-16T11:16:00Z,u_0268_s01,ins_u_0268_003,{},v2.3.0-fixed +evt_000624,u_0287,signup_started,2026-06-16T11:17:00Z,u_0287_s01,ins_u_0287_001,{},v2.3.0-fixed +evt_000625,u_0224,profile_saved,2026-06-16T11:18:00Z,u_0224_s01,ins_u_0224_003,{},v2.3.0-fixed +evt_000626,u_0268,onboarding_step_viewed,2026-06-16T11:18:00Z,u_0268_s01,ins_u_0268_004,{},v2.3.0-fixed +evt_000627,u_0287,session_abandoned,2026-06-16T11:20:00Z,u_0287_s01,ins_u_0287_002,{},v2.3.0-fixed +evt_000628,u_0224,onboarding_step_viewed,2026-06-16T11:22:00Z,u_0224_s01,ins_u_0224_004,{},v2.3.0-fixed +evt_000629,u_0268,feature_used,2026-06-16T11:34:00Z,u_0268_s01,ins_u_0268_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000630,u_0423,onboarding_completed,2026-06-16T11:35:00Z,u_0423_s01,ins_u_0423_006,"{""completed_at"": ""2026-06-16T11:30:00Z""}",v2.3.0-fixed +evt_000631,u_0424,signup_started,2026-06-16T11:36:00Z,u_0424_s01,ins_u_0424_001,{},v2.3.0-fixed +evt_000632,u_0424,signup_completed,2026-06-16T11:43:00Z,u_0424_s01,ins_u_0424_002,{},v2.3.0-fixed +evt_000633,u_0424,profile_saved,2026-06-16T11:45:00Z,u_0424_s01,ins_u_0424_003,{},v2.3.0-fixed +evt_000634,u_0424,onboarding_step_viewed,2026-06-16T11:47:00Z,u_0424_s01,ins_u_0424_004,{},v2.3.0-fixed +evt_000635,u_0579,signup_started,2026-06-16T11:47:00Z,u_0579_s01,ins_u_0579_001,{},v2.3.0-fixed +evt_000636,u_0579,signup_completed,2026-06-16T11:48:00Z,u_0579_s01,ins_u_0579_002,{},v2.3.0-fixed +evt_000637,u_0268,onboarding_completed,2026-06-16T11:49:00Z,u_0268_s01,ins_u_0268_006,"{""completed_at"": ""2026-06-16T11:45:00Z""}",v2.3.0-fixed +evt_000638,u_0224,onboarding_completed,2026-06-16T11:53:00Z,u_0224_s01,ins_u_0224_005,"{""completed_at"": ""2026-06-16T11:56:00Z""}",v2.3.0-fixed +evt_000639,u_0579,profile_saved,2026-06-16T11:53:00Z,u_0579_s01,ins_u_0579_003,{},v2.3.0-fixed +evt_000640,u_0152,signup_started,2026-06-16T11:58:00Z,u_0152_s01,ins_u_0152_001,{},v2.3.0-fixed +evt_000641,u_0424,feature_used,2026-06-16T11:58:00Z,u_0424_s01,ins_u_0424_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000642,u_0152,signup_completed,2026-06-16T11:59:00Z,u_0152_s01,ins_u_0152_002,{},v2.3.0-fixed +evt_000643,u_0742,signup_started,2026-06-16T11:59:00Z,u_0742_s01,ins_u_0742_001,{},v2.3.0-fixed +evt_000644,u_0239,signup_started,2026-06-16T12:00:00Z,u_0239_s01,ins_u_0239_001,{},v2.3.0-fixed +evt_000645,u_0239,signup_completed,2026-06-16T12:01:00Z,u_0239_s01,ins_u_0239_002,{},v2.3.0-fixed +evt_000646,u_0410,signup_started,2026-06-16T12:02:00Z,u_0410_s01,ins_u_0410_001,{},v2.3.0-fixed +evt_000647,u_0504,signup_started,2026-06-16T12:02:00Z,u_0504_s01,ins_u_0504_001,{},v2.3.0-fixed +evt_000648,u_0625,signup_started,2026-06-16T12:02:00Z,u_0625_s01,ins_u_0625_001,{},v2.3.0-fixed +evt_000649,u_0152,profile_saved,2026-06-16T12:03:00Z,u_0152_s01,ins_u_0152_003,{},v2.3.0-fixed +evt_000650,u_0268,activation_completed,2026-06-16T12:03:00Z,u_0268_s01,ins_u_0268_007,{},v2.3.0-fixed +evt_000651,u_0742,signup_completed,2026-06-16T12:03:00Z,u_0742_s01,ins_u_0742_002,{},v2.3.0-fixed +evt_000652,u_0625,signup_completed,2026-06-16T12:04:00Z,u_0625_s01,ins_u_0625_002,{},v2.3.0-fixed +evt_000653,u_0410,signup_completed,2026-06-16T12:05:00Z,u_0410_s01,ins_u_0410_002,{},v2.3.0-fixed +evt_000654,u_0742,profile_saved,2026-06-16T12:05:00Z,u_0742_s01,ins_u_0742_003,{},v2.3.0-fixed +evt_000655,u_0504,signup_completed,2026-06-16T12:06:00Z,u_0504_s01,ins_u_0504_002,{},v2.3.0-fixed +evt_000656,u_0152,onboarding_step_viewed,2026-06-16T12:08:00Z,u_0152_s01,ins_u_0152_004,{},v2.3.0-fixed +evt_000657,u_0239,session_abandoned,2026-06-16T12:08:00Z,u_0239_s01,ins_u_0239_003,{},v2.3.0-fixed +evt_000658,u_0152,feature_used,2026-06-16T12:10:00Z,u_0152_s01,ins_u_0152_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000659,u_0579,feature_used,2026-06-16T12:10:00Z,u_0579_s01,ins_u_0579_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000660,u_0742,onboarding_step_viewed,2026-06-16T12:10:00Z,u_0742_s01,ins_u_0742_004,{},v2.3.0-fixed +evt_000661,u_0410,session_abandoned,2026-06-16T12:11:00Z,u_0410_s01,ins_u_0410_003,{},v2.3.0-fixed +evt_000662,u_0192,signup_started,2026-06-16T12:12:00Z,u_0192_s01,ins_u_0192_001,{},v2.3.0-fixed +evt_000663,u_0625,session_abandoned,2026-06-16T12:13:00Z,u_0625_s01,ins_u_0625_003,{},v2.3.0-fixed +evt_000664,u_0192,signup_completed,2026-06-16T12:15:00Z,u_0192_s01,ins_u_0192_002,{},v2.3.0-fixed +evt_000665,u_0424,onboarding_completed,2026-06-16T12:15:00Z,u_0424_s01,ins_u_0424_006,"{""completed_at"": ""2026-06-16T12:23:00Z""}",v2.3.0-fixed +evt_000666,u_0504,profile_saved,2026-06-16T12:16:00Z,u_0504_s01,ins_u_0504_003,{},v2.3.0-fixed +evt_000667,u_0192,profile_saved,2026-06-16T12:18:00Z,u_0192_s01,ins_u_0192_003,{},v2.3.0-fixed +evt_000668,u_0192,error_shown,2026-06-16T12:19:00Z,u_0192_s01,ins_u_0192_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000669,u_0504,onboarding_step_viewed,2026-06-16T12:21:00Z,u_0504_s01,ins_u_0504_004,{},v2.3.0-fixed +evt_000670,u_0192,onboarding_step_viewed,2026-06-16T12:22:00Z,u_0192_s01,ins_u_0192_005,{},v2.3.0-fixed +evt_000671,u_0579,onboarding_completed,2026-06-16T12:24:00Z,u_0579_s01,ins_u_0579_005,"{""completed_at"": ""2026-06-16T12:30:00Z""}",v2.3.0-fixed +evt_000672,u_0742,feature_used,2026-06-16T12:25:00Z,u_0742_s01,ins_u_0742_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000673,u_0504,feature_used,2026-06-16T12:27:00Z,u_0504_s01,ins_u_0504_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000674,u_0224,activation_completed,2026-06-16T12:36:00Z,u_0224_s01,ins_u_0224_006,{},v2.3.0-fixed +evt_000675,u_0765,signup_started,2026-06-16T12:37:00Z,u_0765_s01,ins_u_0765_001,{},v2.3.0-fixed +evt_000676,u_0742,onboarding_completed,2026-06-16T12:40:00Z,u_0742_s01,ins_u_0742_006,"{""completed_at"": ""2026-06-16T12:35:00Z""}",v2.3.0-fixed +evt_000677,u_0765,signup_completed,2026-06-16T12:41:00Z,u_0765_s01,ins_u_0765_002,{},v2.3.0-fixed +evt_000678,u_0192,feature_used,2026-06-16T12:42:00Z,u_0192_s01,ins_u_0192_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_000679,u_0765,profile_saved,2026-06-16T12:49:00Z,u_0765_s01,ins_u_0765_003,{},v2.3.0-fixed +evt_000680,u_0765,error_shown,2026-06-16T12:50:00Z,u_0765_s01,ins_u_0765_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000681,u_0504,onboarding_completed,2026-06-16T12:53:00Z,u_0504_s01,ins_u_0504_006,"{""completed_at"": ""2026-06-16T12:44:00Z""}",v2.3.0-fixed +evt_000682,u_0765,onboarding_step_viewed,2026-06-16T12:54:00Z,u_0765_s01,ins_u_0765_005,{},v2.3.0-fixed +evt_000683,u_0742,activation_completed,2026-06-16T12:55:00Z,u_0742_s01,ins_u_0742_007,{},v2.3.0-fixed +evt_000684,u_0192,onboarding_completed,2026-06-16T12:57:00Z,u_0192_s01,ins_u_0192_007,"{""completed_at"": ""2026-06-16T12:50:00Z""}",v2.3.0-fixed +evt_000685,u_0201,signup_started,2026-06-16T12:57:00Z,u_0201_s01,ins_u_0201_001,{},v2.3.0-fixed +evt_000686,u_0152,activation_completed,2026-06-16T13:03:00Z,u_0152_s01,ins_u_0152_006,{},v2.3.0-fixed +evt_000687,u_0765,feature_used,2026-06-16T13:03:00Z,u_0765_s01,ins_u_0765_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000688,u_0201,session_abandoned,2026-06-16T13:04:00Z,u_0201_s01,ins_u_0201_002,{},v2.3.0-fixed +evt_000689,u_0500,signup_started,2026-06-16T13:07:00Z,u_0500_s01,ins_u_0500_001,{},v2.3.0-fixed +evt_000690,u_0504,activation_completed,2026-06-16T13:12:00Z,u_0504_s01,ins_u_0504_007,{},v2.3.0-fixed +evt_000691,u_0500,signup_completed,2026-06-16T13:13:00Z,u_0500_s01,ins_u_0500_002,{},v2.3.0-fixed +evt_000692,u_0637,signup_started,2026-06-16T13:17:00Z,u_0637_s01,ins_u_0637_001,{},v2.3.0-fixed +evt_000693,u_0500,profile_saved,2026-06-16T13:19:00Z,u_0500_s01,ins_u_0500_003,{},v2.3.0-fixed +evt_000694,u_0027,signup_started,2026-06-16T13:23:00Z,u_0027_s01,ins_u_0027_001,{},v2.3.0-fixed +evt_000695,u_0027,signup_completed,2026-06-16T13:24:00Z,u_0027_s01,ins_u_0027_002,{},v2.3.0-fixed +evt_000696,u_0637,signup_completed,2026-06-16T13:25:00Z,u_0637_s01,ins_u_0637_002,{},v2.3.0-fixed +evt_000697,u_0027,profile_saved,2026-06-16T13:26:00Z,u_0027_s01,ins_u_0027_003,{},v2.3.0-fixed +evt_000698,u_0764,signup_started,2026-06-16T13:28:00Z,u_0764_s01,ins_u_0764_001,{},v2.3.0-fixed +evt_000699,u_0637,session_abandoned,2026-06-16T13:29:00Z,u_0637_s01,ins_u_0637_003,{},v2.3.0-fixed +evt_000700,u_0765,onboarding_completed,2026-06-16T13:29:00Z,u_0765_s01,ins_u_0765_007,"{""completed_at"": ""2026-06-16T13:17:00Z""}",v2.3.0-fixed +evt_000701,u_0027,onboarding_step_viewed,2026-06-16T13:30:00Z,u_0027_s01,ins_u_0027_004,{},v2.3.0-fixed +evt_000702,u_0764,signup_completed,2026-06-16T13:31:00Z,u_0764_s01,ins_u_0764_002,{},v2.3.0-fixed +evt_000703,u_0764,profile_saved,2026-06-16T13:34:00Z,u_0764_s01,ins_u_0764_003,{},v2.3.0-fixed +evt_000704,u_0569,signup_started,2026-06-16T13:35:00Z,u_0569_s01,ins_u_0569_001,{},v2.3.0-fixed +evt_000705,u_0500,feature_used,2026-06-16T13:36:00Z,u_0500_s01,ins_u_0500_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000706,u_0569,session_abandoned,2026-06-16T13:38:00Z,u_0569_s01,ins_u_0569_002,{},v2.3.0-fixed +evt_000707,u_0764,onboarding_step_viewed,2026-06-16T13:38:00Z,u_0764_s01,ins_u_0764_004,{},v2.3.0-fixed +evt_000708,u_0027,feature_used,2026-06-16T13:41:00Z,u_0027_s01,ins_u_0027_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000709,u_0534,signup_started,2026-06-16T13:42:00Z,u_0534_s01,ins_u_0534_001,{},v2.3.0-fixed +evt_000710,u_0765,activation_completed,2026-06-16T13:42:00Z,u_0765_s01,ins_u_0765_008,{},v2.3.0-fixed +evt_000711,u_0265,signup_started,2026-06-16T13:46:00Z,u_0265_s01,ins_u_0265_001,{},v2.3.0-fixed +evt_000712,u_0764,feature_used,2026-06-16T13:47:00Z,u_0764_s01,ins_u_0764_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000713,u_0265,signup_completed,2026-06-16T13:48:00Z,u_0265_s01,ins_u_0265_002,{},v2.3.0-fixed +evt_000714,u_0534,signup_completed,2026-06-16T13:49:00Z,u_0534_s01,ins_u_0534_002,{},v2.3.0-fixed +evt_000715,u_0534,profile_saved,2026-06-16T13:52:00Z,u_0534_s01,ins_u_0534_003,{},v2.3.0-fixed +evt_000716,u_0027,onboarding_completed,2026-06-16T13:53:00Z,u_0027_s01,ins_u_0027_006,"{""completed_at"": ""2026-06-16T14:01:00Z""}",v2.3.0-fixed +evt_000717,u_0265,profile_saved,2026-06-16T13:53:00Z,u_0265_s01,ins_u_0265_003,{},v2.3.0-fixed +evt_000718,u_0344,signup_started,2026-06-16T13:53:00Z,u_0344_s01,ins_u_0344_001,{},v2.3.0-fixed +evt_000719,u_0344,signup_completed,2026-06-16T13:54:00Z,u_0344_s01,ins_u_0344_002,{},v2.3.0-fixed +evt_000720,u_0265,onboarding_step_viewed,2026-06-16T13:55:00Z,u_0265_s01,ins_u_0265_004,{},v2.3.0-fixed +evt_000721,u_0500,onboarding_completed,2026-06-16T13:55:00Z,u_0500_s01,ins_u_0500_005,"{""completed_at"": ""2026-06-16T13:51:00Z""}",v2.3.0-fixed +evt_000722,u_0534,onboarding_step_viewed,2026-06-16T13:55:00Z,u_0534_s01,ins_u_0534_004,{},v2.3.0-fixed +evt_000723,u_0041,signup_started,2026-06-16T14:00:00Z,u_0041_s01,ins_u_0041_001,{},v2.3.0-fixed +evt_000724,u_0344,profile_saved,2026-06-16T14:00:00Z,u_0344_s01,ins_u_0344_003,{},v2.3.0-fixed +evt_000725,u_0361,signup_started,2026-06-16T14:00:00Z,u_0361_s01,ins_u_0361_001,{},v2.3.0-fixed +evt_000726,u_0265,feature_used,2026-06-16T14:01:00Z,u_0265_s01,ins_u_0265_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000727,u_0041,signup_completed,2026-06-16T14:05:00Z,u_0041_s01,ins_u_0041_002,{},v2.3.0-fixed +evt_000728,u_0344,onboarding_step_viewed,2026-06-16T14:06:00Z,u_0344_s01,ins_u_0344_004,{},v2.3.0-fixed +evt_000729,u_0361,session_abandoned,2026-06-16T14:06:00Z,u_0361_s01,ins_u_0361_002,{},v2.3.0-fixed +evt_000730,u_0745,signup_started,2026-06-16T14:06:00Z,u_0745_s01,ins_u_0745_001,{},v2.3.0-fixed +evt_000731,u_0764,onboarding_completed,2026-06-16T14:07:00Z,u_0764_s01,ins_u_0764_006,"{""completed_at"": ""2026-06-16T14:13:00Z""}",v2.3.0-fixed +evt_000732,u_0344,feature_used,2026-06-16T14:10:00Z,u_0344_s01,ins_u_0344_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000733,u_0745,signup_completed,2026-06-16T14:11:00Z,u_0745_s01,ins_u_0745_002,{},v2.3.0-fixed +evt_000734,u_0041,session_abandoned,2026-06-16T14:12:00Z,u_0041_s01,ins_u_0041_003,{},v2.3.0-fixed +evt_000735,u_0745,session_abandoned,2026-06-16T14:16:00Z,u_0745_s01,ins_u_0745_003,{},v2.3.0-fixed +evt_000736,u_0534,onboarding_completed,2026-06-16T14:18:00Z,u_0534_s01,ins_u_0534_005,"{""completed_at"": ""2026-06-16T14:22:00Z""}",v2.3.0-fixed +evt_000737,u_0228,signup_started,2026-06-16T14:27:00Z,u_0228_s01,ins_u_0228_001,{},v2.3.0-fixed +evt_000738,u_0344,onboarding_completed,2026-06-16T14:28:00Z,u_0344_s01,ins_u_0344_006,"{""completed_at"": ""2026-06-16T14:39:00Z""}",v2.3.0-fixed +evt_000739,u_0228,session_abandoned,2026-06-16T14:30:00Z,u_0228_s01,ins_u_0228_002,{},v2.3.0-fixed +evt_000740,u_0265,onboarding_completed,2026-06-16T14:30:00Z,u_0265_s01,ins_u_0265_006,"{""completed_at"": ""2026-06-16T14:19:00Z""}",v2.3.0-fixed +evt_000741,u_0059,signup_started,2026-06-16T14:32:00Z,u_0059_s01,ins_u_0059_001,{},v2.3.0-fixed +evt_000742,u_0310,signup_started,2026-06-16T14:37:00Z,u_0310_s01,ins_u_0310_001,{},v2.3.0-fixed +evt_000743,u_0310,signup_completed,2026-06-16T14:38:00Z,u_0310_s01,ins_u_0310_002,{},v2.3.0-fixed +evt_000744,u_0059,signup_completed,2026-06-16T14:39:00Z,u_0059_s01,ins_u_0059_002,{},v2.3.0-fixed +evt_000745,u_0059,profile_saved,2026-06-16T14:47:00Z,u_0059_s01,ins_u_0059_003,{},v2.3.0-fixed +evt_000746,u_0310,profile_saved,2026-06-16T14:48:00Z,u_0310_s01,ins_u_0310_003,{},v2.3.0-fixed +evt_000747,u_0103,signup_started,2026-06-16T14:49:00Z,u_0103_s01,ins_u_0103_001,{},v2.3.0-fixed +evt_000748,u_0103,signup_completed,2026-06-16T14:50:00Z,u_0103_s01,ins_u_0103_002,{},v2.3.0-fixed +evt_000749,u_0059,onboarding_step_viewed,2026-06-16T14:52:00Z,u_0059_s01,ins_u_0059_004,{},v2.3.0-fixed +evt_000750,u_0310,onboarding_step_viewed,2026-06-16T14:53:00Z,u_0310_s01,ins_u_0310_004,{},v2.3.0-fixed +evt_000751,u_0103,profile_saved,2026-06-16T14:55:00Z,u_0103_s01,ins_u_0103_003,{},v2.3.0-fixed +evt_000752,u_0265,activation_completed,2026-06-16T14:56:00Z,u_0265_s01,ins_u_0265_007,{},v2.3.0-fixed +evt_000753,u_0310,feature_used,2026-06-16T15:00:00Z,u_0310_s01,ins_u_0310_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000754,u_0695,signup_started,2026-06-16T15:00:00Z,u_0695_s01,ins_u_0695_001,{},v2.3.0-fixed +evt_000755,u_0103,onboarding_step_viewed,2026-06-16T15:01:00Z,u_0103_s01,ins_u_0103_004,{},v2.3.0-fixed +evt_000756,u_0695,signup_completed,2026-06-16T15:07:00Z,u_0695_s01,ins_u_0695_002,{},v2.3.0-fixed +evt_000757,u_0320,signup_started,2026-06-16T15:08:00Z,u_0320_s01,ins_u_0320_001,{},v2.3.0-fixed +evt_000758,u_0059,feature_used,2026-06-16T15:10:00Z,u_0059_s01,ins_u_0059_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000759,u_0138,signup_started,2026-06-16T15:13:00Z,u_0138_s01,ins_u_0138_001,{},v2.3.0-fixed +evt_000760,u_0059,onboarding_completed,2026-06-16T15:15:00Z,u_0059_s01,ins_u_0059_006,"{""completed_at"": ""2026-06-16T15:26:00Z""}",v2.3.0-fixed +evt_000761,u_0320,signup_completed,2026-06-16T15:15:00Z,u_0320_s01,ins_u_0320_002,{},v2.3.0-fixed +evt_000762,u_0138,signup_completed,2026-06-16T15:16:00Z,u_0138_s01,ins_u_0138_002,{},v2.3.0-fixed +evt_000763,u_0695,profile_saved,2026-06-16T15:17:00Z,u_0695_s01,ins_u_0695_003,{},v2.3.0-fixed +evt_000764,u_0310,onboarding_completed,2026-06-16T15:22:00Z,u_0310_s01,ins_u_0310_006,"{""completed_at"": ""2026-06-16T15:24:00Z""}",v2.3.0-fixed +evt_000765,u_0138,profile_saved,2026-06-16T15:24:00Z,u_0138_s01,ins_u_0138_003,{},v2.3.0-fixed +evt_000766,u_0320,profile_saved,2026-06-16T15:25:00Z,u_0320_s01,ins_u_0320_003,{},v2.3.0-fixed +evt_000767,u_0456,signup_started,2026-06-16T15:27:00Z,u_0456_s01,ins_u_0456_001,{},v2.3.0-fixed +evt_000768,u_0480,signup_started,2026-06-16T15:28:00Z,u_0480_s01,ins_u_0480_001,{},v2.3.0-fixed +evt_000769,u_0138,onboarding_step_viewed,2026-06-16T15:29:00Z,u_0138_s01,ins_u_0138_004,{},v2.3.0-fixed +evt_000770,u_0320,onboarding_step_viewed,2026-06-16T15:29:00Z,u_0320_s01,ins_u_0320_004,{},v2.3.0-fixed +evt_000771,u_0331,signup_started,2026-06-16T15:31:00Z,u_0331_s01,ins_u_0331_001,{},v2.3.0-fixed +evt_000772,u_0456,signup_completed,2026-06-16T15:33:00Z,u_0456_s01,ins_u_0456_002,{},v2.3.0-fixed +evt_000773,u_0480,signup_completed,2026-06-16T15:34:00Z,u_0480_s01,ins_u_0480_002,{},v2.3.0-fixed +evt_000774,u_0695,feature_used,2026-06-16T15:34:00Z,u_0695_s01,ins_u_0695_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000775,u_0331,session_abandoned,2026-06-16T15:37:00Z,u_0331_s01,ins_u_0331_002,{},v2.3.0-fixed +evt_000776,u_0103,onboarding_completed,2026-06-16T15:38:00Z,u_0103_s01,ins_u_0103_005,"{""completed_at"": ""2026-06-16T15:34:00Z""}",v2.3.0-fixed +evt_000777,u_0138,feature_used,2026-06-16T15:42:00Z,u_0138_s01,ins_u_0138_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000778,u_0456,profile_saved,2026-06-16T15:43:00Z,u_0456_s01,ins_u_0456_003,{},v2.3.0-fixed +evt_000779,u_0480,profile_saved,2026-06-16T15:44:00Z,u_0480_s01,ins_u_0480_003,{},v2.3.0-fixed +evt_000780,u_0456,onboarding_step_viewed,2026-06-16T15:49:00Z,u_0456_s01,ins_u_0456_004,{},v2.3.0-fixed +evt_000781,u_0480,onboarding_step_viewed,2026-06-16T15:49:00Z,u_0480_s01,ins_u_0480_004,{},v2.3.0-fixed +evt_000782,u_0320,onboarding_completed,2026-06-16T15:51:00Z,u_0320_s01,ins_u_0320_005,"{""completed_at"": ""2026-06-16T16:05:00Z""}",v2.3.0-fixed +evt_000783,u_0310,activation_completed,2026-06-16T15:53:00Z,u_0310_s01,ins_u_0310_007,{},v2.3.0-fixed +evt_000784,u_0539,signup_started,2026-06-16T15:54:00Z,u_0539_s01,ins_u_0539_001,{},v2.3.0-fixed +evt_000785,u_0695,onboarding_completed,2026-06-16T15:56:00Z,u_0695_s01,ins_u_0695_005,"{""completed_at"": ""2026-06-16T15:49:00Z""}",v2.3.0-fixed +evt_000786,u_0103,activation_completed,2026-06-16T15:58:00Z,u_0103_s01,ins_u_0103_006,{},v2.3.0-fixed +evt_000787,u_0539,session_abandoned,2026-06-16T15:58:00Z,u_0539_s01,ins_u_0539_002,{},v2.3.0-fixed +evt_000788,u_0456,feature_used,2026-06-16T16:00:00Z,u_0456_s01,ins_u_0456_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000789,u_0510,signup_started,2026-06-16T16:06:00Z,u_0510_s01,ins_u_0510_001,{},v2.3.0-fixed +evt_000790,u_0195,signup_started,2026-06-16T16:07:00Z,u_0195_s01,ins_u_0195_001,{},v2.3.0-fixed +evt_000791,u_0510,signup_completed,2026-06-16T16:13:00Z,u_0510_s01,ins_u_0510_002,{},v2.3.0-fixed +evt_000792,u_0195,session_abandoned,2026-06-16T16:15:00Z,u_0195_s01,ins_u_0195_002,{},v2.3.0-fixed +evt_000793,u_0510,profile_saved,2026-06-16T16:19:00Z,u_0510_s01,ins_u_0510_003,{},v2.3.0-fixed +evt_000794,u_0138,activation_completed,2026-06-16T16:23:00Z,u_0138_s01,ins_u_0138_006,{},v2.3.0-fixed +evt_000795,u_0474,signup_started,2026-06-16T16:24:00Z,u_0474_s01,ins_u_0474_001,{},v2.3.0-fixed +evt_000796,u_0480,onboarding_completed,2026-06-16T16:24:00Z,u_0480_s01,ins_u_0480_005,"{""completed_at"": ""2026-06-16T16:22:00Z""}",v2.3.0-fixed +evt_000797,u_0510,onboarding_step_viewed,2026-06-16T16:24:00Z,u_0510_s01,ins_u_0510_004,{},v2.3.0-fixed +evt_000798,u_0689,signup_started,2026-06-16T16:24:00Z,u_0689_s01,ins_u_0689_001,{},v2.3.0-fixed +evt_000799,u_0695,activation_completed,2026-06-16T16:24:00Z,u_0695_s01,ins_u_0695_006,{},v2.3.0-fixed +evt_000800,u_0471,signup_started,2026-06-16T16:27:00Z,u_0471_s01,ins_u_0471_001,{},v2.3.0-fixed +evt_000801,u_0664,signup_started,2026-06-16T16:28:00Z,u_0664_s01,ins_u_0664_001,{},v2.3.0-fixed +evt_000802,u_0398,signup_started,2026-06-16T16:29:00Z,u_0398_s01,ins_u_0398_001,{},v2.3.0-fixed +evt_000803,u_0474,session_abandoned,2026-06-16T16:29:00Z,u_0474_s01,ins_u_0474_002,{},v2.3.0-fixed +evt_000804,u_0664,session_abandoned,2026-06-16T16:29:00Z,u_0664_s01,ins_u_0664_002,{},v2.3.0-fixed +evt_000805,u_0689,signup_completed,2026-06-16T16:32:00Z,u_0689_s01,ins_u_0689_002,{},v2.3.0-fixed +evt_000806,u_0471,signup_completed,2026-06-16T16:33:00Z,u_0471_s01,ins_u_0471_002,{},v2.3.0-fixed +evt_000807,u_0038,signup_started,2026-06-16T16:34:00Z,u_0038_s01,ins_u_0038_001,{},v2.3.0-fixed +evt_000808,u_0398,session_abandoned,2026-06-16T16:34:00Z,u_0398_s01,ins_u_0398_002,{},v2.3.0-fixed +evt_000809,u_0471,profile_saved,2026-06-16T16:36:00Z,u_0471_s01,ins_u_0471_003,{},v2.3.0-fixed +evt_000810,u_0689,profile_saved,2026-06-16T16:36:00Z,u_0689_s01,ins_u_0689_003,{},v2.3.0-fixed +evt_000811,u_0471,error_shown,2026-06-16T16:37:00Z,u_0471_s01,ins_u_0471_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000812,u_0516,signup_started,2026-06-16T16:37:00Z,u_0516_s01,ins_u_0516_001,{},v2.3.0-fixed +evt_000813,u_0471,onboarding_step_viewed,2026-06-16T16:38:00Z,u_0471_s01,ins_u_0471_005,{},v2.3.0-fixed +evt_000814,u_0038,signup_completed,2026-06-16T16:40:00Z,u_0038_s01,ins_u_0038_002,{},v2.3.0-fixed +evt_000815,u_0038,session_abandoned,2026-06-16T16:45:00Z,u_0038_s01,ins_u_0038_003,{},v2.3.0-fixed +evt_000816,u_0516,signup_completed,2026-06-16T16:45:00Z,u_0516_s01,ins_u_0516_002,{},v2.3.0-fixed +evt_000817,u_0249,signup_started,2026-06-16T16:46:00Z,u_0249_s01,ins_u_0249_001,{},v2.3.0-fixed +evt_000818,u_0249,signup_completed,2026-06-16T16:47:00Z,u_0249_s01,ins_u_0249_002,{},v2.3.0-fixed +evt_000819,u_0516,profile_saved,2026-06-16T16:47:00Z,u_0516_s01,ins_u_0516_003,{},v2.3.0-fixed +evt_000820,u_0516,error_shown,2026-06-16T16:48:00Z,u_0516_s01,ins_u_0516_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000821,u_0776,signup_started,2026-06-16T16:48:00Z,u_0776_s01,ins_u_0776_001,{},v2.3.0-fixed +evt_000822,u_0618,signup_started,2026-06-16T16:50:00Z,u_0618_s01,ins_u_0618_001,{},v2.3.0-fixed +evt_000823,u_0618,signup_completed,2026-06-16T16:51:00Z,u_0618_s01,ins_u_0618_002,{},v2.3.0-fixed +evt_000824,u_0249,profile_saved,2026-06-16T16:52:00Z,u_0249_s01,ins_u_0249_003,{},v2.3.0-fixed +evt_000825,u_0516,onboarding_step_viewed,2026-06-16T16:52:00Z,u_0516_s01,ins_u_0516_005,{},v2.3.0-fixed +evt_000826,u_0689,feature_used,2026-06-16T16:55:00Z,u_0689_s01,ins_u_0689_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000827,u_0776,signup_completed,2026-06-16T16:55:00Z,u_0776_s01,ins_u_0776_002,{},v2.3.0-fixed +evt_000828,u_0249,onboarding_step_viewed,2026-06-16T16:56:00Z,u_0249_s01,ins_u_0249_004,{},v2.3.0-fixed +evt_000829,u_0510,onboarding_completed,2026-06-16T16:56:00Z,u_0510_s01,ins_u_0510_005,"{""completed_at"": ""2026-06-16T16:45:00Z""}",v2.3.0-fixed +evt_000830,u_0516,feature_used,2026-06-16T16:58:00Z,u_0516_s01,ins_u_0516_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_000831,u_0618,session_abandoned,2026-06-16T16:58:00Z,u_0618_s01,ins_u_0618_003,{},v2.3.0-fixed +evt_000832,u_0659,signup_started,2026-06-16T16:58:00Z,u_0659_s01,ins_u_0659_001,{},v2.3.0-fixed +evt_000833,u_0249,feature_used,2026-06-16T16:59:00Z,u_0249_s01,ins_u_0249_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000834,u_0659,signup_completed,2026-06-16T17:01:00Z,u_0659_s01,ins_u_0659_002,{},v2.3.0-fixed +evt_000835,u_0223,signup_started,2026-06-16T17:02:00Z,u_0223_s01,ins_u_0223_001,{},v2.3.0-fixed +evt_000836,u_0687,signup_started,2026-06-16T17:02:00Z,u_0687_s01,ins_u_0687_001,{},v2.3.0-fixed +evt_000837,u_0776,session_abandoned,2026-06-16T17:03:00Z,u_0776_s01,ins_u_0776_003,{},v2.3.0-fixed +evt_000838,u_0659,session_abandoned,2026-06-16T17:05:00Z,u_0659_s01,ins_u_0659_003,{},v2.3.0-fixed +evt_000839,u_0687,signup_completed,2026-06-16T17:05:00Z,u_0687_s01,ins_u_0687_002,{},v2.3.0-fixed +evt_000840,u_0355,signup_started,2026-06-16T17:07:00Z,u_0355_s01,ins_u_0355_001,{},v2.3.0-fixed +evt_000841,u_0223,session_abandoned,2026-06-16T17:10:00Z,u_0223_s01,ins_u_0223_002,{},v2.3.0-fixed +evt_000842,u_0355,session_abandoned,2026-06-16T17:11:00Z,u_0355_s01,ins_u_0355_002,{},v2.3.0-fixed +evt_000843,u_0687,session_abandoned,2026-06-16T17:13:00Z,u_0687_s01,ins_u_0687_003,{},v2.3.0-fixed +evt_000844,u_0200,signup_started,2026-06-16T17:23:00Z,u_0200_s01,ins_u_0200_001,{},v2.3.0-fixed +evt_000845,u_0363,signup_started,2026-06-16T17:24:00Z,u_0363_s01,ins_u_0363_001,{},v2.3.0-fixed +evt_000846,u_0689,activation_completed,2026-06-16T17:25:00Z,u_0689_s01,ins_u_0689_005,{},v2.3.0-fixed +evt_000847,u_0200,signup_completed,2026-06-16T17:29:00Z,u_0200_s01,ins_u_0200_002,{},v2.3.0-fixed +evt_000848,u_0363,signup_completed,2026-06-16T17:31:00Z,u_0363_s01,ins_u_0363_002,{},v2.3.0-fixed +evt_000849,u_0249,onboarding_completed,2026-06-16T17:32:00Z,u_0249_s01,ins_u_0249_006,"{""completed_at"": ""2026-06-16T17:20:00Z""}",v2.3.0-fixed +evt_000850,u_0200,profile_saved,2026-06-16T17:37:00Z,u_0200_s01,ins_u_0200_003,{},v2.3.0-fixed +evt_000851,u_0363,profile_saved,2026-06-16T17:37:00Z,u_0363_s01,ins_u_0363_003,{},v2.3.0-fixed +evt_000852,u_0363,error_shown,2026-06-16T17:38:00Z,u_0363_s01,ins_u_0363_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000853,u_0363,onboarding_step_viewed,2026-06-16T17:39:00Z,u_0363_s01,ins_u_0363_005,{},v2.3.0-fixed +evt_000854,u_0200,onboarding_step_viewed,2026-06-16T17:40:00Z,u_0200_s01,ins_u_0200_004,{},v2.3.0-fixed +evt_000855,u_0363,feature_used,2026-06-16T17:48:00Z,u_0363_s01,ins_u_0363_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000856,u_0516,activation_completed,2026-06-16T17:50:00Z,u_0516_s01,ins_u_0516_007,{},v2.3.0-fixed +evt_000857,u_0471,activation_completed,2026-06-16T17:52:00Z,u_0471_s01,ins_u_0471_006,{},v2.3.0-fixed +evt_000858,u_0077,signup_started,2026-06-16T17:54:00Z,u_0077_s01,ins_u_0077_001,{},v2.3.0-fixed +evt_000859,u_0077,session_abandoned,2026-06-16T17:55:00Z,u_0077_s01,ins_u_0077_002,{},v2.3.0-fixed +evt_000860,u_0083,signup_started,2026-06-16T17:56:00Z,u_0083_s01,ins_u_0083_001,{},v2.3.0-fixed +evt_000861,u_0291,signup_started,2026-06-16T17:58:00Z,u_0291_s01,ins_u_0291_001,{},v2.3.0-fixed +evt_000862,u_0376,signup_started,2026-06-16T18:00:00Z,u_0376_s01,ins_u_0376_001,{},v2.3.0-fixed +evt_000863,u_0083,signup_completed,2026-06-16T18:02:00Z,u_0083_s01,ins_u_0083_002,{},v2.3.0-fixed +evt_000864,u_0291,signup_completed,2026-06-16T18:02:00Z,u_0291_s01,ins_u_0291_002,{},v2.3.0-fixed +evt_000865,u_0318,signup_started,2026-06-16T18:02:00Z,u_0318_s01,ins_u_0318_001,{},v2.3.0-fixed +evt_000866,u_0376,signup_completed,2026-06-16T18:03:00Z,u_0376_s01,ins_u_0376_002,{},v2.3.0-fixed +evt_000867,u_0083,profile_saved,2026-06-16T18:05:00Z,u_0083_s01,ins_u_0083_003,{},v2.3.0-fixed +evt_000868,u_0291,profile_saved,2026-06-16T18:05:00Z,u_0291_s01,ins_u_0291_003,{},v2.3.0-fixed +evt_000869,u_0133,signup_started,2026-06-16T18:07:00Z,u_0133_s01,ins_u_0133_001,{},v2.3.0-fixed +evt_000870,u_0249,activation_completed,2026-06-16T18:07:00Z,u_0249_s01,ins_u_0249_007,{},v2.3.0-fixed +evt_000871,u_0318,signup_completed,2026-06-16T18:07:00Z,u_0318_s01,ins_u_0318_002,{},v2.3.0-fixed +evt_000872,u_0133,signup_completed,2026-06-16T18:10:00Z,u_0133_s01,ins_u_0133_002,{},v2.3.0-fixed +evt_000873,u_0291,onboarding_step_viewed,2026-06-16T18:11:00Z,u_0291_s01,ins_u_0291_004,{},v2.3.0-fixed +evt_000874,u_0376,session_abandoned,2026-06-16T18:11:00Z,u_0376_s01,ins_u_0376_003,{},v2.3.0-fixed +evt_000875,u_0133,profile_saved,2026-06-16T18:12:00Z,u_0133_s01,ins_u_0133_003,{},v2.3.0-fixed +evt_000876,u_0203,signup_started,2026-06-16T18:12:00Z,u_0203_s01,ins_u_0203_001,{},v2.3.0-fixed +evt_000877,u_0318,profile_saved,2026-06-16T18:12:00Z,u_0318_s01,ins_u_0318_003,{},v2.3.0-fixed +evt_000878,u_0200,onboarding_completed,2026-06-16T18:15:00Z,u_0200_s01,ins_u_0200_005,"{""completed_at"": ""2026-06-16T18:17:00Z""}",v2.3.0-fixed +evt_000879,u_0203,signup_completed,2026-06-16T18:16:00Z,u_0203_s01,ins_u_0203_002,{},v2.3.0-fixed +evt_000880,u_0208,signup_started,2026-06-16T18:17:00Z,u_0208_s01,ins_u_0208_001,{},v2.3.0-fixed +evt_000881,u_0208,signup_completed,2026-06-16T18:18:00Z,u_0208_s01,ins_u_0208_002,{},v2.3.0-fixed +evt_000882,u_0363,onboarding_completed,2026-06-16T18:18:00Z,u_0363_s01,ins_u_0363_007,"{""completed_at"": ""2026-06-16T18:12:00Z""}",v2.3.0-fixed +evt_000883,u_0133,feature_used,2026-06-16T18:21:00Z,u_0133_s01,ins_u_0133_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000884,u_0203,session_abandoned,2026-06-16T18:22:00Z,u_0203_s01,ins_u_0203_003,{},v2.3.0-fixed +evt_000885,u_0208,profile_saved,2026-06-16T18:22:00Z,u_0208_s01,ins_u_0208_003,{},v2.3.0-fixed +evt_000886,u_0083,feature_used,2026-06-16T18:25:00Z,u_0083_s01,ins_u_0083_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000887,u_0208,onboarding_step_viewed,2026-06-16T18:27:00Z,u_0208_s01,ins_u_0208_004,{},v2.3.0-fixed +evt_000888,u_0291,feature_used,2026-06-16T18:27:00Z,u_0291_s01,ins_u_0291_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000889,u_0013,signup_started,2026-06-16T18:42:00Z,u_0013_s01,ins_u_0013_001,{},v2.3.0-fixed +evt_000890,u_0086,signup_started,2026-06-16T18:42:00Z,u_0086_s01,ins_u_0086_001,{},v2.3.0-fixed +evt_000891,u_0291,onboarding_completed,2026-06-16T18:42:00Z,u_0291_s01,ins_u_0291_006,"{""completed_at"": ""2026-06-16T18:42:00Z""}",v2.3.0-fixed +evt_000892,u_0415,signup_started,2026-06-16T18:44:00Z,u_0415_s01,ins_u_0415_001,{},v2.3.0-fixed +evt_000893,u_0013,signup_completed,2026-06-16T18:47:00Z,u_0013_s01,ins_u_0013_002,{},v2.3.0-fixed +evt_000894,u_0083,onboarding_completed,2026-06-16T18:47:00Z,u_0083_s01,ins_u_0083_005,"{""completed_at"": ""2026-06-16T18:33:00Z""}",v2.3.0-fixed +evt_000895,u_0415,signup_completed,2026-06-16T18:47:00Z,u_0415_s01,ins_u_0415_002,{},v2.3.0-fixed +evt_000896,u_0133,onboarding_completed,2026-06-16T18:48:00Z,u_0133_s01,ins_u_0133_005,"{""completed_at"": ""2026-06-16T18:38:00Z""}",v2.3.0-fixed +evt_000897,u_0086,signup_completed,2026-06-16T18:50:00Z,u_0086_s01,ins_u_0086_002,{},v2.3.0-fixed +evt_000898,u_0200,activation_completed,2026-06-16T18:50:00Z,u_0200_s01,ins_u_0200_006,{},v2.3.0-fixed +evt_000899,u_0013,session_abandoned,2026-06-16T18:53:00Z,u_0013_s01,ins_u_0013_003,{},v2.3.0-fixed +evt_000900,u_0318,onboarding_completed,2026-06-16T18:57:00Z,u_0318_s01,ins_u_0318_004,"{""completed_at"": ""2026-06-16T18:47:00Z""}",v2.3.0-fixed +evt_000901,u_0415,profile_saved,2026-06-16T18:57:00Z,u_0415_s01,ins_u_0415_003,{},v2.3.0-fixed +evt_000902,u_0348,signup_started,2026-06-16T18:58:00Z,u_0348_s01,ins_u_0348_001,{},v2.3.0-fixed +evt_000903,u_0086,profile_saved,2026-06-16T18:59:00Z,u_0086_s01,ins_u_0086_003,{},v2.3.0-fixed +evt_000904,u_0348,session_abandoned,2026-06-16T19:01:00Z,u_0348_s01,ins_u_0348_002,{},v2.3.0-fixed +evt_000905,u_0208,onboarding_completed,2026-06-16T19:02:00Z,u_0208_s01,ins_u_0208_005,"{""completed_at"": ""2026-06-16T18:54:00Z""}",v2.3.0-fixed +evt_000906,u_0415,onboarding_step_viewed,2026-06-16T19:03:00Z,u_0415_s01,ins_u_0415_004,{},v2.3.0-fixed +evt_000907,u_0439,signup_started,2026-06-16T19:03:00Z,u_0439_s01,ins_u_0439_001,{},v2.3.0-fixed +evt_000908,u_0435,signup_started,2026-06-16T19:05:00Z,u_0435_s01,ins_u_0435_001,{},v2.3.0-fixed +evt_000909,u_0304,signup_started,2026-06-16T19:06:00Z,u_0304_s01,ins_u_0304_001,{},v2.3.0-fixed +evt_000910,u_0304,session_abandoned,2026-06-16T19:07:00Z,u_0304_s01,ins_u_0304_002,{},v2.3.0-fixed +evt_000911,u_0083,activation_completed,2026-06-16T19:09:00Z,u_0083_s01,ins_u_0083_006,{},v2.3.0-fixed +evt_000912,u_0171,signup_started,2026-06-16T19:09:00Z,u_0171_s01,ins_u_0171_001,{},v2.3.0-fixed +evt_000913,u_0439,signup_completed,2026-06-16T19:11:00Z,u_0439_s01,ins_u_0439_002,{},v2.3.0-fixed +evt_000914,u_0258,signup_started,2026-06-16T19:12:00Z,u_0258_s01,ins_u_0258_001,{},v2.3.0-fixed +evt_000915,u_0435,signup_completed,2026-06-16T19:12:00Z,u_0435_s01,ins_u_0435_002,{},v2.3.0-fixed +evt_000916,u_0089,signup_started,2026-06-16T19:13:00Z,u_0089_s01,ins_u_0089_001,{},v2.3.0-fixed +evt_000917,u_0439,profile_saved,2026-06-16T19:13:00Z,u_0439_s01,ins_u_0439_003,{},v2.3.0-fixed +evt_000918,u_0258,signup_completed,2026-06-16T19:14:00Z,u_0258_s01,ins_u_0258_002,{},v2.3.0-fixed +evt_000919,u_0415,feature_used,2026-06-16T19:14:00Z,u_0415_s01,ins_u_0415_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000920,u_0086,feature_used,2026-06-16T19:15:00Z,u_0086_s01,ins_u_0086_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000921,u_0089,signup_completed,2026-06-16T19:16:00Z,u_0089_s01,ins_u_0089_002,{},v2.3.0-fixed +evt_000922,u_0258,profile_saved,2026-06-16T19:16:00Z,u_0258_s01,ins_u_0258_003,{},v2.3.0-fixed +evt_000923,u_0167,signup_started,2026-06-16T19:17:00Z,u_0167_s01,ins_u_0167_001,{},v2.3.0-fixed +evt_000924,u_0171,signup_completed,2026-06-16T19:17:00Z,u_0171_s01,ins_u_0171_002,{},v2.3.0-fixed +evt_000925,u_0435,profile_saved,2026-06-16T19:17:00Z,u_0435_s01,ins_u_0435_003,{},v2.3.0-fixed +evt_000926,u_0184,signup_started,2026-06-16T19:18:00Z,u_0184_s01,ins_u_0184_001,{},v2.3.0-fixed +evt_000927,u_0435,error_shown,2026-06-16T19:18:00Z,u_0435_s01,ins_u_0435_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000928,u_0184,signup_completed,2026-06-16T19:19:00Z,u_0184_s01,ins_u_0184_002,{},v2.3.0-fixed +evt_000929,u_0439,onboarding_step_viewed,2026-06-16T19:19:00Z,u_0439_s01,ins_u_0439_004,{},v2.3.0-fixed +evt_000930,u_0089,profile_saved,2026-06-16T19:20:00Z,u_0089_s01,ins_u_0089_003,{},v2.3.0-fixed +evt_000931,u_0296,signup_started,2026-06-16T19:21:00Z,u_0296_s01,ins_u_0296_001,{},v2.3.0-fixed +evt_000932,u_0435,onboarding_step_viewed,2026-06-16T19:21:00Z,u_0435_s01,ins_u_0435_005,{},v2.3.0-fixed +evt_000933,u_0258,onboarding_step_viewed,2026-06-16T19:22:00Z,u_0258_s01,ins_u_0258_004,{},v2.3.0-fixed +evt_000934,u_0167,session_abandoned,2026-06-16T19:23:00Z,u_0167_s01,ins_u_0167_002,{},v2.3.0-fixed +evt_000935,u_0415,onboarding_completed,2026-06-16T19:23:00Z,u_0415_s01,ins_u_0415_006,"{""completed_at"": ""2026-06-16T19:25:00Z""}",v2.3.0-fixed +evt_000936,u_0184,session_abandoned,2026-06-16T19:24:00Z,u_0184_s01,ins_u_0184_003,{},v2.3.0-fixed +evt_000937,u_0089,onboarding_step_viewed,2026-06-16T19:25:00Z,u_0089_s01,ins_u_0089_004,{},v2.3.0-fixed +evt_000938,u_0318,activation_completed,2026-06-16T19:26:00Z,u_0318_s01,ins_u_0318_005,{},v2.3.0-fixed +evt_000939,u_0171,profile_saved,2026-06-16T19:27:00Z,u_0171_s01,ins_u_0171_003,{},v2.3.0-fixed +evt_000940,u_0529,signup_started,2026-06-16T19:27:00Z,u_0529_s01,ins_u_0529_001,{},v2.3.0-fixed +evt_000941,u_0296,signup_completed,2026-06-16T19:28:00Z,u_0296_s01,ins_u_0296_002,{},v2.3.0-fixed +evt_000942,u_0086,onboarding_completed,2026-06-16T19:29:00Z,u_0086_s01,ins_u_0086_005,"{""completed_at"": ""2026-06-16T19:38:00Z""}",v2.3.0-fixed +evt_000943,u_0171,onboarding_step_viewed,2026-06-16T19:29:00Z,u_0171_s01,ins_u_0171_004,{},v2.3.0-fixed +evt_000944,u_0529,session_abandoned,2026-06-16T19:29:00Z,u_0529_s01,ins_u_0529_002,{},v2.3.0-fixed +evt_000945,u_0133,activation_completed,2026-06-16T19:30:00Z,u_0133_s01,ins_u_0133_006,{},v2.3.0-fixed +evt_000946,u_0296,session_abandoned,2026-06-16T19:36:00Z,u_0296_s01,ins_u_0296_003,{},v2.3.0-fixed +evt_000947,u_0157,signup_started,2026-06-16T19:39:00Z,u_0157_s01,ins_u_0157_001,{},v2.3.0-fixed +evt_000948,u_0258,feature_used,2026-06-16T19:39:00Z,u_0258_s01,ins_u_0258_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000949,u_0089,feature_used,2026-06-16T19:41:00Z,u_0089_s01,ins_u_0089_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000950,u_0447,signup_started,2026-06-16T19:41:00Z,u_0447_s01,ins_u_0447_001,{},v2.3.0-fixed +evt_000951,u_0171,feature_used,2026-06-16T19:42:00Z,u_0171_s01,ins_u_0171_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000952,u_0435,onboarding_completed,2026-06-16T19:44:00Z,u_0435_s01,ins_u_0435_006,"{""completed_at"": ""2026-06-16T19:52:00Z""}",v2.3.0-fixed +evt_000953,u_0157,signup_completed,2026-06-16T19:45:00Z,u_0157_s01,ins_u_0157_002,{},v2.3.0-fixed +evt_000954,u_0447,signup_completed,2026-06-16T19:47:00Z,u_0447_s01,ins_u_0447_002,{},v2.3.0-fixed +evt_000955,u_0157,profile_saved,2026-06-16T19:50:00Z,u_0157_s01,ins_u_0157_003,{},v2.3.0-fixed +evt_000956,u_0157,onboarding_step_viewed,2026-06-16T19:52:00Z,u_0157_s01,ins_u_0157_004,{},v2.3.0-fixed +evt_000957,u_0171,onboarding_completed,2026-06-16T19:53:00Z,u_0171_s01,ins_u_0171_006,"{""completed_at"": ""2026-06-16T20:00:00Z""}",v2.3.0-fixed +evt_000958,u_0447,session_abandoned,2026-06-16T19:54:00Z,u_0447_s01,ins_u_0447_003,{},v2.3.0-fixed +evt_000959,u_0148,signup_started,2026-06-16T19:55:00Z,u_0148_s01,ins_u_0148_001,{},v2.3.0-fixed +evt_000960,u_0439,onboarding_completed,2026-06-16T19:55:00Z,u_0439_s01,ins_u_0439_005,"{""completed_at"": ""2026-06-16T19:50:00Z""}",v2.3.0-fixed +evt_000961,u_0089,onboarding_completed,2026-06-16T19:57:00Z,u_0089_s01,ins_u_0089_006,"{""completed_at"": ""2026-06-16T19:59:00Z""}",v2.3.0-fixed +evt_000962,u_0258,onboarding_completed,2026-06-16T19:57:00Z,u_0258_s01,ins_u_0258_006,"{""completed_at"": ""2026-06-16T19:56:00Z""}",v2.3.0-fixed +evt_000963,u_0294,signup_started,2026-06-16T19:58:00Z,u_0294_s01,ins_u_0294_001,{},v2.3.0-fixed +evt_000964,u_0294,signup_completed,2026-06-16T19:59:00Z,u_0294_s01,ins_u_0294_002,{},v2.3.0-fixed +evt_000965,u_0148,signup_completed,2026-06-16T20:01:00Z,u_0148_s01,ins_u_0148_002,{},v2.3.0-fixed +evt_000966,u_0452,signup_started,2026-06-16T20:01:00Z,u_0452_s01,ins_u_0452_001,{},v2.3.0-fixed +evt_000967,u_0523,signup_started,2026-06-16T20:03:00Z,u_0523_s01,ins_u_0523_001,{},v2.3.0-fixed +evt_000968,u_0452,signup_completed,2026-06-16T20:06:00Z,u_0452_s01,ins_u_0452_002,{},v2.3.0-fixed +evt_000969,u_0294,profile_saved,2026-06-16T20:07:00Z,u_0294_s01,ins_u_0294_003,{},v2.3.0-fixed +evt_000970,u_0148,profile_saved,2026-06-16T20:08:00Z,u_0148_s01,ins_u_0148_003,{},v2.3.0-fixed +evt_000971,u_0089,activation_completed,2026-06-16T20:09:00Z,u_0089_s01,ins_u_0089_007,{},v2.3.0-fixed +evt_000972,u_0523,signup_completed,2026-06-16T20:09:00Z,u_0523_s01,ins_u_0523_002,{},v2.3.0-fixed +evt_000973,u_0148,onboarding_step_viewed,2026-06-16T20:10:00Z,u_0148_s01,ins_u_0148_004,{},v2.3.0-fixed +evt_000974,u_0439,activation_completed,2026-06-16T20:11:00Z,u_0439_s01,ins_u_0439_006,{},v2.3.0-fixed +evt_000975,u_0157,feature_used,2026-06-16T20:12:00Z,u_0157_s01,ins_u_0157_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000976,u_0523,profile_saved,2026-06-16T20:13:00Z,u_0523_s01,ins_u_0523_003,{},v2.3.0-fixed +evt_000977,u_0294,feature_used,2026-06-16T20:15:00Z,u_0294_s01,ins_u_0294_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_000978,u_0523,onboarding_step_viewed,2026-06-16T20:15:00Z,u_0523_s01,ins_u_0523_004,{},v2.3.0-fixed +evt_000979,u_0452,profile_saved,2026-06-16T20:16:00Z,u_0452_s01,ins_u_0452_003,{},v2.3.0-fixed +evt_000980,u_0435,activation_completed,2026-06-16T20:20:00Z,u_0435_s01,ins_u_0435_007,{},v2.3.0-fixed +evt_000981,u_0452,onboarding_step_viewed,2026-06-16T20:22:00Z,u_0452_s01,ins_u_0452_004,{},v2.3.0-fixed +evt_000982,u_0463,signup_started,2026-06-16T20:22:00Z,u_0463_s01,ins_u_0463_001,{},v2.3.0-fixed +evt_000983,u_0452,feature_used,2026-06-16T20:23:00Z,u_0452_s01,ins_u_0452_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_000984,u_0463,signup_completed,2026-06-16T20:24:00Z,u_0463_s01,ins_u_0463_002,{},v2.3.0-fixed +evt_000985,u_0609,signup_started,2026-06-16T20:25:00Z,u_0609_s01,ins_u_0609_001,{},v2.3.0-fixed +evt_000986,u_0157,onboarding_completed,2026-06-16T20:26:00Z,u_0157_s01,ins_u_0157_006,"{""completed_at"": ""2026-06-16T20:17:00Z""}",v2.3.0-fixed +evt_000987,u_0523,feature_used,2026-06-16T20:30:00Z,u_0523_s01,ins_u_0523_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_000988,u_0609,signup_completed,2026-06-16T20:30:00Z,u_0609_s01,ins_u_0609_002,{},v2.3.0-fixed +evt_000989,u_0463,profile_saved,2026-06-16T20:34:00Z,u_0463_s01,ins_u_0463_003,{},v2.3.0-fixed +evt_000990,u_0463,onboarding_step_viewed,2026-06-16T20:40:00Z,u_0463_s01,ins_u_0463_004,{},v2.3.0-fixed +evt_000991,u_0609,profile_saved,2026-06-16T20:40:00Z,u_0609_s01,ins_u_0609_003,{},v2.3.0-fixed +evt_000992,u_0609,error_shown,2026-06-16T20:41:00Z,u_0609_s01,ins_u_0609_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_000993,u_0148,onboarding_completed,2026-06-16T20:43:00Z,u_0148_s01,ins_u_0148_005,"{""completed_at"": ""2026-06-16T20:46:00Z""}",v2.3.0-fixed +evt_000994,u_0452,onboarding_completed,2026-06-16T20:43:00Z,u_0452_s01,ins_u_0452_006,"{""completed_at"": ""2026-06-16T20:42:00Z""}",v2.3.0-fixed +evt_000995,u_0609,onboarding_step_viewed,2026-06-16T20:45:00Z,u_0609_s01,ins_u_0609_005,{},v2.3.0-fixed +evt_000996,u_0157,activation_completed,2026-06-16T20:48:00Z,u_0157_s01,ins_u_0157_007,{},v2.3.0-fixed +evt_000997,u_0294,onboarding_completed,2026-06-16T20:48:00Z,u_0294_s01,ins_u_0294_005,"{""completed_at"": ""2026-06-16T20:37:00Z""}",v2.3.0-fixed +evt_000998,u_0523,onboarding_completed,2026-06-16T20:48:00Z,u_0523_s01,ins_u_0523_006,"{""completed_at"": ""2026-06-16T20:41:00Z""}",v2.3.0-fixed +evt_000999,u_0463,feature_used,2026-06-16T20:52:00Z,u_0463_s01,ins_u_0463_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001000,u_0231,signup_started,2026-06-16T20:54:00Z,u_0231_s01,ins_u_0231_001,{},v2.3.0-fixed +evt_001001,u_0231,signup_completed,2026-06-16T20:55:00Z,u_0231_s01,ins_u_0231_002,{},v2.3.0-fixed +evt_001002,u_0231,session_abandoned,2026-06-16T21:00:00Z,u_0231_s01,ins_u_0231_003,{},v2.3.0-fixed +evt_001003,u_0609,feature_used,2026-06-16T21:03:00Z,u_0609_s01,ins_u_0609_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001004,u_0463,onboarding_completed,2026-06-16T21:16:00Z,u_0463_s01,ins_u_0463_006,"{""completed_at"": ""2026-06-16T21:13:00Z""}",v2.3.0-fixed +evt_001005,u_0452,activation_completed,2026-06-16T21:17:00Z,u_0452_s01,ins_u_0452_007,{},v2.3.0-fixed +evt_001006,u_0609,onboarding_completed,2026-06-16T21:18:00Z,u_0609_s01,ins_u_0609_007,"{""completed_at"": ""2026-06-16T21:08:00Z""}",v2.3.0-fixed +evt_001007,u_0523,activation_completed,2026-06-16T21:27:00Z,u_0523_s01,ins_u_0523_007,{},v2.3.0-fixed +evt_001008,u_0455,signup_started,2026-06-17T08:10:00Z,u_0455_s01,ins_u_0455_001,{},v2.3.0-fixed +evt_001009,u_0181,signup_started,2026-06-17T08:11:00Z,u_0181_s01,ins_u_0181_001,{},v2.3.0-fixed +evt_001010,u_0455,signup_completed,2026-06-17T08:12:00Z,u_0455_s01,ins_u_0455_002,{},v2.3.0-fixed +evt_001011,u_0181,signup_completed,2026-06-17T08:15:00Z,u_0181_s01,ins_u_0181_002,{},v2.3.0-fixed +evt_001012,u_0181,session_abandoned,2026-06-17T08:20:00Z,u_0181_s01,ins_u_0181_003,{},v2.3.0-fixed +evt_001013,u_0455,session_abandoned,2026-06-17T08:21:00Z,u_0455_s01,ins_u_0455_003,{},v2.3.0-fixed +evt_001014,u_0066,signup_started,2026-06-17T08:25:00Z,u_0066_s01,ins_u_0066_001,{},v2.3.0-fixed +evt_001015,u_0066,signup_completed,2026-06-17T08:27:00Z,u_0066_s01,ins_u_0066_002,{},v2.3.0-fixed +evt_001016,u_0551,signup_started,2026-06-17T08:27:00Z,u_0551_s01,ins_u_0551_001,{},v2.3.0-fixed +evt_001017,u_0066,session_abandoned,2026-06-17T08:34:00Z,u_0066_s01,ins_u_0066_003,{},v2.3.0-fixed +evt_001018,u_0551,signup_completed,2026-06-17T08:34:00Z,u_0551_s01,ins_u_0551_002,{},v2.3.0-fixed +evt_001019,u_0555,signup_started,2026-06-17T08:37:00Z,u_0555_s01,ins_u_0555_001,{},v2.3.0-fixed +evt_001020,u_0551,profile_saved,2026-06-17T08:38:00Z,u_0551_s01,ins_u_0551_003,{},v2.3.0-fixed +evt_001021,u_0513,signup_started,2026-06-17T08:39:00Z,u_0513_s01,ins_u_0513_001,{},v2.3.0-fixed +evt_001022,u_0555,signup_completed,2026-06-17T08:40:00Z,u_0555_s01,ins_u_0555_002,{},v2.3.0-fixed +evt_001023,u_0219,signup_started,2026-06-17T08:42:00Z,u_0219_s01,ins_u_0219_001,{},v2.3.0-fixed +evt_001024,u_0127,signup_started,2026-06-17T08:43:00Z,u_0127_s01,ins_u_0127_001,{},v2.3.0-fixed +evt_001025,u_0330,signup_started,2026-06-17T08:43:00Z,u_0330_s01,ins_u_0330_001,{},v2.3.0-fixed +evt_001026,u_0551,onboarding_step_viewed,2026-06-17T08:43:00Z,u_0551_s01,ins_u_0551_004,{},v2.3.0-fixed +evt_001027,u_0698,signup_started,2026-06-17T08:43:00Z,u_0698_s01,ins_u_0698_001,{},v2.3.0-fixed +evt_001028,u_0048,signup_started,2026-06-17T08:44:00Z,u_0048_s01,ins_u_0048_001,{},v2.3.0-fixed +evt_001029,u_0698,signup_completed,2026-06-17T08:44:00Z,u_0698_s01,ins_u_0698_002,{},v2.3.0-fixed +evt_001030,u_0513,signup_completed,2026-06-17T08:45:00Z,u_0513_s01,ins_u_0513_002,{},v2.3.0-fixed +evt_001031,u_0127,signup_completed,2026-06-17T08:47:00Z,u_0127_s01,ins_u_0127_002,{},v2.3.0-fixed +evt_001032,u_0219,signup_completed,2026-06-17T08:47:00Z,u_0219_s01,ins_u_0219_002,{},v2.3.0-fixed +evt_001033,u_0555,session_abandoned,2026-06-17T08:47:00Z,u_0555_s01,ins_u_0555_003,{},v2.3.0-fixed +evt_001034,u_0330,signup_completed,2026-06-17T08:48:00Z,u_0330_s01,ins_u_0330_002,{},v2.3.0-fixed +evt_001035,u_0698,profile_saved,2026-06-17T08:48:00Z,u_0698_s01,ins_u_0698_003,{},v2.3.0-fixed +evt_001036,u_0048,session_abandoned,2026-06-17T08:49:00Z,u_0048_s01,ins_u_0048_002,{},v2.3.0-fixed +evt_001037,u_0219,profile_saved,2026-06-17T08:49:00Z,u_0219_s01,ins_u_0219_003,{},v2.3.0-fixed +evt_001038,u_0481,signup_started,2026-06-17T08:49:00Z,u_0481_s01,ins_u_0481_001,{},v2.3.0-fixed +evt_001039,u_0698,onboarding_step_viewed,2026-06-17T08:51:00Z,u_0698_s01,ins_u_0698_004,{},v2.3.0-fixed +evt_001040,u_0719,signup_started,2026-06-17T08:51:00Z,u_0719_s01,ins_u_0719_001,{},v2.3.0-fixed +evt_001041,u_0481,signup_completed,2026-06-17T08:54:00Z,u_0481_s01,ins_u_0481_002,{},v2.3.0-fixed +evt_001042,u_0719,signup_completed,2026-06-17T08:54:00Z,u_0719_s01,ins_u_0719_002,{},v2.3.0-fixed +evt_001043,u_0127,profile_saved,2026-06-17T08:55:00Z,u_0127_s01,ins_u_0127_003,{},v2.3.0-fixed +evt_001044,u_0219,onboarding_step_viewed,2026-06-17T08:55:00Z,u_0219_s01,ins_u_0219_004,{},v2.3.0-fixed +evt_001045,u_0513,profile_saved,2026-06-17T08:55:00Z,u_0513_s01,ins_u_0513_003,{},v2.3.0-fixed +evt_001046,u_0330,session_abandoned,2026-06-17T08:56:00Z,u_0330_s01,ins_u_0330_003,{},v2.3.0-fixed +evt_001047,u_0481,profile_saved,2026-06-17T08:56:00Z,u_0481_s01,ins_u_0481_003,{},v2.3.0-fixed +evt_001048,u_0719,profile_saved,2026-06-17T08:56:00Z,u_0719_s01,ins_u_0719_003,{},v2.3.0-fixed +evt_001049,u_0102,signup_started,2026-06-17T09:01:00Z,u_0102_s01,ins_u_0102_001,{},v2.3.0-fixed +evt_001050,u_0481,onboarding_step_viewed,2026-06-17T09:01:00Z,u_0481_s01,ins_u_0481_004,{},v2.3.0-fixed +evt_001051,u_0513,onboarding_step_viewed,2026-06-17T09:01:00Z,u_0513_s01,ins_u_0513_004,{},v2.3.0-fixed +evt_001052,u_0719,onboarding_step_viewed,2026-06-17T09:01:00Z,u_0719_s01,ins_u_0719_004,{},v2.3.0-fixed +evt_001053,u_0102,session_abandoned,2026-06-17T09:09:00Z,u_0102_s01,ins_u_0102_002,{},v2.3.0-fixed +evt_001054,u_0481,feature_used,2026-06-17T09:11:00Z,u_0481_s01,ins_u_0481_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001055,u_0297,signup_started,2026-06-17T09:15:00Z,u_0297_s01,ins_u_0297_001,{},v2.3.0-fixed +evt_001056,u_0513,feature_used,2026-06-17T09:18:00Z,u_0513_s01,ins_u_0513_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001057,u_0127,feature_used,2026-06-17T09:19:00Z,u_0127_s01,ins_u_0127_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001058,u_0719,feature_used,2026-06-17T09:19:00Z,u_0719_s01,ins_u_0719_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001059,u_0674,signup_started,2026-06-17T09:21:00Z,u_0674_s01,ins_u_0674_001,{},v2.3.0-fixed +evt_001060,u_0631,signup_started,2026-06-17T09:22:00Z,u_0631_s01,ins_u_0631_001,{},v2.3.0-fixed +evt_001061,u_0297,signup_completed,2026-06-17T09:23:00Z,u_0297_s01,ins_u_0297_002,{},v2.3.0-fixed +evt_001062,u_0574,signup_started,2026-06-17T09:24:00Z,u_0574_s01,ins_u_0574_001,{},v2.3.0-fixed +evt_001063,u_0631,session_abandoned,2026-06-17T09:24:00Z,u_0631_s01,ins_u_0631_002,{},v2.3.0-fixed +evt_001064,u_0219,onboarding_completed,2026-06-17T09:26:00Z,u_0219_s01,ins_u_0219_005,"{""completed_at"": ""2026-06-17T09:16:00Z""}",v2.3.0-fixed +evt_001065,u_0513,onboarding_completed,2026-06-17T09:27:00Z,u_0513_s01,ins_u_0513_006,"{""completed_at"": ""2026-06-17T09:23:00Z""}",v2.3.0-fixed +evt_001066,u_0674,signup_completed,2026-06-17T09:27:00Z,u_0674_s01,ins_u_0674_002,{},v2.3.0-fixed +evt_001067,u_0297,profile_saved,2026-06-17T09:28:00Z,u_0297_s01,ins_u_0297_003,{},v2.3.0-fixed +evt_001068,u_0574,session_abandoned,2026-06-17T09:28:00Z,u_0574_s01,ins_u_0574_002,{},v2.3.0-fixed +evt_001069,u_0698,onboarding_completed,2026-06-17T09:29:00Z,u_0698_s01,ins_u_0698_005,"{""completed_at"": ""2026-06-17T09:20:00Z""}",v2.3.0-fixed +evt_001070,u_0297,onboarding_step_viewed,2026-06-17T09:33:00Z,u_0297_s01,ins_u_0297_004,{},v2.3.0-fixed +evt_001071,u_0674,profile_saved,2026-06-17T09:33:00Z,u_0674_s01,ins_u_0674_003,{},v2.3.0-fixed +evt_001072,u_0356,signup_started,2026-06-17T09:34:00Z,u_0356_s01,ins_u_0356_001,{},v2.3.0-fixed +evt_001073,u_0710,signup_started,2026-06-17T09:35:00Z,u_0710_s01,ins_u_0710_001,{},v2.3.0-fixed +evt_001074,u_0674,onboarding_step_viewed,2026-06-17T09:36:00Z,u_0674_s01,ins_u_0674_004,{},v2.3.0-fixed +evt_001075,u_0356,signup_completed,2026-06-17T09:37:00Z,u_0356_s01,ins_u_0356_002,{},v2.3.0-fixed +evt_001076,u_0719,onboarding_completed,2026-06-17T09:37:00Z,u_0719_s01,ins_u_0719_006,"{""completed_at"": ""2026-06-17T09:28:00Z""}",v2.3.0-fixed +evt_001077,u_0481,onboarding_completed,2026-06-17T09:38:00Z,u_0481_s01,ins_u_0481_006,"{""completed_at"": ""2026-06-17T09:34:00Z""}",v2.3.0-fixed +evt_001078,u_0710,signup_completed,2026-06-17T09:40:00Z,u_0710_s01,ins_u_0710_002,{},v2.3.0-fixed +evt_001079,u_0356,profile_saved,2026-06-17T09:42:00Z,u_0356_s01,ins_u_0356_003,{},v2.3.0-fixed +evt_001080,u_0710,profile_saved,2026-06-17T09:42:00Z,u_0710_s01,ins_u_0710_003,{},v2.3.0-fixed +evt_001081,u_0356,onboarding_step_viewed,2026-06-17T09:44:00Z,u_0356_s01,ins_u_0356_004,{},v2.3.0-fixed +evt_001082,u_0710,onboarding_step_viewed,2026-06-17T09:46:00Z,u_0710_s01,ins_u_0710_004,{},v2.3.0-fixed +evt_001083,u_0740,signup_started,2026-06-17T09:51:00Z,u_0740_s01,ins_u_0740_001,{},v2.3.0-fixed +evt_001084,u_0674,feature_used,2026-06-17T09:52:00Z,u_0674_s01,ins_u_0674_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001085,u_0710,feature_used,2026-06-17T09:53:00Z,u_0710_s01,ins_u_0710_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001086,u_0719,activation_completed,2026-06-17T09:53:00Z,u_0719_s01,ins_u_0719_007,{},v2.3.0-fixed +evt_001087,u_0740,session_abandoned,2026-06-17T09:53:00Z,u_0740_s01,ins_u_0740_002,{},v2.3.0-fixed +evt_001088,u_0356,feature_used,2026-06-17T09:54:00Z,u_0356_s01,ins_u_0356_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001089,u_0513,activation_completed,2026-06-17T09:54:00Z,u_0513_s01,ins_u_0513_007,{},v2.3.0-fixed +evt_001090,u_0043,signup_started,2026-06-17T09:57:00Z,u_0043_s01,ins_u_0043_001,{},v2.3.0-fixed +evt_001091,u_0429,signup_started,2026-06-17T09:59:00Z,u_0429_s01,ins_u_0429_001,{},v2.3.0-fixed +evt_001092,u_0043,signup_completed,2026-06-17T10:00:00Z,u_0043_s01,ins_u_0043_002,{},v2.3.0-fixed +evt_001093,u_0429,signup_completed,2026-06-17T10:05:00Z,u_0429_s01,ins_u_0429_002,{},v2.3.0-fixed +evt_001094,u_0043,session_abandoned,2026-06-17T10:09:00Z,u_0043_s01,ins_u_0043_003,{},v2.3.0-fixed +evt_001095,u_0429,session_abandoned,2026-06-17T10:09:00Z,u_0429_s01,ins_u_0429_003,{},v2.3.0-fixed +evt_001096,u_0297,onboarding_completed,2026-06-17T10:13:00Z,u_0297_s01,ins_u_0297_005,"{""completed_at"": ""2026-06-17T10:01:00Z""}",v2.3.0-fixed +evt_001097,u_0297,activation_completed,2026-06-17T10:14:00Z,u_0297_s01,ins_u_0297_006,{},v2.3.0-fixed +evt_001098,u_0356,onboarding_completed,2026-06-17T10:15:00Z,u_0356_s01,ins_u_0356_006,"{""completed_at"": ""2026-06-17T10:15:00Z""}",v2.3.0-fixed +evt_001099,u_0411,signup_started,2026-06-17T10:15:00Z,u_0411_s01,ins_u_0411_001,{},v2.3.0-fixed +evt_001100,u_0674,onboarding_completed,2026-06-17T10:15:00Z,u_0674_s01,ins_u_0674_006,"{""completed_at"": ""2026-06-17T10:10:00Z""}",v2.3.0-fixed +evt_001101,u_0411,session_abandoned,2026-06-17T10:20:00Z,u_0411_s01,ins_u_0411_002,{},v2.3.0-fixed +evt_001102,u_0710,onboarding_completed,2026-06-17T10:23:00Z,u_0710_s01,ins_u_0710_006,"{""completed_at"": ""2026-06-17T10:16:00Z""}",v2.3.0-fixed +evt_001103,u_0113,signup_started,2026-06-17T10:24:00Z,u_0113_s01,ins_u_0113_001,{},v2.3.0-fixed +evt_001104,u_0122,signup_started,2026-06-17T10:27:00Z,u_0122_s01,ins_u_0122_001,{},v2.3.0-fixed +evt_001105,u_0113,signup_completed,2026-06-17T10:29:00Z,u_0113_s01,ins_u_0113_002,{},v2.3.0-fixed +evt_001106,u_0113,profile_saved,2026-06-17T10:31:00Z,u_0113_s01,ins_u_0113_003,{},v2.3.0-fixed +evt_001107,u_0552,signup_started,2026-06-17T10:31:00Z,u_0552_s01,ins_u_0552_001,{},v2.3.0-fixed +evt_001108,u_0643,signup_started,2026-06-17T10:31:00Z,u_0643_s01,ins_u_0643_001,{},v2.3.0-fixed +evt_001109,u_0552,signup_completed,2026-06-17T10:32:00Z,u_0552_s01,ins_u_0552_002,{},v2.3.0-fixed +evt_001110,u_0113,onboarding_step_viewed,2026-06-17T10:33:00Z,u_0113_s01,ins_u_0113_004,{},v2.3.0-fixed +evt_001111,u_0122,signup_completed,2026-06-17T10:35:00Z,u_0122_s01,ins_u_0122_002,{},v2.3.0-fixed +evt_001112,u_0643,session_abandoned,2026-06-17T10:35:00Z,u_0643_s01,ins_u_0643_002,{},v2.3.0-fixed +evt_001113,u_0674,activation_completed,2026-06-17T10:35:00Z,u_0674_s01,ins_u_0674_007,{},v2.3.0-fixed +evt_001114,u_0552,session_abandoned,2026-06-17T10:37:00Z,u_0552_s01,ins_u_0552_003,{},v2.3.0-fixed +evt_001115,u_0600,signup_started,2026-06-17T10:37:00Z,u_0600_s01,ins_u_0600_001,{},v2.3.0-fixed +evt_001116,u_0052,signup_started,2026-06-17T10:41:00Z,u_0052_s01,ins_u_0052_001,{},v2.3.0-fixed +evt_001117,u_0122,profile_saved,2026-06-17T10:43:00Z,u_0122_s01,ins_u_0122_003,{},v2.3.0-fixed +evt_001118,u_0714,signup_started,2026-06-17T10:43:00Z,u_0714_s01,ins_u_0714_001,{},v2.3.0-fixed +evt_001119,u_0052,signup_completed,2026-06-17T10:44:00Z,u_0052_s01,ins_u_0052_002,{},v2.3.0-fixed +evt_001120,u_0122,onboarding_step_viewed,2026-06-17T10:45:00Z,u_0122_s01,ins_u_0122_004,{},v2.3.0-fixed +evt_001121,u_0600,signup_completed,2026-06-17T10:45:00Z,u_0600_s01,ins_u_0600_002,{},v2.3.0-fixed +evt_001122,u_0052,profile_saved,2026-06-17T10:46:00Z,u_0052_s01,ins_u_0052_003,{},v2.3.0-fixed +evt_001123,u_0751,signup_started,2026-06-17T10:47:00Z,u_0751_s01,ins_u_0751_001,{},v2.3.0-fixed +evt_001124,u_0052,onboarding_step_viewed,2026-06-17T10:49:00Z,u_0052_s01,ins_u_0052_004,{},v2.3.0-fixed +evt_001125,u_0714,signup_completed,2026-06-17T10:49:00Z,u_0714_s01,ins_u_0714_002,{},v2.3.0-fixed +evt_001126,u_0600,profile_saved,2026-06-17T10:53:00Z,u_0600_s01,ins_u_0600_003,{},v2.3.0-fixed +evt_001127,u_0714,profile_saved,2026-06-17T10:53:00Z,u_0714_s01,ins_u_0714_003,{},v2.3.0-fixed +evt_001128,u_0113,feature_used,2026-06-17T10:55:00Z,u_0113_s01,ins_u_0113_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001129,u_0360,signup_started,2026-06-17T10:55:00Z,u_0360_s01,ins_u_0360_001,{},v2.3.0-fixed +evt_001130,u_0600,onboarding_step_viewed,2026-06-17T10:55:00Z,u_0600_s01,ins_u_0600_004,{},v2.3.0-fixed +evt_001131,u_0751,signup_completed,2026-06-17T10:55:00Z,u_0751_s01,ins_u_0751_002,{},v2.3.0-fixed +evt_001132,u_0113,onboarding_completed,2026-06-17T10:58:00Z,u_0113_s01,ins_u_0113_006,"{""completed_at"": ""2026-06-17T11:00:00Z""}",v2.3.0-fixed +evt_001133,u_0360,signup_completed,2026-06-17T10:59:00Z,u_0360_s01,ins_u_0360_002,{},v2.3.0-fixed +evt_001134,u_0714,onboarding_step_viewed,2026-06-17T10:59:00Z,u_0714_s01,ins_u_0714_004,{},v2.3.0-fixed +evt_001135,u_0122,feature_used,2026-06-17T11:01:00Z,u_0122_s01,ins_u_0122_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001136,u_0744,signup_started,2026-06-17T11:01:00Z,u_0744_s01,ins_u_0744_001,{},v2.3.0-fixed +evt_001137,u_0600,feature_used,2026-06-17T11:03:00Z,u_0600_s01,ins_u_0600_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001138,u_0751,profile_saved,2026-06-17T11:03:00Z,u_0751_s01,ins_u_0751_003,{},v2.3.0-fixed +evt_001139,u_0744,signup_completed,2026-06-17T11:07:00Z,u_0744_s01,ins_u_0744_002,{},v2.3.0-fixed +evt_001140,u_0751,onboarding_step_viewed,2026-06-17T11:08:00Z,u_0751_s01,ins_u_0751_004,{},v2.3.0-fixed +evt_001141,u_0360,profile_saved,2026-06-17T11:09:00Z,u_0360_s01,ins_u_0360_003,{},v2.3.0-fixed +evt_001142,u_0389,signup_started,2026-06-17T11:09:00Z,u_0389_s01,ins_u_0389_001,{},v2.3.0-fixed +evt_001143,u_0122,onboarding_completed,2026-06-17T11:10:00Z,u_0122_s01,ins_u_0122_006,"{""completed_at"": ""2026-06-17T11:20:00Z""}",v2.3.0-fixed +evt_001144,u_0360,error_shown,2026-06-17T11:10:00Z,u_0360_s01,ins_u_0360_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001145,u_0360,onboarding_step_viewed,2026-06-17T11:12:00Z,u_0360_s01,ins_u_0360_005,{},v2.3.0-fixed +evt_001146,u_0389,session_abandoned,2026-06-17T11:12:00Z,u_0389_s01,ins_u_0389_002,{},v2.3.0-fixed +evt_001147,u_0732,signup_started,2026-06-17T11:14:00Z,u_0732_s01,ins_u_0732_001,{},v2.3.0-fixed +evt_001148,u_0714,feature_used,2026-06-17T11:16:00Z,u_0714_s01,ins_u_0714_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001149,u_0744,profile_saved,2026-06-17T11:16:00Z,u_0744_s01,ins_u_0744_003,{},v2.3.0-fixed +evt_001150,u_0039,signup_started,2026-06-17T11:17:00Z,u_0039_s01,ins_u_0039_001,{},v2.3.0-fixed +evt_001151,u_0544,signup_started,2026-06-17T11:17:00Z,u_0544_s01,ins_u_0544_001,{},v2.3.0-fixed +evt_001152,u_0744,error_shown,2026-06-17T11:17:00Z,u_0744_s01,ins_u_0744_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001153,u_0732,signup_completed,2026-06-17T11:18:00Z,u_0732_s01,ins_u_0732_002,{},v2.3.0-fixed +evt_001154,u_0586,signup_started,2026-06-17T11:19:00Z,u_0586_s01,ins_u_0586_001,{},v2.3.0-fixed +evt_001155,u_0039,signup_completed,2026-06-17T11:20:00Z,u_0039_s01,ins_u_0039_002,{},v2.3.0-fixed +evt_001156,u_0113,activation_completed,2026-06-17T11:20:00Z,u_0113_s01,ins_u_0113_007,{},v2.3.0-fixed +evt_001157,u_0744,onboarding_step_viewed,2026-06-17T11:20:00Z,u_0744_s01,ins_u_0744_005,{},v2.3.0-fixed +evt_001158,u_0699,signup_started,2026-06-17T11:21:00Z,u_0699_s01,ins_u_0699_001,{},v2.3.0-fixed +evt_001159,u_0699,session_abandoned,2026-06-17T11:22:00Z,u_0699_s01,ins_u_0699_002,{},v2.3.0-fixed +evt_001160,u_0360,feature_used,2026-06-17T11:24:00Z,u_0360_s01,ins_u_0360_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_001161,u_0751,feature_used,2026-06-17T11:24:00Z,u_0751_s01,ins_u_0751_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001162,u_0753,signup_started,2026-06-17T11:24:00Z,u_0753_s01,ins_u_0753_001,{},v2.3.0-fixed +evt_001163,u_0039,profile_saved,2026-06-17T11:25:00Z,u_0039_s01,ins_u_0039_003,{},v2.3.0-fixed +evt_001164,u_0544,signup_completed,2026-06-17T11:25:00Z,u_0544_s01,ins_u_0544_002,{},v2.3.0-fixed +evt_001165,u_0586,signup_completed,2026-06-17T11:25:00Z,u_0586_s01,ins_u_0586_002,{},v2.3.0-fixed +evt_001166,u_0732,session_abandoned,2026-06-17T11:25:00Z,u_0732_s01,ins_u_0732_003,{},v2.3.0-fixed +evt_001167,u_0600,onboarding_completed,2026-06-17T11:26:00Z,u_0600_s01,ins_u_0600_006,"{""completed_at"": ""2026-06-17T11:20:00Z""}",v2.3.0-fixed +evt_001168,u_0586,profile_saved,2026-06-17T11:30:00Z,u_0586_s01,ins_u_0586_003,{},v2.3.0-fixed +evt_001169,u_0753,signup_completed,2026-06-17T11:30:00Z,u_0753_s01,ins_u_0753_002,{},v2.3.0-fixed +evt_001170,u_0714,onboarding_completed,2026-06-17T11:31:00Z,u_0714_s01,ins_u_0714_006,"{""completed_at"": ""2026-06-17T11:22:00Z""}",v2.3.0-fixed +evt_001171,u_0586,onboarding_step_viewed,2026-06-17T11:32:00Z,u_0586_s01,ins_u_0586_004,{},v2.3.0-fixed +evt_001172,u_0753,profile_saved,2026-06-17T11:34:00Z,u_0753_s01,ins_u_0753_003,{},v2.3.0-fixed +evt_001173,u_0544,profile_saved,2026-06-17T11:35:00Z,u_0544_s01,ins_u_0544_003,{},v2.3.0-fixed +evt_001174,u_0744,feature_used,2026-06-17T11:35:00Z,u_0744_s01,ins_u_0744_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_001175,u_0122,activation_completed,2026-06-17T11:37:00Z,u_0122_s01,ins_u_0122_007,{},v2.3.0-fixed +evt_001176,u_0360,onboarding_completed,2026-06-17T11:38:00Z,u_0360_s01,ins_u_0360_007,"{""completed_at"": ""2026-06-17T11:43:00Z""}",v2.3.0-fixed +evt_001177,u_0753,onboarding_step_viewed,2026-06-17T11:38:00Z,u_0753_s01,ins_u_0753_004,{},v2.3.0-fixed +evt_001178,u_0052,activation_completed,2026-06-17T11:41:00Z,u_0052_s01,ins_u_0052_005,{},v2.3.0-fixed +evt_001179,u_0544,onboarding_step_viewed,2026-06-17T11:41:00Z,u_0544_s01,ins_u_0544_004,{},v2.3.0-fixed +evt_001180,u_0586,feature_used,2026-06-17T11:43:00Z,u_0586_s01,ins_u_0586_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001181,u_0751,onboarding_completed,2026-06-17T11:44:00Z,u_0751_s01,ins_u_0751_006,"{""completed_at"": ""2026-06-17T11:37:00Z""}",v2.3.0-fixed +evt_001182,u_0595,signup_started,2026-06-17T11:53:00Z,u_0595_s01,ins_u_0595_001,{},v2.3.0-fixed +evt_001183,u_0744,onboarding_completed,2026-06-17T11:54:00Z,u_0744_s01,ins_u_0744_007,"{""completed_at"": ""2026-06-17T11:54:00Z""}",v2.3.0-fixed +evt_001184,u_0753,feature_used,2026-06-17T11:55:00Z,u_0753_s01,ins_u_0753_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001185,u_0595,signup_completed,2026-06-17T11:56:00Z,u_0595_s01,ins_u_0595_002,{},v2.3.0-fixed +evt_001186,u_0496,signup_started,2026-06-17T11:57:00Z,u_0496_s01,ins_u_0496_001,{},v2.3.0-fixed +evt_001187,u_0360,activation_completed,2026-06-17T11:59:00Z,u_0360_s01,ins_u_0360_008,{},v2.3.0-fixed +evt_001188,u_0039,onboarding_completed,2026-06-17T12:03:00Z,u_0039_s01,ins_u_0039_004,"{""completed_at"": ""2026-06-17T12:03:00Z""}",v2.3.0-fixed +evt_001189,u_0496,signup_completed,2026-06-17T12:03:00Z,u_0496_s01,ins_u_0496_002,{},v2.3.0-fixed +evt_001190,u_0595,profile_saved,2026-06-17T12:05:00Z,u_0595_s01,ins_u_0595_003,{},v2.3.0-fixed +evt_001191,u_0595,onboarding_step_viewed,2026-06-17T12:07:00Z,u_0595_s01,ins_u_0595_004,{},v2.3.0-fixed +evt_001192,u_0159,signup_started,2026-06-17T12:12:00Z,u_0159_s01,ins_u_0159_001,{},v2.3.0-fixed +evt_001193,u_0496,profile_saved,2026-06-17T12:12:00Z,u_0496_s01,ins_u_0496_003,{},v2.3.0-fixed +evt_001194,u_0600,activation_completed,2026-06-17T12:13:00Z,u_0600_s01,ins_u_0600_007,{},v2.3.0-fixed +evt_001195,u_0744,activation_completed,2026-06-17T12:13:00Z,u_0744_s01,ins_u_0744_008,{},v2.3.0-fixed +evt_001196,u_0496,onboarding_step_viewed,2026-06-17T12:15:00Z,u_0496_s01,ins_u_0496_004,{},v2.3.0-fixed +evt_001197,u_0753,onboarding_completed,2026-06-17T12:16:00Z,u_0753_s01,ins_u_0753_006,"{""completed_at"": ""2026-06-17T12:06:00Z""}",v2.3.0-fixed +evt_001198,u_0544,onboarding_completed,2026-06-17T12:17:00Z,u_0544_s01,ins_u_0544_005,"{""completed_at"": ""2026-06-17T12:08:00Z""}",v2.3.0-fixed +evt_001199,u_0159,session_abandoned,2026-06-17T12:20:00Z,u_0159_s01,ins_u_0159_002,{},v2.3.0-fixed +evt_001200,u_0160,signup_started,2026-06-17T12:25:00Z,u_0160_s01,ins_u_0160_001,{},v2.3.0-fixed +evt_001201,u_0039,activation_completed,2026-06-17T12:26:00Z,u_0039_s01,ins_u_0039_005,{},v2.3.0-fixed +evt_001202,u_0160,signup_completed,2026-06-17T12:27:00Z,u_0160_s01,ins_u_0160_002,{},v2.3.0-fixed +evt_001203,u_0496,feature_used,2026-06-17T12:31:00Z,u_0496_s01,ins_u_0496_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001204,u_0160,session_abandoned,2026-06-17T12:33:00Z,u_0160_s01,ins_u_0160_003,{},v2.3.0-fixed +evt_001205,u_0084,signup_started,2026-06-17T12:34:00Z,u_0084_s01,ins_u_0084_001,{},v2.3.0-fixed +evt_001206,u_0476,signup_started,2026-06-17T12:34:00Z,u_0476_s01,ins_u_0476_001,{},v2.3.0-fixed +evt_001207,u_0595,onboarding_completed,2026-06-17T12:34:00Z,u_0595_s01,ins_u_0595_005,"{""completed_at"": ""2026-06-17T12:45:00Z""}",v2.3.0-fixed +evt_001208,u_0476,session_abandoned,2026-06-17T12:35:00Z,u_0476_s01,ins_u_0476_002,{},v2.3.0-fixed +evt_001209,u_0084,signup_completed,2026-06-17T12:38:00Z,u_0084_s01,ins_u_0084_002,{},v2.3.0-fixed +evt_001210,u_0544,activation_completed,2026-06-17T12:40:00Z,u_0544_s01,ins_u_0544_006,{},v2.3.0-fixed +evt_001211,u_0271,signup_started,2026-06-17T12:41:00Z,u_0271_s01,ins_u_0271_001,{},v2.3.0-fixed +evt_001212,u_0084,session_abandoned,2026-06-17T12:42:00Z,u_0084_s01,ins_u_0084_003,{},v2.3.0-fixed +evt_001213,u_0496,onboarding_completed,2026-06-17T12:42:00Z,u_0496_s01,ins_u_0496_006,"{""completed_at"": ""2026-06-17T12:45:00Z""}",v2.3.0-fixed +evt_001214,u_0246,signup_started,2026-06-17T12:49:00Z,u_0246_s01,ins_u_0246_001,{},v2.3.0-fixed +evt_001215,u_0271,signup_completed,2026-06-17T12:49:00Z,u_0271_s01,ins_u_0271_002,{},v2.3.0-fixed +evt_001216,u_0753,activation_completed,2026-06-17T12:51:00Z,u_0753_s01,ins_u_0753_007,{},v2.3.0-fixed +evt_001217,u_0210,signup_started,2026-06-17T12:52:00Z,u_0210_s01,ins_u_0210_001,{},v2.3.0-fixed +evt_001218,u_0246,signup_completed,2026-06-17T12:52:00Z,u_0246_s01,ins_u_0246_002,{},v2.3.0-fixed +evt_001219,u_0210,signup_completed,2026-06-17T12:54:00Z,u_0210_s01,ins_u_0210_002,{},v2.3.0-fixed +evt_001220,u_0595,activation_completed,2026-06-17T12:54:00Z,u_0595_s01,ins_u_0595_006,{},v2.3.0-fixed +evt_001221,u_0246,profile_saved,2026-06-17T12:55:00Z,u_0246_s01,ins_u_0246_003,{},v2.3.0-fixed +evt_001222,u_0210,profile_saved,2026-06-17T12:56:00Z,u_0210_s01,ins_u_0210_003,{},v2.3.0-fixed +evt_001223,u_0246,error_shown,2026-06-17T12:56:00Z,u_0246_s01,ins_u_0246_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001224,u_0590,signup_started,2026-06-17T12:56:00Z,u_0590_s01,ins_u_0590_001,{},v2.3.0-fixed +evt_001225,u_0271,profile_saved,2026-06-17T12:57:00Z,u_0271_s01,ins_u_0271_003,{},v2.3.0-fixed +evt_001226,u_0210,onboarding_step_viewed,2026-06-17T12:58:00Z,u_0210_s01,ins_u_0210_004,{},v2.3.0-fixed +evt_001227,u_0335,signup_started,2026-06-17T12:59:00Z,u_0335_s01,ins_u_0335_001,{},v2.3.0-fixed +evt_001228,u_0246,onboarding_step_viewed,2026-06-17T13:00:00Z,u_0246_s01,ins_u_0246_005,{},v2.3.0-fixed +evt_001229,u_0271,onboarding_step_viewed,2026-06-17T13:01:00Z,u_0271_s01,ins_u_0271_004,{},v2.3.0-fixed +evt_001230,u_0590,signup_completed,2026-06-17T13:01:00Z,u_0590_s01,ins_u_0590_002,{},v2.3.0-fixed +evt_001231,u_0335,signup_completed,2026-06-17T13:02:00Z,u_0335_s01,ins_u_0335_002,{},v2.3.0-fixed +evt_001232,u_0199,signup_started,2026-06-17T13:04:00Z,u_0199_s01,ins_u_0199_001,{},v2.3.0-fixed +evt_001233,u_0335,profile_saved,2026-06-17T13:04:00Z,u_0335_s01,ins_u_0335_003,{},v2.3.0-fixed +evt_001234,u_0496,activation_completed,2026-06-17T13:05:00Z,u_0496_s01,ins_u_0496_007,{},v2.3.0-fixed +evt_001235,u_0335,onboarding_step_viewed,2026-06-17T13:07:00Z,u_0335_s01,ins_u_0335_004,{},v2.3.0-fixed +evt_001236,u_0590,profile_saved,2026-06-17T13:11:00Z,u_0590_s01,ins_u_0590_003,{},v2.3.0-fixed +evt_001237,u_0199,signup_completed,2026-06-17T13:12:00Z,u_0199_s01,ins_u_0199_002,{},v2.3.0-fixed +evt_001238,u_0210,feature_used,2026-06-17T13:14:00Z,u_0210_s01,ins_u_0210_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001239,u_0590,onboarding_step_viewed,2026-06-17T13:16:00Z,u_0590_s01,ins_u_0590_004,{},v2.3.0-fixed +evt_001240,u_0213,signup_started,2026-06-17T13:17:00Z,u_0213_s01,ins_u_0213_001,{},v2.3.0-fixed +evt_001241,u_0477,signup_started,2026-06-17T13:18:00Z,u_0477_s01,ins_u_0477_001,{},v2.3.0-fixed +evt_001242,u_0199,session_abandoned,2026-06-17T13:20:00Z,u_0199_s01,ins_u_0199_003,{},v2.3.0-fixed +evt_001243,u_0477,session_abandoned,2026-06-17T13:20:00Z,u_0477_s01,ins_u_0477_002,{},v2.3.0-fixed +evt_001244,u_0671,signup_started,2026-06-17T13:22:00Z,u_0671_s01,ins_u_0671_001,{},v2.3.0-fixed +evt_001245,u_0213,signup_completed,2026-06-17T13:23:00Z,u_0213_s01,ins_u_0213_002,{},v2.3.0-fixed +evt_001246,u_0590,feature_used,2026-06-17T13:23:00Z,u_0590_s01,ins_u_0590_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001247,u_0271,onboarding_completed,2026-06-17T13:24:00Z,u_0271_s01,ins_u_0271_005,"{""completed_at"": ""2026-06-17T13:31:00Z""}",v2.3.0-fixed +evt_001248,u_0352,signup_started,2026-06-17T13:25:00Z,u_0352_s01,ins_u_0352_001,{},v2.3.0-fixed +evt_001249,u_0335,feature_used,2026-06-17T13:28:00Z,u_0335_s01,ins_u_0335_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001250,u_0352,signup_completed,2026-06-17T13:29:00Z,u_0352_s01,ins_u_0352_002,{},v2.3.0-fixed +evt_001251,u_0210,onboarding_completed,2026-06-17T13:30:00Z,u_0210_s01,ins_u_0210_006,"{""completed_at"": ""2026-06-17T13:23:00Z""}",v2.3.0-fixed +evt_001252,u_0341,signup_started,2026-06-17T13:30:00Z,u_0341_s01,ins_u_0341_001,{},v2.3.0-fixed +evt_001253,u_0671,session_abandoned,2026-06-17T13:30:00Z,u_0671_s01,ins_u_0671_002,{},v2.3.0-fixed +evt_001254,u_0213,session_abandoned,2026-06-17T13:31:00Z,u_0213_s01,ins_u_0213_003,{},v2.3.0-fixed +evt_001255,u_0352,profile_saved,2026-06-17T13:33:00Z,u_0352_s01,ins_u_0352_003,{},v2.3.0-fixed +evt_001256,u_0015,signup_started,2026-06-17T13:37:00Z,u_0015_s01,ins_u_0015_001,{},v2.3.0-fixed +evt_001257,u_0246,onboarding_completed,2026-06-17T13:37:00Z,u_0246_s01,ins_u_0246_006,"{""completed_at"": ""2026-06-17T13:28:00Z""}",v2.3.0-fixed +evt_001258,u_0341,signup_completed,2026-06-17T13:37:00Z,u_0341_s01,ins_u_0341_002,{},v2.3.0-fixed +evt_001259,u_0352,onboarding_step_viewed,2026-06-17T13:38:00Z,u_0352_s01,ins_u_0352_004,{},v2.3.0-fixed +evt_001260,u_0335,onboarding_completed,2026-06-17T13:40:00Z,u_0335_s01,ins_u_0335_006,"{""completed_at"": ""2026-06-17T13:43:00Z""}",v2.3.0-fixed +evt_001261,u_0015,signup_completed,2026-06-17T13:42:00Z,u_0015_s01,ins_u_0015_002,{},v2.3.0-fixed +evt_001262,u_0590,onboarding_completed,2026-06-17T13:42:00Z,u_0590_s01,ins_u_0590_006,"{""completed_at"": ""2026-06-17T13:43:00Z""}",v2.3.0-fixed +evt_001263,u_0341,session_abandoned,2026-06-17T13:43:00Z,u_0341_s01,ins_u_0341_003,{},v2.3.0-fixed +evt_001264,u_0015,profile_saved,2026-06-17T13:47:00Z,u_0015_s01,ins_u_0015_003,{},v2.3.0-fixed +evt_001265,u_0352,feature_used,2026-06-17T13:48:00Z,u_0352_s01,ins_u_0352_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001266,u_0015,onboarding_step_viewed,2026-06-17T13:51:00Z,u_0015_s01,ins_u_0015_004,{},v2.3.0-fixed +evt_001267,u_0621,signup_started,2026-06-17T13:54:00Z,u_0621_s01,ins_u_0621_001,{},v2.3.0-fixed +evt_001268,u_0271,activation_completed,2026-06-17T13:57:00Z,u_0271_s01,ins_u_0271_006,{},v2.3.0-fixed +evt_001269,u_0232,signup_started,2026-06-17T13:59:00Z,u_0232_s01,ins_u_0232_001,{},v2.3.0-fixed +evt_001270,u_0210,activation_completed,2026-06-17T14:00:00Z,u_0210_s01,ins_u_0210_007,{},v2.3.0-fixed +evt_001271,u_0596,signup_started,2026-06-17T14:00:00Z,u_0596_s01,ins_u_0596_001,{},v2.3.0-fixed +evt_001272,u_0232,session_abandoned,2026-06-17T14:01:00Z,u_0232_s01,ins_u_0232_002,{},v2.3.0-fixed +evt_001273,u_0621,signup_completed,2026-06-17T14:02:00Z,u_0621_s01,ins_u_0621_002,{},v2.3.0-fixed +evt_001274,u_0015,feature_used,2026-06-17T14:04:00Z,u_0015_s01,ins_u_0015_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001275,u_0596,signup_completed,2026-06-17T14:07:00Z,u_0596_s01,ins_u_0596_002,{},v2.3.0-fixed +evt_001276,u_0590,activation_completed,2026-06-17T14:08:00Z,u_0590_s01,ins_u_0590_007,{},v2.3.0-fixed +evt_001277,u_0592,signup_started,2026-06-17T14:08:00Z,u_0592_s01,ins_u_0592_001,{},v2.3.0-fixed +evt_001278,u_0104,signup_started,2026-06-17T14:09:00Z,u_0104_s01,ins_u_0104_001,{},v2.3.0-fixed +evt_001279,u_0621,profile_saved,2026-06-17T14:09:00Z,u_0621_s01,ins_u_0621_003,{},v2.3.0-fixed +evt_001280,u_0621,onboarding_step_viewed,2026-06-17T14:12:00Z,u_0621_s01,ins_u_0621_004,{},v2.3.0-fixed +evt_001281,u_0592,signup_completed,2026-06-17T14:13:00Z,u_0592_s01,ins_u_0592_002,{},v2.3.0-fixed +evt_001282,u_0596,profile_saved,2026-06-17T14:14:00Z,u_0596_s01,ins_u_0596_003,{},v2.3.0-fixed +evt_001283,u_0207,signup_started,2026-06-17T14:15:00Z,u_0207_s01,ins_u_0207_001,{},v2.3.0-fixed +evt_001284,u_0104,signup_completed,2026-06-17T14:16:00Z,u_0104_s01,ins_u_0104_002,{},v2.3.0-fixed +evt_001285,u_0514,signup_started,2026-06-17T14:16:00Z,u_0514_s01,ins_u_0514_001,{},v2.3.0-fixed +evt_001286,u_0596,onboarding_step_viewed,2026-06-17T14:16:00Z,u_0596_s01,ins_u_0596_004,{},v2.3.0-fixed +evt_001287,u_0207,session_abandoned,2026-06-17T14:17:00Z,u_0207_s01,ins_u_0207_002,{},v2.3.0-fixed +evt_001288,u_0352,onboarding_completed,2026-06-17T14:18:00Z,u_0352_s01,ins_u_0352_006,"{""completed_at"": ""2026-06-17T14:07:00Z""}",v2.3.0-fixed +evt_001289,u_0592,session_abandoned,2026-06-17T14:18:00Z,u_0592_s01,ins_u_0592_003,{},v2.3.0-fixed +evt_001290,u_0514,signup_completed,2026-06-17T14:22:00Z,u_0514_s01,ins_u_0514_002,{},v2.3.0-fixed +evt_001291,u_0015,onboarding_completed,2026-06-17T14:26:00Z,u_0015_s01,ins_u_0015_006,"{""completed_at"": ""2026-06-17T14:21:00Z""}",v2.3.0-fixed +evt_001292,u_0104,profile_saved,2026-06-17T14:26:00Z,u_0104_s01,ins_u_0104_003,{},v2.3.0-fixed +evt_001293,u_0514,profile_saved,2026-06-17T14:28:00Z,u_0514_s01,ins_u_0514_003,{},v2.3.0-fixed +evt_001294,u_0514,onboarding_step_viewed,2026-06-17T14:32:00Z,u_0514_s01,ins_u_0514_004,{},v2.3.0-fixed +evt_001295,u_0581,signup_started,2026-06-17T14:32:00Z,u_0581_s01,ins_u_0581_001,{},v2.3.0-fixed +evt_001296,u_0585,signup_started,2026-06-17T14:34:00Z,u_0585_s01,ins_u_0585_001,{},v2.3.0-fixed +evt_001297,u_0334,signup_started,2026-06-17T14:38:00Z,u_0334_s01,ins_u_0334_001,{},v2.3.0-fixed +evt_001298,u_0566,signup_started,2026-06-17T14:39:00Z,u_0566_s01,ins_u_0566_001,{},v2.3.0-fixed +evt_001299,u_0581,signup_completed,2026-06-17T14:39:00Z,u_0581_s01,ins_u_0581_002,{},v2.3.0-fixed +evt_001300,u_0754,signup_started,2026-06-17T14:40:00Z,u_0754_s01,ins_u_0754_001,{},v2.3.0-fixed +evt_001301,u_0566,session_abandoned,2026-06-17T14:42:00Z,u_0566_s01,ins_u_0566_002,{},v2.3.0-fixed +evt_001302,u_0585,signup_completed,2026-06-17T14:42:00Z,u_0585_s01,ins_u_0585_002,{},v2.3.0-fixed +evt_001303,u_0334,signup_completed,2026-06-17T14:45:00Z,u_0334_s01,ins_u_0334_002,{},v2.3.0-fixed +evt_001304,u_0754,signup_completed,2026-06-17T14:45:00Z,u_0754_s01,ins_u_0754_002,{},v2.3.0-fixed +evt_001305,u_0581,session_abandoned,2026-06-17T14:46:00Z,u_0581_s01,ins_u_0581_003,{},v2.3.0-fixed +evt_001306,u_0596,onboarding_completed,2026-06-17T14:46:00Z,u_0596_s01,ins_u_0596_005,"{""completed_at"": ""2026-06-17T14:46:00Z""}",v2.3.0-fixed +evt_001307,u_0585,profile_saved,2026-06-17T14:48:00Z,u_0585_s01,ins_u_0585_003,{},v2.3.0-fixed +evt_001308,u_0334,profile_saved,2026-06-17T14:50:00Z,u_0334_s01,ins_u_0334_003,{},v2.3.0-fixed +evt_001309,u_0585,onboarding_step_viewed,2026-06-17T14:50:00Z,u_0585_s01,ins_u_0585_004,{},v2.3.0-fixed +evt_001310,u_0754,profile_saved,2026-06-17T14:50:00Z,u_0754_s01,ins_u_0754_003,{},v2.3.0-fixed +evt_001311,u_0492,signup_started,2026-06-17T14:51:00Z,u_0492_s01,ins_u_0492_001,{},v2.3.0-fixed +evt_001312,u_0492,signup_completed,2026-06-17T14:52:00Z,u_0492_s01,ins_u_0492_002,{},v2.3.0-fixed +evt_001313,u_0514,feature_used,2026-06-17T14:52:00Z,u_0514_s01,ins_u_0514_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001314,u_0717,signup_started,2026-06-17T14:52:00Z,u_0717_s01,ins_u_0717_001,{},v2.3.0-fixed +evt_001315,u_0281,signup_started,2026-06-17T14:54:00Z,u_0281_s01,ins_u_0281_001,{},v2.3.0-fixed +evt_001316,u_0334,onboarding_step_viewed,2026-06-17T14:54:00Z,u_0334_s01,ins_u_0334_004,{},v2.3.0-fixed +evt_001317,u_0759,signup_started,2026-06-17T14:54:00Z,u_0759_s01,ins_u_0759_001,{},v2.3.0-fixed +evt_001318,u_0025,signup_started,2026-06-17T14:56:00Z,u_0025_s01,ins_u_0025_001,{},v2.3.0-fixed +evt_001319,u_0025,session_abandoned,2026-06-17T14:57:00Z,u_0025_s01,ins_u_0025_002,{},v2.3.0-fixed +evt_001320,u_0220,signup_started,2026-06-17T14:57:00Z,u_0220_s01,ins_u_0220_001,{},v2.3.0-fixed +evt_001321,u_0778,signup_started,2026-06-17T14:57:00Z,u_0778_s01,ins_u_0778_001,{},v2.3.0-fixed +evt_001322,u_0281,signup_completed,2026-06-17T14:58:00Z,u_0281_s01,ins_u_0281_002,{},v2.3.0-fixed +evt_001323,u_0492,session_abandoned,2026-06-17T14:58:00Z,u_0492_s01,ins_u_0492_003,{},v2.3.0-fixed +evt_001324,u_0754,feature_used,2026-06-17T14:58:00Z,u_0754_s01,ins_u_0754_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_001325,u_0717,signup_completed,2026-06-17T14:59:00Z,u_0717_s01,ins_u_0717_002,{},v2.3.0-fixed +evt_001326,u_0104,onboarding_completed,2026-06-17T15:00:00Z,u_0104_s01,ins_u_0104_004,"{""completed_at"": ""2026-06-17T14:52:00Z""}",v2.3.0-fixed +evt_001327,u_0759,session_abandoned,2026-06-17T15:00:00Z,u_0759_s01,ins_u_0759_002,{},v2.3.0-fixed +evt_001328,u_0538,signup_started,2026-06-17T15:01:00Z,u_0538_s01,ins_u_0538_001,{},v2.3.0-fixed +evt_001329,u_0015,activation_completed,2026-06-17T15:02:00Z,u_0015_s01,ins_u_0015_007,{},v2.3.0-fixed +evt_001330,u_0788,signup_started,2026-06-17T15:03:00Z,u_0788_s01,ins_u_0788_001,{},v2.3.0-fixed +evt_001331,u_0220,session_abandoned,2026-06-17T15:04:00Z,u_0220_s01,ins_u_0220_002,{},v2.3.0-fixed +evt_001332,u_0538,signup_completed,2026-06-17T15:04:00Z,u_0538_s01,ins_u_0538_002,{},v2.3.0-fixed +evt_001333,u_0717,session_abandoned,2026-06-17T15:04:00Z,u_0717_s01,ins_u_0717_003,{},v2.3.0-fixed +evt_001334,u_0778,signup_completed,2026-06-17T15:05:00Z,u_0778_s01,ins_u_0778_002,{},v2.3.0-fixed +evt_001335,u_0281,profile_saved,2026-06-17T15:06:00Z,u_0281_s01,ins_u_0281_003,{},v2.3.0-fixed +evt_001336,u_0651,signup_started,2026-06-17T15:06:00Z,u_0651_s01,ins_u_0651_001,{},v2.3.0-fixed +evt_001337,u_0281,error_shown,2026-06-17T15:07:00Z,u_0281_s01,ins_u_0281_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001338,u_0281,onboarding_step_viewed,2026-06-17T15:08:00Z,u_0281_s01,ins_u_0281_005,{},v2.3.0-fixed +evt_001339,u_0538,profile_saved,2026-06-17T15:08:00Z,u_0538_s01,ins_u_0538_003,{},v2.3.0-fixed +evt_001340,u_0596,activation_completed,2026-06-17T15:09:00Z,u_0596_s01,ins_u_0596_006,{},v2.3.0-fixed +evt_001341,u_0678,signup_started,2026-06-17T15:10:00Z,u_0678_s01,ins_u_0678_001,{},v2.3.0-fixed +evt_001342,u_0334,feature_used,2026-06-17T15:11:00Z,u_0334_s01,ins_u_0334_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001343,u_0788,signup_completed,2026-06-17T15:11:00Z,u_0788_s01,ins_u_0788_002,{},v2.3.0-fixed +evt_001344,u_0651,signup_completed,2026-06-17T15:12:00Z,u_0651_s01,ins_u_0651_002,{},v2.3.0-fixed +evt_001345,u_0778,profile_saved,2026-06-17T15:12:00Z,u_0778_s01,ins_u_0778_003,{},v2.3.0-fixed +evt_001346,u_0538,onboarding_step_viewed,2026-06-17T15:14:00Z,u_0538_s01,ins_u_0538_004,{},v2.3.0-fixed +evt_001347,u_0678,session_abandoned,2026-06-17T15:14:00Z,u_0678_s01,ins_u_0678_002,{},v2.3.0-fixed +evt_001348,u_0763,signup_started,2026-06-17T15:15:00Z,u_0763_s01,ins_u_0763_001,{},v2.3.0-fixed +evt_001349,u_0788,profile_saved,2026-06-17T15:16:00Z,u_0788_s01,ins_u_0788_003,{},v2.3.0-fixed +evt_001350,u_0788,error_shown,2026-06-17T15:17:00Z,u_0788_s01,ins_u_0788_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001351,u_0778,onboarding_step_viewed,2026-06-17T15:18:00Z,u_0778_s01,ins_u_0778_004,{},v2.3.0-fixed +evt_001352,u_0763,signup_completed,2026-06-17T15:20:00Z,u_0763_s01,ins_u_0763_002,{},v2.3.0-fixed +evt_001353,u_0788,onboarding_step_viewed,2026-06-17T15:20:00Z,u_0788_s01,ins_u_0788_005,{},v2.3.0-fixed +evt_001354,u_0651,profile_saved,2026-06-17T15:21:00Z,u_0651_s01,ins_u_0651_003,{},v2.3.0-fixed +evt_001355,u_0334,onboarding_completed,2026-06-17T15:23:00Z,u_0334_s01,ins_u_0334_006,"{""completed_at"": ""2026-06-17T15:18:00Z""}",v2.3.0-fixed +evt_001356,u_0651,onboarding_step_viewed,2026-06-17T15:25:00Z,u_0651_s01,ins_u_0651_004,{},v2.3.0-fixed +evt_001357,u_0792,signup_started,2026-06-17T15:25:00Z,u_0792_s01,ins_u_0792_001,{},v2.3.0-fixed +evt_001358,u_0763,profile_saved,2026-06-17T15:26:00Z,u_0763_s01,ins_u_0763_003,{},v2.3.0-fixed +evt_001359,u_0754,onboarding_completed,2026-06-17T15:28:00Z,u_0754_s01,ins_u_0754_005,"{""completed_at"": ""2026-06-17T15:30:00Z""}",v2.3.0-fixed +evt_001360,u_0763,onboarding_step_viewed,2026-06-17T15:29:00Z,u_0763_s01,ins_u_0763_004,{},v2.3.0-fixed +evt_001361,u_0778,feature_used,2026-06-17T15:29:00Z,u_0778_s01,ins_u_0778_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001362,u_0538,feature_used,2026-06-17T15:30:00Z,u_0538_s01,ins_u_0538_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001363,u_0202,signup_started,2026-06-17T15:32:00Z,u_0202_s01,ins_u_0202_001,{},v2.3.0-fixed +evt_001364,u_0792,signup_completed,2026-06-17T15:33:00Z,u_0792_s01,ins_u_0792_002,{},v2.3.0-fixed +evt_001365,u_0071,signup_started,2026-06-17T15:35:00Z,u_0071_s01,ins_u_0071_001,{},v2.3.0-fixed +evt_001366,u_0585,activation_completed,2026-06-17T15:35:00Z,u_0585_s01,ins_u_0585_005,{},v2.3.0-fixed +evt_001367,u_0651,feature_used,2026-06-17T15:36:00Z,u_0651_s01,ins_u_0651_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001368,u_0792,profile_saved,2026-06-17T15:38:00Z,u_0792_s01,ins_u_0792_003,{},v2.3.0-fixed +evt_001369,u_0104,activation_completed,2026-06-17T15:39:00Z,u_0104_s01,ins_u_0104_005,{},v2.3.0-fixed +evt_001370,u_0538,onboarding_completed,2026-06-17T15:39:00Z,u_0538_s01,ins_u_0538_006,"{""completed_at"": ""2026-06-17T15:47:00Z""}",v2.3.0-fixed +evt_001371,u_0071,session_abandoned,2026-06-17T15:40:00Z,u_0071_s01,ins_u_0071_002,{},v2.3.0-fixed +evt_001372,u_0202,signup_completed,2026-06-17T15:40:00Z,u_0202_s01,ins_u_0202_002,{},v2.3.0-fixed +evt_001373,u_0334,activation_completed,2026-06-17T15:41:00Z,u_0334_s01,ins_u_0334_007,{},v2.3.0-fixed +evt_001374,u_0694,signup_started,2026-06-17T15:42:00Z,u_0694_s01,ins_u_0694_001,{},v2.3.0-fixed +evt_001375,u_0778,onboarding_completed,2026-06-17T15:42:00Z,u_0778_s01,ins_u_0778_006,"{""completed_at"": ""2026-06-17T15:51:00Z""}",v2.3.0-fixed +evt_001376,u_0788,onboarding_completed,2026-06-17T15:42:00Z,u_0788_s01,ins_u_0788_006,"{""completed_at"": ""2026-06-17T15:47:00Z""}",v2.3.0-fixed +evt_001377,u_0792,onboarding_step_viewed,2026-06-17T15:42:00Z,u_0792_s01,ins_u_0792_004,{},v2.3.0-fixed +evt_001378,u_0763,feature_used,2026-06-17T15:44:00Z,u_0763_s01,ins_u_0763_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001379,u_0694,signup_completed,2026-06-17T15:46:00Z,u_0694_s01,ins_u_0694_002,{},v2.3.0-fixed +evt_001380,u_0202,session_abandoned,2026-06-17T15:47:00Z,u_0202_s01,ins_u_0202_003,{},v2.3.0-fixed +evt_001381,u_0694,session_abandoned,2026-06-17T15:51:00Z,u_0694_s01,ins_u_0694_003,{},v2.3.0-fixed +evt_001382,u_0771,signup_started,2026-06-17T15:52:00Z,u_0771_s01,ins_u_0771_001,{},v2.3.0-fixed +evt_001383,u_0651,onboarding_completed,2026-06-17T15:55:00Z,u_0651_s01,ins_u_0651_006,"{""completed_at"": ""2026-06-17T16:01:00Z""}",v2.3.0-fixed +evt_001384,u_0763,onboarding_completed,2026-06-17T15:57:00Z,u_0763_s01,ins_u_0763_006,"{""completed_at"": ""2026-06-17T16:01:00Z""}",v2.3.0-fixed +evt_001385,u_0792,feature_used,2026-06-17T15:59:00Z,u_0792_s01,ins_u_0792_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001386,u_0771,signup_completed,2026-06-17T16:00:00Z,u_0771_s01,ins_u_0771_002,{},v2.3.0-fixed +evt_001387,u_0771,session_abandoned,2026-06-17T16:04:00Z,u_0771_s01,ins_u_0771_003,{},v2.3.0-fixed +evt_001388,u_0538,activation_completed,2026-06-17T16:05:00Z,u_0538_s01,ins_u_0538_007,{},v2.3.0-fixed +evt_001389,u_0768,signup_started,2026-06-17T16:06:00Z,u_0768_s01,ins_u_0768_001,{},v2.3.0-fixed +evt_001390,u_0169,signup_started,2026-06-17T16:08:00Z,u_0169_s01,ins_u_0169_001,{},v2.3.0-fixed +evt_001391,u_0768,signup_completed,2026-06-17T16:09:00Z,u_0768_s01,ins_u_0768_002,{},v2.3.0-fixed +evt_001392,u_0169,signup_completed,2026-06-17T16:11:00Z,u_0169_s01,ins_u_0169_002,{},v2.3.0-fixed +evt_001393,u_0768,profile_saved,2026-06-17T16:11:00Z,u_0768_s01,ins_u_0768_003,{},v2.3.0-fixed +evt_001394,u_0792,onboarding_completed,2026-06-17T16:13:00Z,u_0792_s01,ins_u_0792_006,"{""completed_at"": ""2026-06-17T16:16:00Z""}",v2.3.0-fixed +evt_001395,u_0169,profile_saved,2026-06-17T16:14:00Z,u_0169_s01,ins_u_0169_003,{},v2.3.0-fixed +evt_001396,u_0169,error_shown,2026-06-17T16:15:00Z,u_0169_s01,ins_u_0169_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001397,u_0169,onboarding_step_viewed,2026-06-17T16:16:00Z,u_0169_s01,ins_u_0169_005,{},v2.3.0-fixed +evt_001398,u_0768,onboarding_step_viewed,2026-06-17T16:16:00Z,u_0768_s01,ins_u_0768_004,{},v2.3.0-fixed +evt_001399,u_0392,signup_started,2026-06-17T16:18:00Z,u_0392_s01,ins_u_0392_001,{},v2.3.0-fixed +evt_001400,u_0610,signup_started,2026-06-17T16:19:00Z,u_0610_s01,ins_u_0610_001,{},v2.3.0-fixed +evt_001401,u_0768,feature_used,2026-06-17T16:21:00Z,u_0768_s01,ins_u_0768_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001402,u_0068,signup_started,2026-06-17T16:22:00Z,u_0068_s01,ins_u_0068_001,{},v2.3.0-fixed +evt_001403,u_0610,signup_completed,2026-06-17T16:22:00Z,u_0610_s01,ins_u_0610_002,{},v2.3.0-fixed +evt_001404,u_0443,signup_started,2026-06-17T16:23:00Z,u_0443_s01,ins_u_0443_001,{},v2.3.0-fixed +evt_001405,u_0196,signup_started,2026-06-17T16:24:00Z,u_0196_s01,ins_u_0196_001,{},v2.3.0-fixed +evt_001406,u_0392,signup_completed,2026-06-17T16:25:00Z,u_0392_s01,ins_u_0392_002,{},v2.3.0-fixed +evt_001407,u_0443,signup_completed,2026-06-17T16:25:00Z,u_0443_s01,ins_u_0443_002,{},v2.3.0-fixed +evt_001408,u_0788,activation_completed,2026-06-17T16:25:00Z,u_0788_s01,ins_u_0788_007,{},v2.3.0-fixed +evt_001409,u_0792,activation_completed,2026-06-17T16:27:00Z,u_0792_s01,ins_u_0792_007,{},v2.3.0-fixed +evt_001410,u_0060,signup_started,2026-06-17T16:28:00Z,u_0060_s01,ins_u_0060_001,{},v2.3.0-fixed +evt_001411,u_0443,session_abandoned,2026-06-17T16:29:00Z,u_0443_s01,ins_u_0443_003,{},v2.3.0-fixed +evt_001412,u_0068,signup_completed,2026-06-17T16:30:00Z,u_0068_s01,ins_u_0068_002,{},v2.3.0-fixed +evt_001413,u_0328,signup_started,2026-06-17T16:30:00Z,u_0328_s01,ins_u_0328_001,{},v2.3.0-fixed +evt_001414,u_0392,session_abandoned,2026-06-17T16:30:00Z,u_0392_s01,ins_u_0392_003,{},v2.3.0-fixed +evt_001415,u_0191,signup_started,2026-06-17T16:31:00Z,u_0191_s01,ins_u_0191_001,{},v2.3.0-fixed +evt_001416,u_0196,signup_completed,2026-06-17T16:31:00Z,u_0196_s01,ins_u_0196_002,{},v2.3.0-fixed +evt_001417,u_0328,signup_completed,2026-06-17T16:31:00Z,u_0328_s01,ins_u_0328_002,{},v2.3.0-fixed +evt_001418,u_0610,profile_saved,2026-06-17T16:31:00Z,u_0610_s01,ins_u_0610_003,{},v2.3.0-fixed +evt_001419,u_0651,activation_completed,2026-06-17T16:31:00Z,u_0651_s01,ins_u_0651_007,{},v2.3.0-fixed +evt_001420,u_0060,signup_completed,2026-06-17T16:33:00Z,u_0060_s01,ins_u_0060_002,{},v2.3.0-fixed +evt_001421,u_0169,feature_used,2026-06-17T16:33:00Z,u_0169_s01,ins_u_0169_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001422,u_0191,signup_completed,2026-06-17T16:33:00Z,u_0191_s01,ins_u_0191_002,{},v2.3.0-fixed +evt_001423,u_0229,signup_started,2026-06-17T16:34:00Z,u_0229_s01,ins_u_0229_001,{},v2.3.0-fixed +evt_001424,u_0328,profile_saved,2026-06-17T16:34:00Z,u_0328_s01,ins_u_0328_003,{},v2.3.0-fixed +evt_001425,u_0229,signup_completed,2026-06-17T16:35:00Z,u_0229_s01,ins_u_0229_002,{},v2.3.0-fixed +evt_001426,u_0610,onboarding_step_viewed,2026-06-17T16:35:00Z,u_0610_s01,ins_u_0610_004,{},v2.3.0-fixed +evt_001427,u_0093,signup_started,2026-06-17T16:36:00Z,u_0093_s01,ins_u_0093_001,{},v2.3.0-fixed +evt_001428,u_0486,signup_started,2026-06-17T16:36:00Z,u_0486_s01,ins_u_0486_001,{},v2.3.0-fixed +evt_001429,u_0763,activation_completed,2026-06-17T16:36:00Z,u_0763_s01,ins_u_0763_007,{},v2.3.0-fixed +evt_001430,u_0060,session_abandoned,2026-06-17T16:37:00Z,u_0060_s01,ins_u_0060_003,{},v2.3.0-fixed +evt_001431,u_0328,onboarding_step_viewed,2026-06-17T16:37:00Z,u_0328_s01,ins_u_0328_004,{},v2.3.0-fixed +evt_001432,u_0196,profile_saved,2026-06-17T16:38:00Z,u_0196_s01,ins_u_0196_003,{},v2.3.0-fixed +evt_001433,u_0068,session_abandoned,2026-06-17T16:39:00Z,u_0068_s01,ins_u_0068_003,{},v2.3.0-fixed +evt_001434,u_0343,signup_started,2026-06-17T16:39:00Z,u_0343_s01,ins_u_0343_001,{},v2.3.0-fixed +evt_001435,u_0191,profile_saved,2026-06-17T16:40:00Z,u_0191_s01,ins_u_0191_003,{},v2.3.0-fixed +evt_001436,u_0461,signup_started,2026-06-17T16:40:00Z,u_0461_s01,ins_u_0461_001,{},v2.3.0-fixed +evt_001437,u_0229,session_abandoned,2026-06-17T16:41:00Z,u_0229_s01,ins_u_0229_003,{},v2.3.0-fixed +evt_001438,u_0093,signup_completed,2026-06-17T16:42:00Z,u_0093_s01,ins_u_0093_002,{},v2.3.0-fixed +evt_001439,u_0170,signup_started,2026-06-17T16:42:00Z,u_0170_s01,ins_u_0170_001,{},v2.3.0-fixed +evt_001440,u_0343,signup_completed,2026-06-17T16:42:00Z,u_0343_s01,ins_u_0343_002,{},v2.3.0-fixed +evt_001441,u_0170,signup_completed,2026-06-17T16:43:00Z,u_0170_s01,ins_u_0170_002,{},v2.3.0-fixed +evt_001442,u_0191,onboarding_step_viewed,2026-06-17T16:43:00Z,u_0191_s01,ins_u_0191_004,{},v2.3.0-fixed +evt_001443,u_0486,signup_completed,2026-06-17T16:43:00Z,u_0486_s01,ins_u_0486_002,{},v2.3.0-fixed +evt_001444,u_0078,signup_started,2026-06-17T16:44:00Z,u_0078_s01,ins_u_0078_001,{},v2.3.0-fixed +evt_001445,u_0169,onboarding_completed,2026-06-17T16:44:00Z,u_0169_s01,ins_u_0169_007,"{""completed_at"": ""2026-06-17T16:41:00Z""}",v2.3.0-fixed +evt_001446,u_0196,onboarding_step_viewed,2026-06-17T16:44:00Z,u_0196_s01,ins_u_0196_004,{},v2.3.0-fixed +evt_001447,u_0461,signup_completed,2026-06-17T16:44:00Z,u_0461_s01,ins_u_0461_002,{},v2.3.0-fixed +evt_001448,u_0078,signup_completed,2026-06-17T16:47:00Z,u_0078_s01,ins_u_0078_002,{},v2.3.0-fixed +evt_001449,u_0093,session_abandoned,2026-06-17T16:48:00Z,u_0093_s01,ins_u_0093_003,{},v2.3.0-fixed +evt_001450,u_0343,profile_saved,2026-06-17T16:51:00Z,u_0343_s01,ins_u_0343_003,{},v2.3.0-fixed +evt_001451,u_0486,profile_saved,2026-06-17T16:51:00Z,u_0486_s01,ins_u_0486_003,{},v2.3.0-fixed +evt_001452,u_0170,profile_saved,2026-06-17T16:53:00Z,u_0170_s01,ins_u_0170_003,{},v2.3.0-fixed +evt_001453,u_0196,feature_used,2026-06-17T16:53:00Z,u_0196_s01,ins_u_0196_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001454,u_0343,onboarding_step_viewed,2026-06-17T16:53:00Z,u_0343_s01,ins_u_0343_004,{},v2.3.0-fixed +evt_001455,u_0461,profile_saved,2026-06-17T16:54:00Z,u_0461_s01,ins_u_0461_003,{},v2.3.0-fixed +evt_001456,u_0519,signup_started,2026-06-17T16:54:00Z,u_0519_s01,ins_u_0519_001,{},v2.3.0-fixed +evt_001457,u_0078,session_abandoned,2026-06-17T16:55:00Z,u_0078_s01,ins_u_0078_003,{},v2.3.0-fixed +evt_001458,u_0768,onboarding_completed,2026-06-17T16:55:00Z,u_0768_s01,ins_u_0768_006,"{""completed_at"": ""2026-06-17T16:49:00Z""}",v2.3.0-fixed +evt_001459,u_0519,signup_completed,2026-06-17T16:56:00Z,u_0519_s01,ins_u_0519_002,{},v2.3.0-fixed +evt_001460,u_0191,feature_used,2026-06-17T16:57:00Z,u_0191_s01,ins_u_0191_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001461,u_0461,onboarding_step_viewed,2026-06-17T16:57:00Z,u_0461_s01,ins_u_0461_004,{},v2.3.0-fixed +evt_001462,u_0170,onboarding_step_viewed,2026-06-17T16:58:00Z,u_0170_s01,ins_u_0170_004,{},v2.3.0-fixed +evt_001463,u_0593,signup_started,2026-06-17T17:03:00Z,u_0593_s01,ins_u_0593_001,{},v2.3.0-fixed +evt_001464,u_0519,profile_saved,2026-06-17T17:06:00Z,u_0519_s01,ins_u_0519_003,{},v2.3.0-fixed +evt_001465,u_0593,signup_completed,2026-06-17T17:08:00Z,u_0593_s01,ins_u_0593_002,{},v2.3.0-fixed +evt_001466,u_0328,onboarding_completed,2026-06-17T17:10:00Z,u_0328_s01,ins_u_0328_005,"{""completed_at"": ""2026-06-17T17:06:00Z""}",v2.3.0-fixed +evt_001467,u_0343,feature_used,2026-06-17T17:10:00Z,u_0343_s01,ins_u_0343_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001468,u_0741,signup_started,2026-06-17T17:10:00Z,u_0741_s01,ins_u_0741_001,{},v2.3.0-fixed +evt_001469,u_0519,onboarding_step_viewed,2026-06-17T17:11:00Z,u_0519_s01,ins_u_0519_004,{},v2.3.0-fixed +evt_001470,u_0486,feature_used,2026-06-17T17:15:00Z,u_0486_s01,ins_u_0486_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_001471,u_0519,feature_used,2026-06-17T17:16:00Z,u_0519_s01,ins_u_0519_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001472,u_0741,session_abandoned,2026-06-17T17:16:00Z,u_0741_s01,ins_u_0741_002,{},v2.3.0-fixed +evt_001473,u_0196,onboarding_completed,2026-06-17T17:17:00Z,u_0196_s01,ins_u_0196_006,"{""completed_at"": ""2026-06-17T17:16:00Z""}",v2.3.0-fixed +evt_001474,u_0593,profile_saved,2026-06-17T17:17:00Z,u_0593_s01,ins_u_0593_003,{},v2.3.0-fixed +evt_001475,u_0461,feature_used,2026-06-17T17:18:00Z,u_0461_s01,ins_u_0461_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001476,u_0593,error_shown,2026-06-17T17:18:00Z,u_0593_s01,ins_u_0593_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001477,u_0191,onboarding_completed,2026-06-17T17:24:00Z,u_0191_s01,ins_u_0191_006,"{""completed_at"": ""2026-06-17T17:20:00Z""}",v2.3.0-fixed +evt_001478,u_0461,onboarding_completed,2026-06-17T17:25:00Z,u_0461_s01,ins_u_0461_006,"{""completed_at"": ""2026-06-17T17:32:00Z""}",v2.3.0-fixed +evt_001479,u_0620,signup_started,2026-06-17T17:25:00Z,u_0620_s01,ins_u_0620_001,{},v2.3.0-fixed +evt_001480,u_0170,onboarding_completed,2026-06-17T17:29:00Z,u_0170_s01,ins_u_0170_005,"{""completed_at"": ""2026-06-17T17:21:00Z""}",v2.3.0-fixed +evt_001481,u_0486,onboarding_completed,2026-06-17T17:31:00Z,u_0486_s01,ins_u_0486_005,"{""completed_at"": ""2026-06-17T17:21:00Z""}",v2.3.0-fixed +evt_001482,u_0620,session_abandoned,2026-06-17T17:31:00Z,u_0620_s01,ins_u_0620_002,{},v2.3.0-fixed +evt_001483,u_0177,signup_started,2026-06-17T17:32:00Z,u_0177_s01,ins_u_0177_001,{},v2.3.0-fixed +evt_001484,u_0343,onboarding_completed,2026-06-17T17:33:00Z,u_0343_s01,ins_u_0343_006,"{""completed_at"": ""2026-06-17T17:23:00Z""}",v2.3.0-fixed +evt_001485,u_0169,activation_completed,2026-06-17T17:34:00Z,u_0169_s01,ins_u_0169_008,{},v2.3.0-fixed +evt_001486,u_0177,signup_completed,2026-06-17T17:35:00Z,u_0177_s01,ins_u_0177_002,{},v2.3.0-fixed +evt_001487,u_0593,feature_used,2026-06-17T17:35:00Z,u_0593_s01,ins_u_0593_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001488,u_0177,profile_saved,2026-06-17T17:40:00Z,u_0177_s01,ins_u_0177_003,{},v2.3.0-fixed +evt_001489,u_0696,signup_started,2026-06-17T17:41:00Z,u_0696_s01,ins_u_0696_001,{},v2.3.0-fixed +evt_001490,u_0593,onboarding_completed,2026-06-17T17:43:00Z,u_0593_s01,ins_u_0593_006,"{""completed_at"": ""2026-06-17T17:49:00Z""}",v2.3.0-fixed +evt_001491,u_0633,return_visit,2026-06-17T17:43:00Z,u_0633_s02,ins_u_0633_008,{},v2.3.0-fixed +evt_001492,u_0177,onboarding_step_viewed,2026-06-17T17:44:00Z,u_0177_s01,ins_u_0177_004,{},v2.3.0-fixed +evt_001493,u_0384,signup_started,2026-06-17T17:44:00Z,u_0384_s01,ins_u_0384_001,{},v2.3.0-fixed +evt_001494,u_0191,activation_completed,2026-06-17T17:46:00Z,u_0191_s01,ins_u_0191_007,{},v2.3.0-fixed +evt_001495,u_0384,signup_completed,2026-06-17T17:46:00Z,u_0384_s01,ins_u_0384_002,{},v2.3.0-fixed +evt_001496,u_0696,session_abandoned,2026-06-17T17:47:00Z,u_0696_s01,ins_u_0696_002,{},v2.3.0-fixed +evt_001497,u_0633,feature_used,2026-06-17T17:48:00Z,u_0633_s02,ins_u_0633_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001498,u_0519,onboarding_completed,2026-06-17T17:49:00Z,u_0519_s01,ins_u_0519_006,"{""completed_at"": ""2026-06-17T17:33:00Z""}",v2.3.0-fixed +evt_001499,u_0785,signup_started,2026-06-17T17:50:00Z,u_0785_s01,ins_u_0785_001,{},v2.3.0-fixed +evt_001500,u_0785,signup_completed,2026-06-17T17:51:00Z,u_0785_s01,ins_u_0785_002,{},v2.3.0-fixed +evt_001501,u_0384,session_abandoned,2026-06-17T17:54:00Z,u_0384_s01,ins_u_0384_003,{},v2.3.0-fixed +evt_001502,u_0785,session_abandoned,2026-06-17T17:57:00Z,u_0785_s01,ins_u_0785_003,{},v2.3.0-fixed +evt_001503,u_0661,signup_started,2026-06-17T17:59:00Z,u_0661_s01,ins_u_0661_001,{},v2.3.0-fixed +evt_001504,u_0461,activation_completed,2026-06-17T18:00:00Z,u_0461_s01,ins_u_0461_007,{},v2.3.0-fixed +evt_001505,u_0170,activation_completed,2026-06-17T18:01:00Z,u_0170_s01,ins_u_0170_006,{},v2.3.0-fixed +evt_001506,u_0572,signup_started,2026-06-17T18:02:00Z,u_0572_s01,ins_u_0572_001,{},v2.3.0-fixed +evt_001507,u_0177,feature_used,2026-06-17T18:03:00Z,u_0177_s01,ins_u_0177_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001508,u_0661,signup_completed,2026-06-17T18:04:00Z,u_0661_s01,ins_u_0661_002,{},v2.3.0-fixed +evt_001509,u_0572,session_abandoned,2026-06-17T18:06:00Z,u_0572_s01,ins_u_0572_002,{},v2.3.0-fixed +evt_001510,u_0661,profile_saved,2026-06-17T18:09:00Z,u_0661_s01,ins_u_0661_003,{},v2.3.0-fixed +evt_001511,u_0554,signup_started,2026-06-17T18:14:00Z,u_0554_s01,ins_u_0554_001,{},v2.3.0-fixed +evt_001512,u_0554,signup_completed,2026-06-17T18:15:00Z,u_0554_s01,ins_u_0554_002,{},v2.3.0-fixed +evt_001513,u_0554,profile_saved,2026-06-17T18:20:00Z,u_0554_s01,ins_u_0554_003,{},v2.3.0-fixed +evt_001514,u_0554,error_shown,2026-06-17T18:21:00Z,u_0554_s01,ins_u_0554_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001515,u_0177,onboarding_completed,2026-06-17T18:23:00Z,u_0177_s01,ins_u_0177_006,"{""completed_at"": ""2026-06-17T18:18:00Z""}",v2.3.0-fixed +evt_001516,u_0554,onboarding_step_viewed,2026-06-17T18:25:00Z,u_0554_s01,ins_u_0554_005,{},v2.3.0-fixed +evt_001517,u_0345,signup_started,2026-06-17T18:26:00Z,u_0345_s01,ins_u_0345_001,{},v2.3.0-fixed +evt_001518,u_0661,feature_used,2026-06-17T18:26:00Z,u_0661_s01,ins_u_0661_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001519,u_0345,signup_completed,2026-06-17T18:33:00Z,u_0345_s01,ins_u_0345_002,{},v2.3.0-fixed +evt_001520,u_0593,activation_completed,2026-06-17T18:34:00Z,u_0593_s01,ins_u_0593_007,{},v2.3.0-fixed +evt_001521,u_0368,signup_started,2026-06-17T18:36:00Z,u_0368_s01,ins_u_0368_001,{},v2.3.0-fixed +evt_001522,u_0718,signup_started,2026-06-17T18:36:00Z,u_0718_s01,ins_u_0718_001,{},v2.3.0-fixed +evt_001523,u_0282,signup_started,2026-06-17T18:38:00Z,u_0282_s01,ins_u_0282_001,{},v2.3.0-fixed +evt_001524,u_0345,profile_saved,2026-06-17T18:40:00Z,u_0345_s01,ins_u_0345_003,{},v2.3.0-fixed +evt_001525,u_0718,signup_completed,2026-06-17T18:42:00Z,u_0718_s01,ins_u_0718_002,{},v2.3.0-fixed +evt_001526,u_0368,session_abandoned,2026-06-17T18:43:00Z,u_0368_s01,ins_u_0368_002,{},v2.3.0-fixed +evt_001527,u_0282,signup_completed,2026-06-17T18:45:00Z,u_0282_s01,ins_u_0282_002,{},v2.3.0-fixed +evt_001528,u_0345,onboarding_step_viewed,2026-06-17T18:45:00Z,u_0345_s01,ins_u_0345_004,{},v2.3.0-fixed +evt_001529,u_0793,signup_started,2026-06-17T18:47:00Z,u_0793_s01,ins_u_0793_001,{},v2.3.0-fixed +evt_001530,u_0282,profile_saved,2026-06-17T18:48:00Z,u_0282_s01,ins_u_0282_003,{},v2.3.0-fixed +evt_001531,u_0345,feature_used,2026-06-17T18:48:00Z,u_0345_s01,ins_u_0345_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001532,u_0661,onboarding_completed,2026-06-17T18:49:00Z,u_0661_s01,ins_u_0661_005,"{""completed_at"": ""2026-06-17T18:40:00Z""}",v2.3.0-fixed +evt_001533,u_0718,profile_saved,2026-06-17T18:50:00Z,u_0718_s01,ins_u_0718_003,{},v2.3.0-fixed +evt_001534,u_0750,signup_started,2026-06-17T18:51:00Z,u_0750_s01,ins_u_0750_001,{},v2.3.0-fixed +evt_001535,u_0282,onboarding_step_viewed,2026-06-17T18:53:00Z,u_0282_s01,ins_u_0282_004,{},v2.3.0-fixed +evt_001536,u_0718,onboarding_step_viewed,2026-06-17T18:54:00Z,u_0718_s01,ins_u_0718_004,{},v2.3.0-fixed +evt_001537,u_0793,session_abandoned,2026-06-17T18:54:00Z,u_0793_s01,ins_u_0793_002,{},v2.3.0-fixed +evt_001538,u_0554,onboarding_completed,2026-06-17T18:56:00Z,u_0554_s01,ins_u_0554_006,"{""completed_at"": ""2026-06-17T18:49:00Z""}",v2.3.0-fixed +evt_001539,u_0661,activation_completed,2026-06-17T18:59:00Z,u_0661_s01,ins_u_0661_006,{},v2.3.0-fixed +evt_001540,u_0750,signup_completed,2026-06-17T18:59:00Z,u_0750_s01,ins_u_0750_002,{},v2.3.0-fixed +evt_001541,u_0750,profile_saved,2026-06-17T19:04:00Z,u_0750_s01,ins_u_0750_003,{},v2.3.0-fixed +evt_001542,u_0718,feature_used,2026-06-17T19:05:00Z,u_0718_s01,ins_u_0718_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001543,u_0282,feature_used,2026-06-17T19:07:00Z,u_0282_s01,ins_u_0282_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001544,u_0004,signup_started,2026-06-17T19:09:00Z,u_0004_s01,ins_u_0004_001,{},v2.3.0-fixed +evt_001545,u_0345,onboarding_completed,2026-06-17T19:09:00Z,u_0345_s01,ins_u_0345_006,"{""completed_at"": ""2026-06-17T19:07:00Z""}",v2.3.0-fixed +evt_001546,u_0750,onboarding_step_viewed,2026-06-17T19:10:00Z,u_0750_s01,ins_u_0750_004,{},v2.3.0-fixed +evt_001547,u_0004,signup_completed,2026-06-17T19:12:00Z,u_0004_s01,ins_u_0004_002,{},v2.3.0-fixed +evt_001548,u_0301,signup_started,2026-06-17T19:17:00Z,u_0301_s01,ins_u_0301_001,{},v2.3.0-fixed +evt_001549,u_0004,profile_saved,2026-06-17T19:20:00Z,u_0004_s01,ins_u_0004_003,{},v2.3.0-fixed +evt_001550,u_0004,onboarding_step_viewed,2026-06-17T19:22:00Z,u_0004_s01,ins_u_0004_004,{},v2.3.0-fixed +evt_001551,u_0554,activation_completed,2026-06-17T19:23:00Z,u_0554_s01,ins_u_0554_007,{},v2.3.0-fixed +evt_001552,u_0301,signup_completed,2026-06-17T19:24:00Z,u_0301_s01,ins_u_0301_002,{},v2.3.0-fixed +evt_001553,u_0282,onboarding_completed,2026-06-17T19:27:00Z,u_0282_s01,ins_u_0282_006,"{""completed_at"": ""2026-06-17T19:27:00Z""}",v2.3.0-fixed +evt_001554,u_0718,onboarding_completed,2026-06-17T19:27:00Z,u_0718_s01,ins_u_0718_006,"{""completed_at"": ""2026-06-17T19:21:00Z""}",v2.3.0-fixed +evt_001555,u_0217,signup_started,2026-06-17T19:30:00Z,u_0217_s01,ins_u_0217_001,{},v2.3.0-fixed +evt_001556,u_0154,signup_started,2026-06-17T19:32:00Z,u_0154_s01,ins_u_0154_001,{},v2.3.0-fixed +evt_001557,u_0301,session_abandoned,2026-06-17T19:32:00Z,u_0301_s01,ins_u_0301_003,{},v2.3.0-fixed +evt_001558,u_0570,signup_started,2026-06-17T19:32:00Z,u_0570_s01,ins_u_0570_001,{},v2.3.0-fixed +evt_001559,u_0342,signup_started,2026-06-17T19:34:00Z,u_0342_s01,ins_u_0342_001,{},v2.3.0-fixed +evt_001560,u_0345,activation_completed,2026-06-17T19:34:00Z,u_0345_s01,ins_u_0345_007,{},v2.3.0-fixed +evt_001561,u_0738,signup_started,2026-06-17T19:34:00Z,u_0738_s01,ins_u_0738_001,{},v2.3.0-fixed +evt_001562,u_0154,signup_completed,2026-06-17T19:36:00Z,u_0154_s01,ins_u_0154_002,{},v2.3.0-fixed +evt_001563,u_0004,feature_used,2026-06-17T19:37:00Z,u_0004_s01,ins_u_0004_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001564,u_0570,session_abandoned,2026-06-17T19:37:00Z,u_0570_s01,ins_u_0570_002,{},v2.3.0-fixed +evt_001565,u_0738,signup_completed,2026-06-17T19:37:00Z,u_0738_s01,ins_u_0738_002,{},v2.3.0-fixed +evt_001566,u_0217,signup_completed,2026-06-17T19:38:00Z,u_0217_s01,ins_u_0217_002,{},v2.3.0-fixed +evt_001567,u_0342,signup_completed,2026-06-17T19:38:00Z,u_0342_s01,ins_u_0342_002,{},v2.3.0-fixed +evt_001568,u_0738,profile_saved,2026-06-17T19:42:00Z,u_0738_s01,ins_u_0738_003,{},v2.3.0-fixed +evt_001569,u_0342,profile_saved,2026-06-17T19:43:00Z,u_0342_s01,ins_u_0342_003,{},v2.3.0-fixed +evt_001570,u_0738,error_shown,2026-06-17T19:43:00Z,u_0738_s01,ins_u_0738_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001571,u_0217,session_abandoned,2026-06-17T19:44:00Z,u_0217_s01,ins_u_0217_003,{},v2.3.0-fixed +evt_001572,u_0750,onboarding_completed,2026-06-17T19:44:00Z,u_0750_s01,ins_u_0750_005,"{""completed_at"": ""2026-06-17T19:32:00Z""}",v2.3.0-fixed +evt_001573,u_0503,signup_started,2026-06-17T19:45:00Z,u_0503_s01,ins_u_0503_001,{},v2.3.0-fixed +evt_001574,u_0154,profile_saved,2026-06-17T19:46:00Z,u_0154_s01,ins_u_0154_003,{},v2.3.0-fixed +evt_001575,u_0342,onboarding_step_viewed,2026-06-17T19:48:00Z,u_0342_s01,ins_u_0342_004,{},v2.3.0-fixed +evt_001576,u_0503,signup_completed,2026-06-17T19:48:00Z,u_0503_s01,ins_u_0503_002,{},v2.3.0-fixed +evt_001577,u_0675,signup_started,2026-06-17T19:48:00Z,u_0675_s01,ins_u_0675_001,{},v2.3.0-fixed +evt_001578,u_0738,onboarding_step_viewed,2026-06-17T19:48:00Z,u_0738_s01,ins_u_0738_005,{},v2.3.0-fixed +evt_001579,u_0154,onboarding_step_viewed,2026-06-17T19:50:00Z,u_0154_s01,ins_u_0154_004,{},v2.3.0-fixed +evt_001580,u_0738,feature_used,2026-06-17T19:50:00Z,u_0738_s01,ins_u_0738_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_001581,u_0172,signup_started,2026-06-17T19:52:00Z,u_0172_s01,ins_u_0172_001,{},v2.3.0-fixed +evt_001582,u_0675,session_abandoned,2026-06-17T19:52:00Z,u_0675_s01,ins_u_0675_002,{},v2.3.0-fixed +evt_001583,u_0004,onboarding_completed,2026-06-17T19:53:00Z,u_0004_s01,ins_u_0004_006,"{""completed_at"": ""2026-06-17T19:59:00Z""}",v2.3.0-fixed +evt_001584,u_0172,signup_completed,2026-06-17T19:53:00Z,u_0172_s01,ins_u_0172_002,{},v2.3.0-fixed +evt_001585,u_0503,session_abandoned,2026-06-17T19:55:00Z,u_0503_s01,ins_u_0503_003,{},v2.3.0-fixed +evt_001586,u_0172,profile_saved,2026-06-17T19:56:00Z,u_0172_s01,ins_u_0172_003,{},v2.3.0-fixed +evt_001587,u_0079,signup_started,2026-06-17T19:57:00Z,u_0079_s01,ins_u_0079_001,{},v2.3.0-fixed +evt_001588,u_0172,error_shown,2026-06-17T19:57:00Z,u_0172_s01,ins_u_0172_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001589,u_0172,onboarding_step_viewed,2026-06-17T19:59:00Z,u_0172_s01,ins_u_0172_005,{},v2.3.0-fixed +evt_001590,u_0154,feature_used,2026-06-17T20:00:00Z,u_0154_s01,ins_u_0154_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001591,u_0079,session_abandoned,2026-06-17T20:01:00Z,u_0079_s01,ins_u_0079_002,{},v2.3.0-fixed +evt_001592,u_0342,feature_used,2026-06-17T20:06:00Z,u_0342_s01,ins_u_0342_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001593,u_0669,signup_started,2026-06-17T20:10:00Z,u_0669_s01,ins_u_0669_001,{},v2.3.0-fixed +evt_001594,u_0750,activation_completed,2026-06-17T20:10:00Z,u_0750_s01,ins_u_0750_006,{},v2.3.0-fixed +evt_001595,u_0342,onboarding_completed,2026-06-17T20:12:00Z,u_0342_s01,ins_u_0342_006,"{""completed_at"": ""2026-06-17T20:23:00Z""}",v2.3.0-fixed +evt_001596,u_0669,signup_completed,2026-06-17T20:17:00Z,u_0669_s01,ins_u_0669_002,{},v2.3.0-fixed +evt_001597,u_0669,profile_saved,2026-06-17T20:20:00Z,u_0669_s01,ins_u_0669_003,{},v2.3.0-fixed +evt_001598,u_0669,onboarding_step_viewed,2026-06-17T20:22:00Z,u_0669_s01,ins_u_0669_004,{},v2.3.0-fixed +evt_001599,u_0172,onboarding_completed,2026-06-17T20:24:00Z,u_0172_s01,ins_u_0172_006,"{""completed_at"": ""2026-06-17T20:36:00Z""}",v2.3.0-fixed +evt_001600,u_0154,onboarding_completed,2026-06-17T20:25:00Z,u_0154_s01,ins_u_0154_006,"{""completed_at"": ""2026-06-17T20:24:00Z""}",v2.3.0-fixed +evt_001601,u_0708,signup_started,2026-06-17T20:27:00Z,u_0708_s01,ins_u_0708_001,{},v2.3.0-fixed +evt_001602,u_0738,onboarding_completed,2026-06-17T20:27:00Z,u_0738_s01,ins_u_0738_007,"{""completed_at"": ""2026-06-17T20:16:00Z""}",v2.3.0-fixed +evt_001603,u_0669,feature_used,2026-06-17T20:29:00Z,u_0669_s01,ins_u_0669_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001604,u_0708,session_abandoned,2026-06-17T20:31:00Z,u_0708_s01,ins_u_0708_002,{},v2.3.0-fixed +evt_001605,u_0004,activation_completed,2026-06-17T20:35:00Z,u_0004_s01,ins_u_0004_007,{},v2.3.0-fixed +evt_001606,u_0738,activation_completed,2026-06-17T20:40:00Z,u_0738_s01,ins_u_0738_008,{},v2.3.0-fixed +evt_001607,u_0473,signup_started,2026-06-17T20:44:00Z,u_0473_s01,ins_u_0473_001,{},v2.3.0-fixed +evt_001608,u_0669,onboarding_completed,2026-06-17T20:49:00Z,u_0669_s01,ins_u_0669_006,"{""completed_at"": ""2026-06-17T20:48:00Z""}",v2.3.0-fixed +evt_001609,u_0543,signup_started,2026-06-17T20:50:00Z,u_0543_s01,ins_u_0543_001,{},v2.3.0-fixed +evt_001610,u_0473,signup_completed,2026-06-17T20:52:00Z,u_0473_s01,ins_u_0473_002,{},v2.3.0-fixed +evt_001611,u_0543,signup_completed,2026-06-17T20:52:00Z,u_0543_s01,ins_u_0543_002,{},v2.3.0-fixed +evt_001612,u_0543,profile_saved,2026-06-17T21:00:00Z,u_0543_s01,ins_u_0543_003,{},v2.3.0-fixed +evt_001613,u_0473,profile_saved,2026-06-17T21:01:00Z,u_0473_s01,ins_u_0473_003,{},v2.3.0-fixed +evt_001614,u_0543,error_shown,2026-06-17T21:01:00Z,u_0543_s01,ins_u_0543_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001615,u_0473,onboarding_step_viewed,2026-06-17T21:03:00Z,u_0473_s01,ins_u_0473_004,{},v2.3.0-fixed +evt_001616,u_0172,activation_completed,2026-06-17T21:06:00Z,u_0172_s01,ins_u_0172_007,{},v2.3.0-fixed +evt_001617,u_0473,feature_used,2026-06-17T21:17:00Z,u_0473_s01,ins_u_0473_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001618,u_0543,onboarding_completed,2026-06-17T21:31:00Z,u_0543_s01,ins_u_0543_005,"{""completed_at"": ""2026-06-17T21:32:00Z""}",v2.3.0-fixed +evt_001619,u_0669,activation_completed,2026-06-17T21:32:00Z,u_0669_s01,ins_u_0669_007,{},v2.3.0-fixed +evt_001620,u_0473,onboarding_completed,2026-06-17T21:37:00Z,u_0473_s01,ins_u_0473_006,"{""completed_at"": ""2026-06-17T21:33:00Z""}",v2.3.0-fixed +evt_001621,u_0473,activation_completed,2026-06-17T22:02:00Z,u_0473_s01,ins_u_0473_007,{},v2.3.0-fixed +evt_001622,u_0412,return_visit,2026-06-18T01:28:00Z,u_0412_s02,ins_u_0412_007,{},v2.3.0-fixed +evt_001623,u_0408,return_visit,2026-06-18T02:05:00Z,u_0408_s02,ins_u_0408_007,{},v2.3.0-fixed +evt_001624,u_0408,feature_used,2026-06-18T02:10:00Z,u_0408_s02,ins_u_0408_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001625,u_0261,return_visit,2026-06-18T06:29:00Z,u_0261_s02,ins_u_0261_006,{},v2.3.0-fixed +evt_001626,u_0261,feature_used,2026-06-18T06:34:00Z,u_0261_s02,ins_u_0261_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001627,u_0428,signup_started,2026-06-18T08:03:00Z,u_0428_s01,ins_u_0428_001,{},v2.3.0-fixed +evt_001628,u_0428,signup_completed,2026-06-18T08:07:00Z,u_0428_s01,ins_u_0428_002,{},v2.3.0-fixed +evt_001629,u_0100,signup_started,2026-06-18T08:11:00Z,u_0100_s01,ins_u_0100_001,{},v2.3.0-fixed +evt_001630,u_0434,signup_started,2026-06-18T08:11:00Z,u_0434_s01,ins_u_0434_001,{},v2.3.0-fixed +evt_001631,u_0428,profile_saved,2026-06-18T08:13:00Z,u_0428_s01,ins_u_0428_003,{},v2.3.0-fixed +evt_001632,u_0434,signup_completed,2026-06-18T08:13:00Z,u_0434_s01,ins_u_0434_002,{},v2.3.0-fixed +evt_001633,u_0100,signup_completed,2026-06-18T08:16:00Z,u_0100_s01,ins_u_0100_002,{},v2.3.0-fixed +evt_001634,u_0428,onboarding_step_viewed,2026-06-18T08:16:00Z,u_0428_s01,ins_u_0428_004,{},v2.3.0-fixed +evt_001635,u_0434,profile_saved,2026-06-18T08:20:00Z,u_0434_s01,ins_u_0434_003,{},v2.3.0-fixed +evt_001636,u_0660,signup_started,2026-06-18T08:23:00Z,u_0660_s01,ins_u_0660_001,{},v2.3.0-fixed +evt_001637,u_0100,profile_saved,2026-06-18T08:24:00Z,u_0100_s01,ins_u_0100_003,{},v2.3.0-fixed +evt_001638,u_0660,signup_completed,2026-06-18T08:25:00Z,u_0660_s01,ins_u_0660_002,{},v2.3.0-fixed +evt_001639,u_0100,onboarding_step_viewed,2026-06-18T08:27:00Z,u_0100_s01,ins_u_0100_004,{},v2.3.0-fixed +evt_001640,u_0660,profile_saved,2026-06-18T08:31:00Z,u_0660_s01,ins_u_0660_003,{},v2.3.0-fixed +evt_001641,u_0660,onboarding_step_viewed,2026-06-18T08:36:00Z,u_0660_s01,ins_u_0660_004,{},v2.3.0-fixed +evt_001642,u_0045,signup_started,2026-06-18T08:48:00Z,u_0045_s01,ins_u_0045_001,{},v2.3.0-fixed +evt_001643,u_0045,signup_completed,2026-06-18T08:50:00Z,u_0045_s01,ins_u_0045_002,{},v2.3.0-fixed +evt_001644,u_0428,onboarding_completed,2026-06-18T08:55:00Z,u_0428_s01,ins_u_0428_005,"{""completed_at"": ""2026-06-18T08:39:00Z""}",v2.3.0-fixed +evt_001645,u_0499,signup_started,2026-06-18T08:56:00Z,u_0499_s01,ins_u_0499_001,{},v2.3.0-fixed +evt_001646,u_0660,onboarding_completed,2026-06-18T08:57:00Z,u_0660_s01,ins_u_0660_005,"{""completed_at"": ""2026-06-18T09:10:00Z""}",v2.3.0-fixed +evt_001647,u_0045,profile_saved,2026-06-18T08:59:00Z,u_0045_s01,ins_u_0045_003,{},v2.3.0-fixed +evt_001648,u_0431,signup_started,2026-06-18T08:59:00Z,u_0431_s01,ins_u_0431_001,{},v2.3.0-fixed +evt_001649,u_0045,onboarding_step_viewed,2026-06-18T09:01:00Z,u_0045_s01,ins_u_0045_004,{},v2.3.0-fixed +evt_001650,u_0434,onboarding_completed,2026-06-18T09:01:00Z,u_0434_s01,ins_u_0434_004,"{""completed_at"": ""2026-06-18T08:46:00Z""}",v2.3.0-fixed +evt_001651,u_0431,session_abandoned,2026-06-18T09:02:00Z,u_0431_s01,ins_u_0431_002,{},v2.3.0-fixed +evt_001652,u_0499,signup_completed,2026-06-18T09:02:00Z,u_0499_s01,ins_u_0499_002,{},v2.3.0-fixed +evt_001653,u_0428,activation_completed,2026-06-18T09:05:00Z,u_0428_s01,ins_u_0428_006,{},v2.3.0-fixed +evt_001654,u_0499,profile_saved,2026-06-18T09:06:00Z,u_0499_s01,ins_u_0499_003,{},v2.3.0-fixed +evt_001655,u_0499,feature_used,2026-06-18T09:15:00Z,u_0499_s01,ins_u_0499_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001656,u_0100,activation_completed,2026-06-18T09:18:00Z,u_0100_s01,ins_u_0100_005,{},v2.3.0-fixed +evt_001657,u_0168,signup_started,2026-06-18T09:20:00Z,u_0168_s01,ins_u_0168_001,{},v2.3.0-fixed +evt_001658,u_0045,feature_used,2026-06-18T09:21:00Z,u_0045_s01,ins_u_0045_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001659,u_0524,signup_started,2026-06-18T09:21:00Z,u_0524_s01,ins_u_0524_001,{},v2.3.0-fixed +evt_001660,u_0524,signup_completed,2026-06-18T09:24:00Z,u_0524_s01,ins_u_0524_002,{},v2.3.0-fixed +evt_001661,u_0559,signup_started,2026-06-18T09:27:00Z,u_0559_s01,ins_u_0559_001,{},v2.3.0-fixed +evt_001662,u_0168,session_abandoned,2026-06-18T09:28:00Z,u_0168_s01,ins_u_0168_002,{},v2.3.0-fixed +evt_001663,u_0559,signup_completed,2026-06-18T09:30:00Z,u_0559_s01,ins_u_0559_002,{},v2.3.0-fixed +evt_001664,u_0211,signup_started,2026-06-18T09:31:00Z,u_0211_s01,ins_u_0211_001,{},v2.3.0-fixed +evt_001665,u_0215,signup_started,2026-06-18T09:31:00Z,u_0215_s01,ins_u_0215_001,{},v2.3.0-fixed +evt_001666,u_0045,onboarding_completed,2026-06-18T09:32:00Z,u_0045_s01,ins_u_0045_006,"{""completed_at"": ""2026-06-18T09:31:00Z""}",v2.3.0-fixed +evt_001667,u_0524,profile_saved,2026-06-18T09:33:00Z,u_0524_s01,ins_u_0524_003,{},v2.3.0-fixed +evt_001668,u_0559,profile_saved,2026-06-18T09:34:00Z,u_0559_s01,ins_u_0559_003,{},v2.3.0-fixed +evt_001669,u_0524,onboarding_step_viewed,2026-06-18T09:35:00Z,u_0524_s01,ins_u_0524_004,{},v2.3.0-fixed +evt_001670,u_0559,onboarding_step_viewed,2026-06-18T09:36:00Z,u_0559_s01,ins_u_0559_004,{},v2.3.0-fixed +evt_001671,u_0211,signup_completed,2026-06-18T09:38:00Z,u_0211_s01,ins_u_0211_002,{},v2.3.0-fixed +evt_001672,u_0215,signup_completed,2026-06-18T09:38:00Z,u_0215_s01,ins_u_0215_002,{},v2.3.0-fixed +evt_001673,u_0174,signup_started,2026-06-18T09:39:00Z,u_0174_s01,ins_u_0174_001,{},v2.3.0-fixed +evt_001674,u_0338,signup_started,2026-06-18T09:39:00Z,u_0338_s01,ins_u_0338_001,{},v2.3.0-fixed +evt_001675,u_0211,profile_saved,2026-06-18T09:41:00Z,u_0211_s01,ins_u_0211_003,{},v2.3.0-fixed +evt_001676,u_0499,onboarding_completed,2026-06-18T09:42:00Z,u_0499_s01,ins_u_0499_005,"{""completed_at"": ""2026-06-18T09:43:00Z""}",v2.3.0-fixed +evt_001677,u_0211,onboarding_step_viewed,2026-06-18T09:44:00Z,u_0211_s01,ins_u_0211_004,{},v2.3.0-fixed +evt_001678,u_0338,signup_completed,2026-06-18T09:44:00Z,u_0338_s01,ins_u_0338_002,{},v2.3.0-fixed +evt_001679,u_0770,signup_started,2026-06-18T09:44:00Z,u_0770_s01,ins_u_0770_001,{},v2.3.0-fixed +evt_001680,u_0215,profile_saved,2026-06-18T09:45:00Z,u_0215_s01,ins_u_0215_003,{},v2.3.0-fixed +evt_001681,u_0736,signup_started,2026-06-18T09:45:00Z,u_0736_s01,ins_u_0736_001,{},v2.3.0-fixed +evt_001682,u_0174,signup_completed,2026-06-18T09:46:00Z,u_0174_s01,ins_u_0174_002,{},v2.3.0-fixed +evt_001683,u_0215,error_shown,2026-06-18T09:46:00Z,u_0215_s01,ins_u_0215_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001684,u_0338,profile_saved,2026-06-18T09:47:00Z,u_0338_s01,ins_u_0338_003,{},v2.3.0-fixed +evt_001685,u_0215,onboarding_step_viewed,2026-06-18T09:48:00Z,u_0215_s01,ins_u_0215_005,{},v2.3.0-fixed +evt_001686,u_0338,error_shown,2026-06-18T09:48:00Z,u_0338_s01,ins_u_0338_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001687,u_0521,signup_started,2026-06-18T09:48:00Z,u_0521_s01,ins_u_0521_001,{},v2.3.0-fixed +evt_001688,u_0736,signup_completed,2026-06-18T09:48:00Z,u_0736_s01,ins_u_0736_002,{},v2.3.0-fixed +evt_001689,u_0770,session_abandoned,2026-06-18T09:49:00Z,u_0770_s01,ins_u_0770_002,{},v2.3.0-fixed +evt_001690,u_0338,onboarding_step_viewed,2026-06-18T09:50:00Z,u_0338_s01,ins_u_0338_005,{},v2.3.0-fixed +evt_001691,u_0105,signup_started,2026-06-18T09:51:00Z,u_0105_s01,ins_u_0105_001,{},v2.3.0-fixed +evt_001692,u_0521,signup_completed,2026-06-18T09:51:00Z,u_0521_s01,ins_u_0521_002,{},v2.3.0-fixed +evt_001693,u_0670,signup_started,2026-06-18T09:51:00Z,u_0670_s01,ins_u_0670_001,{},v2.3.0-fixed +evt_001694,u_0002,signup_started,2026-06-18T09:52:00Z,u_0002_s01,ins_u_0002_001,{},v2.3.0-fixed +evt_001695,u_0174,profile_saved,2026-06-18T09:52:00Z,u_0174_s01,ins_u_0174_003,{},v2.3.0-fixed +evt_001696,u_0215,feature_used,2026-06-18T09:53:00Z,u_0215_s01,ins_u_0215_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001697,u_0105,signup_completed,2026-06-18T09:55:00Z,u_0105_s01,ins_u_0105_002,{},v2.3.0-fixed +evt_001698,u_0499,activation_completed,2026-06-18T09:56:00Z,u_0499_s01,ins_u_0499_006,{},v2.3.0-fixed +evt_001699,u_0002,signup_completed,2026-06-18T09:57:00Z,u_0002_s01,ins_u_0002_002,{},v2.3.0-fixed +evt_001700,u_0670,signup_completed,2026-06-18T09:57:00Z,u_0670_s01,ins_u_0670_002,{},v2.3.0-fixed +evt_001701,u_0736,profile_saved,2026-06-18T09:58:00Z,u_0736_s01,ins_u_0736_003,{},v2.3.0-fixed +evt_001702,u_0521,profile_saved,2026-06-18T09:59:00Z,u_0521_s01,ins_u_0521_003,{},v2.3.0-fixed +evt_001703,u_0105,session_abandoned,2026-06-18T10:00:00Z,u_0105_s01,ins_u_0105_003,{},v2.3.0-fixed +evt_001704,u_0736,onboarding_step_viewed,2026-06-18T10:00:00Z,u_0736_s01,ins_u_0736_004,{},v2.3.0-fixed +evt_001705,u_0211,feature_used,2026-06-18T10:02:00Z,u_0211_s01,ins_u_0211_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001706,u_0670,session_abandoned,2026-06-18T10:02:00Z,u_0670_s01,ins_u_0670_003,{},v2.3.0-fixed +evt_001707,u_0002,profile_saved,2026-06-18T10:06:00Z,u_0002_s01,ins_u_0002_003,{},v2.3.0-fixed +evt_001708,u_0524,onboarding_completed,2026-06-18T10:06:00Z,u_0524_s01,ins_u_0524_005,"{""completed_at"": ""2026-06-18T10:09:00Z""}",v2.3.0-fixed +evt_001709,u_0002,error_shown,2026-06-18T10:07:00Z,u_0002_s01,ins_u_0002_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001710,u_0338,feature_used,2026-06-18T10:08:00Z,u_0338_s01,ins_u_0338_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_001711,u_0521,feature_used,2026-06-18T10:09:00Z,u_0521_s01,ins_u_0521_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001712,u_0002,onboarding_step_viewed,2026-06-18T10:11:00Z,u_0002_s01,ins_u_0002_005,{},v2.3.0-fixed +evt_001713,u_0215,onboarding_completed,2026-06-18T10:12:00Z,u_0215_s01,ins_u_0215_007,"{""completed_at"": ""2026-06-18T10:16:00Z""}",v2.3.0-fixed +evt_001714,u_0559,onboarding_completed,2026-06-18T10:14:00Z,u_0559_s01,ins_u_0559_005,"{""completed_at"": ""2026-06-18T10:06:00Z""}",v2.3.0-fixed +evt_001715,u_0338,onboarding_completed,2026-06-18T10:15:00Z,u_0338_s01,ins_u_0338_007,"{""completed_at"": ""2026-06-18T10:24:00Z""}",v2.3.0-fixed +evt_001716,u_0556,signup_started,2026-06-18T10:18:00Z,u_0556_s01,ins_u_0556_001,{},v2.3.0-fixed +evt_001717,u_0736,feature_used,2026-06-18T10:19:00Z,u_0736_s01,ins_u_0736_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001718,u_0211,onboarding_completed,2026-06-18T10:23:00Z,u_0211_s01,ins_u_0211_006,"{""completed_at"": ""2026-06-18T10:17:00Z""}",v2.3.0-fixed +evt_001719,u_0222,signup_started,2026-06-18T10:23:00Z,u_0222_s01,ins_u_0222_001,{},v2.3.0-fixed +evt_001720,u_0556,session_abandoned,2026-06-18T10:23:00Z,u_0556_s01,ins_u_0556_002,{},v2.3.0-fixed +evt_001721,u_0388,signup_started,2026-06-18T10:25:00Z,u_0388_s01,ins_u_0388_001,{},v2.3.0-fixed +evt_001722,u_0222,signup_completed,2026-06-18T10:27:00Z,u_0222_s01,ins_u_0222_002,{},v2.3.0-fixed +evt_001723,u_0002,feature_used,2026-06-18T10:28:00Z,u_0002_s01,ins_u_0002_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_001724,u_0174,onboarding_completed,2026-06-18T10:28:00Z,u_0174_s01,ins_u_0174_004,"{""completed_at"": ""2026-06-18T10:20:00Z""}",v2.3.0-fixed +evt_001725,u_0211,activation_completed,2026-06-18T10:29:00Z,u_0211_s01,ins_u_0211_007,{},v2.3.0-fixed +evt_001726,u_0736,onboarding_completed,2026-06-18T10:31:00Z,u_0736_s01,ins_u_0736_006,"{""completed_at"": ""2026-06-18T10:26:00Z""}",v2.3.0-fixed +evt_001727,u_0388,signup_completed,2026-06-18T10:32:00Z,u_0388_s01,ins_u_0388_002,{},v2.3.0-fixed +evt_001728,u_0521,onboarding_completed,2026-06-18T10:33:00Z,u_0521_s01,ins_u_0521_005,"{""completed_at"": ""2026-06-18T10:28:00Z""}",v2.3.0-fixed +evt_001729,u_0524,activation_completed,2026-06-18T10:33:00Z,u_0524_s01,ins_u_0524_006,{},v2.3.0-fixed +evt_001730,u_0222,profile_saved,2026-06-18T10:35:00Z,u_0222_s01,ins_u_0222_003,{},v2.3.0-fixed +evt_001731,u_0388,profile_saved,2026-06-18T10:35:00Z,u_0388_s01,ins_u_0388_003,{},v2.3.0-fixed +evt_001732,u_0222,onboarding_step_viewed,2026-06-18T10:37:00Z,u_0222_s01,ins_u_0222_004,{},v2.3.0-fixed +evt_001733,u_0002,onboarding_completed,2026-06-18T10:39:00Z,u_0002_s01,ins_u_0002_007,"{""completed_at"": ""2026-06-18T10:36:00Z""}",v2.3.0-fixed +evt_001734,u_0388,onboarding_step_viewed,2026-06-18T10:40:00Z,u_0388_s01,ins_u_0388_004,{},v2.3.0-fixed +evt_001735,u_0559,activation_completed,2026-06-18T10:43:00Z,u_0559_s01,ins_u_0559_006,{},v2.3.0-fixed +evt_001736,u_0026,signup_started,2026-06-18T10:45:00Z,u_0026_s01,ins_u_0026_001,{},v2.3.0-fixed +evt_001737,u_0388,feature_used,2026-06-18T10:46:00Z,u_0388_s01,ins_u_0388_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001738,u_0752,signup_started,2026-06-18T10:48:00Z,u_0752_s01,ins_u_0752_001,{},v2.3.0-fixed +evt_001739,u_0026,session_abandoned,2026-06-18T10:49:00Z,u_0026_s01,ins_u_0026_002,{},v2.3.0-fixed +evt_001740,u_0521,activation_completed,2026-06-18T10:49:00Z,u_0521_s01,ins_u_0521_006,{},v2.3.0-fixed +evt_001741,u_0736,activation_completed,2026-06-18T10:56:00Z,u_0736_s01,ins_u_0736_007,{},v2.3.0-fixed +evt_001742,u_0752,session_abandoned,2026-06-18T10:56:00Z,u_0752_s01,ins_u_0752_002,{},v2.3.0-fixed +evt_001743,u_0602,signup_started,2026-06-18T10:57:00Z,u_0602_s01,ins_u_0602_001,{},v2.3.0-fixed +evt_001744,u_0597,signup_started,2026-06-18T10:58:00Z,u_0597_s01,ins_u_0597_001,{},v2.3.0-fixed +evt_001745,u_0602,signup_completed,2026-06-18T11:01:00Z,u_0602_s01,ins_u_0602_002,{},v2.3.0-fixed +evt_001746,u_0684,signup_started,2026-06-18T11:01:00Z,u_0684_s01,ins_u_0684_001,{},v2.3.0-fixed +evt_001747,u_0597,session_abandoned,2026-06-18T11:02:00Z,u_0597_s01,ins_u_0597_002,{},v2.3.0-fixed +evt_001748,u_0018,signup_started,2026-06-18T11:03:00Z,u_0018_s01,ins_u_0018_001,{},v2.3.0-fixed +evt_001749,u_0684,signup_completed,2026-06-18T11:04:00Z,u_0684_s01,ins_u_0684_002,{},v2.3.0-fixed +evt_001750,u_0388,onboarding_completed,2026-06-18T11:05:00Z,u_0388_s01,ins_u_0388_006,"{""completed_at"": ""2026-06-18T11:05:00Z""}",v2.3.0-fixed +evt_001751,u_0602,profile_saved,2026-06-18T11:05:00Z,u_0602_s01,ins_u_0602_003,{},v2.3.0-fixed +evt_001752,u_0002,activation_completed,2026-06-18T11:07:00Z,u_0002_s01,ins_u_0002_008,{},v2.3.0-fixed +evt_001753,u_0174,activation_completed,2026-06-18T11:09:00Z,u_0174_s01,ins_u_0174_005,{},v2.3.0-fixed +evt_001754,u_0018,signup_completed,2026-06-18T11:11:00Z,u_0018_s01,ins_u_0018_002,{},v2.3.0-fixed +evt_001755,u_0602,onboarding_step_viewed,2026-06-18T11:11:00Z,u_0602_s01,ins_u_0602_004,{},v2.3.0-fixed +evt_001756,u_0684,session_abandoned,2026-06-18T11:12:00Z,u_0684_s01,ins_u_0684_003,{},v2.3.0-fixed +evt_001757,u_0222,onboarding_completed,2026-06-18T11:18:00Z,u_0222_s01,ins_u_0222_005,"{""completed_at"": ""2026-06-18T11:11:00Z""}",v2.3.0-fixed +evt_001758,u_0018,profile_saved,2026-06-18T11:20:00Z,u_0018_s01,ins_u_0018_003,{},v2.3.0-fixed +evt_001759,u_0018,error_shown,2026-06-18T11:21:00Z,u_0018_s01,ins_u_0018_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001760,u_0602,feature_used,2026-06-18T11:23:00Z,u_0602_s01,ins_u_0602_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001761,u_0018,onboarding_step_viewed,2026-06-18T11:26:00Z,u_0018_s01,ins_u_0018_005,{},v2.3.0-fixed +evt_001762,u_0053,signup_started,2026-06-18T11:35:00Z,u_0053_s01,ins_u_0053_001,{},v2.3.0-fixed +evt_001763,u_0053,signup_completed,2026-06-18T11:37:00Z,u_0053_s01,ins_u_0053_002,{},v2.3.0-fixed +evt_001764,u_0003,signup_started,2026-06-18T11:40:00Z,u_0003_s01,ins_u_0003_001,{},v2.3.0-fixed +evt_001765,u_0602,onboarding_completed,2026-06-18T11:40:00Z,u_0602_s01,ins_u_0602_006,"{""completed_at"": ""2026-06-18T11:43:00Z""}",v2.3.0-fixed +evt_001766,u_0767,signup_started,2026-06-18T11:41:00Z,u_0767_s01,ins_u_0767_001,{},v2.3.0-fixed +evt_001767,u_0053,profile_saved,2026-06-18T11:43:00Z,u_0053_s01,ins_u_0053_003,{},v2.3.0-fixed +evt_001768,u_0018,feature_used,2026-06-18T11:44:00Z,u_0018_s01,ins_u_0018_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_001769,u_0053,onboarding_step_viewed,2026-06-18T11:45:00Z,u_0053_s01,ins_u_0053_004,{},v2.3.0-fixed +evt_001770,u_0003,signup_completed,2026-06-18T11:46:00Z,u_0003_s01,ins_u_0003_002,{},v2.3.0-fixed +evt_001771,u_0767,signup_completed,2026-06-18T11:46:00Z,u_0767_s01,ins_u_0767_002,{},v2.3.0-fixed +evt_001772,u_0003,profile_saved,2026-06-18T11:49:00Z,u_0003_s01,ins_u_0003_003,{},v2.3.0-fixed +evt_001773,u_0677,signup_started,2026-06-18T11:52:00Z,u_0677_s01,ins_u_0677_001,{},v2.3.0-fixed +evt_001774,u_0003,onboarding_step_viewed,2026-06-18T11:54:00Z,u_0003_s01,ins_u_0003_004,{},v2.3.0-fixed +evt_001775,u_0222,activation_completed,2026-06-18T11:54:00Z,u_0222_s01,ins_u_0222_006,{},v2.3.0-fixed +evt_001776,u_0520,signup_started,2026-06-18T11:55:00Z,u_0520_s01,ins_u_0520_001,{},v2.3.0-fixed +evt_001777,u_0767,session_abandoned,2026-06-18T11:55:00Z,u_0767_s01,ins_u_0767_003,{},v2.3.0-fixed +evt_001778,u_0677,signup_completed,2026-06-18T11:57:00Z,u_0677_s01,ins_u_0677_002,{},v2.3.0-fixed +evt_001779,u_0126,signup_started,2026-06-18T11:58:00Z,u_0126_s01,ins_u_0126_001,{},v2.3.0-fixed +evt_001780,u_0520,signup_completed,2026-06-18T11:58:00Z,u_0520_s01,ins_u_0520_002,{},v2.3.0-fixed +evt_001781,u_0018,onboarding_completed,2026-06-18T11:59:00Z,u_0018_s01,ins_u_0018_007,"{""completed_at"": ""2026-06-18T11:56:00Z""}",v2.3.0-fixed +evt_001782,u_0520,session_abandoned,2026-06-18T12:03:00Z,u_0520_s01,ins_u_0520_003,{},v2.3.0-fixed +evt_001783,u_0677,profile_saved,2026-06-18T12:03:00Z,u_0677_s01,ins_u_0677_003,{},v2.3.0-fixed +evt_001784,u_0053,feature_used,2026-06-18T12:04:00Z,u_0053_s01,ins_u_0053_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001785,u_0126,signup_completed,2026-06-18T12:06:00Z,u_0126_s01,ins_u_0126_002,{},v2.3.0-fixed +evt_001786,u_0677,onboarding_step_viewed,2026-06-18T12:06:00Z,u_0677_s01,ins_u_0677_004,{},v2.3.0-fixed +evt_001787,u_0243,signup_started,2026-06-18T12:14:00Z,u_0243_s01,ins_u_0243_001,{},v2.3.0-fixed +evt_001788,u_0126,profile_saved,2026-06-18T12:16:00Z,u_0126_s01,ins_u_0126_003,{},v2.3.0-fixed +evt_001789,u_0153,signup_started,2026-06-18T12:17:00Z,u_0153_s01,ins_u_0153_001,{},v2.3.0-fixed +evt_001790,u_0126,onboarding_step_viewed,2026-06-18T12:18:00Z,u_0126_s01,ins_u_0126_004,{},v2.3.0-fixed +evt_001791,u_0053,onboarding_completed,2026-06-18T12:19:00Z,u_0053_s01,ins_u_0053_006,"{""completed_at"": ""2026-06-18T12:18:00Z""}",v2.3.0-fixed +evt_001792,u_0243,session_abandoned,2026-06-18T12:22:00Z,u_0243_s01,ins_u_0243_002,{},v2.3.0-fixed +evt_001793,u_0153,signup_completed,2026-06-18T12:25:00Z,u_0153_s01,ins_u_0153_002,{},v2.3.0-fixed +evt_001794,u_0053,activation_completed,2026-06-18T12:30:00Z,u_0053_s01,ins_u_0053_007,{},v2.3.0-fixed +evt_001795,u_0018,activation_completed,2026-06-18T12:31:00Z,u_0018_s01,ins_u_0018_008,{},v2.3.0-fixed +evt_001796,u_0153,profile_saved,2026-06-18T12:31:00Z,u_0153_s01,ins_u_0153_003,{},v2.3.0-fixed +evt_001797,u_0003,onboarding_completed,2026-06-18T12:32:00Z,u_0003_s01,ins_u_0003_005,"{""completed_at"": ""2026-06-18T12:22:00Z""}",v2.3.0-fixed +evt_001798,u_0677,onboarding_completed,2026-06-18T12:35:00Z,u_0677_s01,ins_u_0677_005,"{""completed_at"": ""2026-06-18T12:34:00Z""}",v2.3.0-fixed +evt_001799,u_0153,onboarding_step_viewed,2026-06-18T12:36:00Z,u_0153_s01,ins_u_0153_004,{},v2.3.0-fixed +evt_001800,u_0126,feature_used,2026-06-18T12:41:00Z,u_0126_s01,ins_u_0126_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001801,u_0458,signup_started,2026-06-18T12:41:00Z,u_0458_s01,ins_u_0458_001,{},v2.3.0-fixed +evt_001802,u_0183,signup_started,2026-06-18T12:45:00Z,u_0183_s01,ins_u_0183_001,{},v2.3.0-fixed +evt_001803,u_0458,signup_completed,2026-06-18T12:45:00Z,u_0458_s01,ins_u_0458_002,{},v2.3.0-fixed +evt_001804,u_0069,signup_started,2026-06-18T12:48:00Z,u_0069_s01,ins_u_0069_001,{},v2.3.0-fixed +evt_001805,u_0069,signup_completed,2026-06-18T12:51:00Z,u_0069_s01,ins_u_0069_002,{},v2.3.0-fixed +evt_001806,u_0183,signup_completed,2026-06-18T12:52:00Z,u_0183_s01,ins_u_0183_002,{},v2.3.0-fixed +evt_001807,u_0458,profile_saved,2026-06-18T12:52:00Z,u_0458_s01,ins_u_0458_003,{},v2.3.0-fixed +evt_001808,u_0183,profile_saved,2026-06-18T12:57:00Z,u_0183_s01,ins_u_0183_003,{},v2.3.0-fixed +evt_001809,u_0458,onboarding_step_viewed,2026-06-18T12:57:00Z,u_0458_s01,ins_u_0458_004,{},v2.3.0-fixed +evt_001810,u_0069,session_abandoned,2026-06-18T12:58:00Z,u_0069_s01,ins_u_0069_003,{},v2.3.0-fixed +evt_001811,u_0183,onboarding_step_viewed,2026-06-18T13:00:00Z,u_0183_s01,ins_u_0183_004,{},v2.3.0-fixed +evt_001812,u_0594,signup_started,2026-06-18T13:04:00Z,u_0594_s01,ins_u_0594_001,{},v2.3.0-fixed +evt_001813,u_0760,signup_started,2026-06-18T13:09:00Z,u_0760_s01,ins_u_0760_001,{},v2.3.0-fixed +evt_001814,u_0594,signup_completed,2026-06-18T13:10:00Z,u_0594_s01,ins_u_0594_002,{},v2.3.0-fixed +evt_001815,u_0080,signup_started,2026-06-18T13:14:00Z,u_0080_s01,ins_u_0080_001,{},v2.3.0-fixed +evt_001816,u_0080,signup_completed,2026-06-18T13:15:00Z,u_0080_s01,ins_u_0080_002,{},v2.3.0-fixed +evt_001817,u_0153,onboarding_completed,2026-06-18T13:15:00Z,u_0153_s01,ins_u_0153_005,"{""completed_at"": ""2026-06-18T12:59:00Z""}",v2.3.0-fixed +evt_001818,u_0594,profile_saved,2026-06-18T13:16:00Z,u_0594_s01,ins_u_0594_003,{},v2.3.0-fixed +evt_001819,u_0760,signup_completed,2026-06-18T13:16:00Z,u_0760_s01,ins_u_0760_002,{},v2.3.0-fixed +evt_001820,u_0080,profile_saved,2026-06-18T13:18:00Z,u_0080_s01,ins_u_0080_003,{},v2.3.0-fixed +evt_001821,u_0458,onboarding_completed,2026-06-18T13:21:00Z,u_0458_s01,ins_u_0458_005,"{""completed_at"": ""2026-06-18T13:21:00Z""}",v2.3.0-fixed +evt_001822,u_0594,onboarding_step_viewed,2026-06-18T13:21:00Z,u_0594_s01,ins_u_0594_004,{},v2.3.0-fixed +evt_001823,u_0760,profile_saved,2026-06-18T13:21:00Z,u_0760_s01,ins_u_0760_003,{},v2.3.0-fixed +evt_001824,u_0080,onboarding_step_viewed,2026-06-18T13:24:00Z,u_0080_s01,ins_u_0080_004,{},v2.3.0-fixed +evt_001825,u_0049,signup_started,2026-06-18T13:25:00Z,u_0049_s01,ins_u_0049_001,{},v2.3.0-fixed +evt_001826,u_0110,signup_started,2026-06-18T13:26:00Z,u_0110_s01,ins_u_0110_001,{},v2.3.0-fixed +evt_001827,u_0049,signup_completed,2026-06-18T13:27:00Z,u_0049_s01,ins_u_0049_002,{},v2.3.0-fixed +evt_001828,u_0760,onboarding_step_viewed,2026-06-18T13:27:00Z,u_0760_s01,ins_u_0760_004,{},v2.3.0-fixed +evt_001829,u_0302,signup_started,2026-06-18T13:28:00Z,u_0302_s01,ins_u_0302_001,{},v2.3.0-fixed +evt_001830,u_0110,signup_completed,2026-06-18T13:31:00Z,u_0110_s01,ins_u_0110_002,{},v2.3.0-fixed +evt_001831,u_0760,feature_used,2026-06-18T13:31:00Z,u_0760_s01,ins_u_0760_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001832,u_0183,onboarding_completed,2026-06-18T13:33:00Z,u_0183_s01,ins_u_0183_005,"{""completed_at"": ""2026-06-18T13:32:00Z""}",v2.3.0-fixed +evt_001833,u_0049,profile_saved,2026-06-18T13:34:00Z,u_0049_s01,ins_u_0049_003,{},v2.3.0-fixed +evt_001834,u_0115,signup_started,2026-06-18T13:34:00Z,u_0115_s01,ins_u_0115_001,{},v2.3.0-fixed +evt_001835,u_0110,profile_saved,2026-06-18T13:35:00Z,u_0110_s01,ins_u_0110_003,{},v2.3.0-fixed +evt_001836,u_0115,signup_completed,2026-06-18T13:36:00Z,u_0115_s01,ins_u_0115_002,{},v2.3.0-fixed +evt_001837,u_0302,signup_completed,2026-06-18T13:36:00Z,u_0302_s01,ins_u_0302_002,{},v2.3.0-fixed +evt_001838,u_0080,feature_used,2026-06-18T13:37:00Z,u_0080_s01,ins_u_0080_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001839,u_0302,profile_saved,2026-06-18T13:42:00Z,u_0302_s01,ins_u_0302_003,{},v2.3.0-fixed +evt_001840,u_0110,feature_used,2026-06-18T13:43:00Z,u_0110_s01,ins_u_0110_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_001841,u_0115,profile_saved,2026-06-18T13:44:00Z,u_0115_s01,ins_u_0115_003,{},v2.3.0-fixed +evt_001842,u_0153,activation_completed,2026-06-18T13:44:00Z,u_0153_s01,ins_u_0153_006,{},v2.3.0-fixed +evt_001843,u_0080,onboarding_completed,2026-06-18T13:46:00Z,u_0080_s01,ins_u_0080_006,"{""completed_at"": ""2026-06-18T13:58:00Z""}",v2.3.0-fixed +evt_001844,u_0560,signup_started,2026-06-18T13:47:00Z,u_0560_s01,ins_u_0560_001,{},v2.3.0-fixed +evt_001845,u_0498,signup_started,2026-06-18T13:48:00Z,u_0498_s01,ins_u_0498_001,{},v2.3.0-fixed +evt_001846,u_0498,signup_completed,2026-06-18T13:53:00Z,u_0498_s01,ins_u_0498_002,{},v2.3.0-fixed +evt_001847,u_0560,session_abandoned,2026-06-18T13:53:00Z,u_0560_s01,ins_u_0560_002,{},v2.3.0-fixed +evt_001848,u_0594,onboarding_completed,2026-06-18T13:53:00Z,u_0594_s01,ins_u_0594_005,"{""completed_at"": ""2026-06-18T13:43:00Z""}",v2.3.0-fixed +evt_001849,u_0273,signup_started,2026-06-18T13:58:00Z,u_0273_s01,ins_u_0273_001,{},v2.3.0-fixed +evt_001850,u_0498,session_abandoned,2026-06-18T13:59:00Z,u_0498_s01,ins_u_0498_003,{},v2.3.0-fixed +evt_001851,u_0049,onboarding_completed,2026-06-18T14:03:00Z,u_0049_s01,ins_u_0049_004,"{""completed_at"": ""2026-06-18T14:03:00Z""}",v2.3.0-fixed +evt_001852,u_0273,signup_completed,2026-06-18T14:04:00Z,u_0273_s01,ins_u_0273_002,{},v2.3.0-fixed +evt_001853,u_0760,onboarding_completed,2026-06-18T14:06:00Z,u_0760_s01,ins_u_0760_006,"{""completed_at"": ""2026-06-18T13:53:00Z""}",v2.3.0-fixed +evt_001854,u_0115,feature_used,2026-06-18T14:07:00Z,u_0115_s01,ins_u_0115_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001855,u_0421,signup_started,2026-06-18T14:07:00Z,u_0421_s01,ins_u_0421_001,{},v2.3.0-fixed +evt_001856,u_0183,activation_completed,2026-06-18T14:08:00Z,u_0183_s01,ins_u_0183_006,{},v2.3.0-fixed +evt_001857,u_0421,session_abandoned,2026-06-18T14:10:00Z,u_0421_s01,ins_u_0421_002,{},v2.3.0-fixed +evt_001858,u_0449,signup_started,2026-06-18T14:10:00Z,u_0449_s01,ins_u_0449_001,{},v2.3.0-fixed +evt_001859,u_0115,onboarding_completed,2026-06-18T14:11:00Z,u_0115_s01,ins_u_0115_005,"{""completed_at"": ""2026-06-18T14:12:00Z""}",v2.3.0-fixed +evt_001860,u_0273,session_abandoned,2026-06-18T14:11:00Z,u_0273_s01,ins_u_0273_003,{},v2.3.0-fixed +evt_001861,u_0095,signup_started,2026-06-18T14:14:00Z,u_0095_s01,ins_u_0095_001,{},v2.3.0-fixed +evt_001862,u_0110,onboarding_completed,2026-06-18T14:14:00Z,u_0110_s01,ins_u_0110_005,"{""completed_at"": ""2026-06-18T14:10:00Z""}",v2.3.0-fixed +evt_001863,u_0095,session_abandoned,2026-06-18T14:16:00Z,u_0095_s01,ins_u_0095_002,{},v2.3.0-fixed +evt_001864,u_0449,signup_completed,2026-06-18T14:17:00Z,u_0449_s01,ins_u_0449_002,{},v2.3.0-fixed +evt_001865,u_0589,signup_started,2026-06-18T14:18:00Z,u_0589_s01,ins_u_0589_001,{},v2.3.0-fixed +evt_001866,u_0188,signup_started,2026-06-18T14:19:00Z,u_0188_s01,ins_u_0188_001,{},v2.3.0-fixed +evt_001867,u_0589,signup_completed,2026-06-18T14:19:00Z,u_0589_s01,ins_u_0589_002,{},v2.3.0-fixed +evt_001868,u_0135,signup_started,2026-06-18T14:23:00Z,u_0135_s01,ins_u_0135_001,{},v2.3.0-fixed +evt_001869,u_0589,profile_saved,2026-06-18T14:24:00Z,u_0589_s01,ins_u_0589_003,{},v2.3.0-fixed +evt_001870,u_0135,signup_completed,2026-06-18T14:25:00Z,u_0135_s01,ins_u_0135_002,{},v2.3.0-fixed +evt_001871,u_0188,signup_completed,2026-06-18T14:25:00Z,u_0188_s01,ins_u_0188_002,{},v2.3.0-fixed +evt_001872,u_0302,onboarding_completed,2026-06-18T14:26:00Z,u_0302_s01,ins_u_0302_004,"{""completed_at"": ""2026-06-18T14:09:00Z""}",v2.3.0-fixed +evt_001873,u_0449,profile_saved,2026-06-18T14:26:00Z,u_0449_s01,ins_u_0449_003,{},v2.3.0-fixed +evt_001874,u_0589,onboarding_step_viewed,2026-06-18T14:26:00Z,u_0589_s01,ins_u_0589_004,{},v2.3.0-fixed +evt_001875,u_0760,activation_completed,2026-06-18T14:26:00Z,u_0760_s01,ins_u_0760_007,{},v2.3.0-fixed +evt_001876,u_0449,onboarding_step_viewed,2026-06-18T14:31:00Z,u_0449_s01,ins_u_0449_004,{},v2.3.0-fixed +evt_001877,u_0111,signup_started,2026-06-18T14:32:00Z,u_0111_s01,ins_u_0111_001,{},v2.3.0-fixed +evt_001878,u_0135,profile_saved,2026-06-18T14:32:00Z,u_0135_s01,ins_u_0135_003,{},v2.3.0-fixed +evt_001879,u_0047,signup_started,2026-06-18T14:34:00Z,u_0047_s01,ins_u_0047_001,{},v2.3.0-fixed +evt_001880,u_0111,signup_completed,2026-06-18T14:34:00Z,u_0111_s01,ins_u_0111_002,{},v2.3.0-fixed +evt_001881,u_0188,session_abandoned,2026-06-18T14:34:00Z,u_0188_s01,ins_u_0188_003,{},v2.3.0-fixed +evt_001882,u_0589,feature_used,2026-06-18T14:34:00Z,u_0589_s01,ins_u_0589_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001883,u_0135,onboarding_step_viewed,2026-06-18T14:35:00Z,u_0135_s01,ins_u_0135_004,{},v2.3.0-fixed +evt_001884,u_0047,signup_completed,2026-06-18T14:37:00Z,u_0047_s01,ins_u_0047_002,{},v2.3.0-fixed +evt_001885,u_0115,activation_completed,2026-06-18T14:38:00Z,u_0115_s01,ins_u_0115_006,{},v2.3.0-fixed +evt_001886,u_0449,feature_used,2026-06-18T14:38:00Z,u_0449_s01,ins_u_0449_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001887,u_0627,signup_started,2026-06-18T14:41:00Z,u_0627_s01,ins_u_0627_001,{},v2.3.0-fixed +evt_001888,u_0111,profile_saved,2026-06-18T14:42:00Z,u_0111_s01,ins_u_0111_003,{},v2.3.0-fixed +evt_001889,u_0302,activation_completed,2026-06-18T14:43:00Z,u_0302_s01,ins_u_0302_005,{},v2.3.0-fixed +evt_001890,u_0047,profile_saved,2026-06-18T14:46:00Z,u_0047_s01,ins_u_0047_003,{},v2.3.0-fixed +evt_001891,u_0495,signup_started,2026-06-18T14:47:00Z,u_0495_s01,ins_u_0495_001,{},v2.3.0-fixed +evt_001892,u_0627,signup_completed,2026-06-18T14:47:00Z,u_0627_s01,ins_u_0627_002,{},v2.3.0-fixed +evt_001893,u_0773,signup_started,2026-06-18T14:47:00Z,u_0773_s01,ins_u_0773_001,{},v2.3.0-fixed +evt_001894,u_0047,onboarding_step_viewed,2026-06-18T14:48:00Z,u_0047_s01,ins_u_0047_004,{},v2.3.0-fixed +evt_001895,u_0056,signup_started,2026-06-18T14:49:00Z,u_0056_s01,ins_u_0056_001,{},v2.3.0-fixed +evt_001896,u_0111,feature_used,2026-06-18T14:49:00Z,u_0111_s01,ins_u_0111_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001897,u_0773,signup_completed,2026-06-18T14:50:00Z,u_0773_s01,ins_u_0773_002,{},v2.3.0-fixed +evt_001898,u_0567,signup_started,2026-06-18T14:51:00Z,u_0567_s01,ins_u_0567_001,{},v2.3.0-fixed +evt_001899,u_0495,session_abandoned,2026-06-18T14:52:00Z,u_0495_s01,ins_u_0495_002,{},v2.3.0-fixed +evt_001900,u_0589,onboarding_completed,2026-06-18T14:52:00Z,u_0589_s01,ins_u_0589_006,"{""completed_at"": ""2026-06-18T15:01:00Z""}",v2.3.0-fixed +evt_001901,u_0627,session_abandoned,2026-06-18T14:52:00Z,u_0627_s01,ins_u_0627_003,{},v2.3.0-fixed +evt_001902,u_0367,signup_started,2026-06-18T14:53:00Z,u_0367_s01,ins_u_0367_001,{},v2.3.0-fixed +evt_001903,u_0189,signup_started,2026-06-18T14:54:00Z,u_0189_s01,ins_u_0189_001,{},v2.3.0-fixed +evt_001904,u_0449,onboarding_completed,2026-06-18T14:54:00Z,u_0449_s01,ins_u_0449_006,"{""completed_at"": ""2026-06-18T15:06:00Z""}",v2.3.0-fixed +evt_001905,u_0189,session_abandoned,2026-06-18T14:55:00Z,u_0189_s01,ins_u_0189_002,{},v2.3.0-fixed +evt_001906,u_0056,signup_completed,2026-06-18T14:56:00Z,u_0056_s01,ins_u_0056_002,{},v2.3.0-fixed +evt_001907,u_0367,signup_completed,2026-06-18T14:56:00Z,u_0367_s01,ins_u_0367_002,{},v2.3.0-fixed +evt_001908,u_0567,signup_completed,2026-06-18T14:56:00Z,u_0567_s01,ins_u_0567_002,{},v2.3.0-fixed +evt_001909,u_0773,session_abandoned,2026-06-18T14:59:00Z,u_0773_s01,ins_u_0773_003,{},v2.3.0-fixed +evt_001910,u_0367,session_abandoned,2026-06-18T15:04:00Z,u_0367_s01,ins_u_0367_003,{},v2.3.0-fixed +evt_001911,u_0567,profile_saved,2026-06-18T15:04:00Z,u_0567_s01,ins_u_0567_003,{},v2.3.0-fixed +evt_001912,u_0056,profile_saved,2026-06-18T15:05:00Z,u_0056_s01,ins_u_0056_003,{},v2.3.0-fixed +evt_001913,u_0135,onboarding_completed,2026-06-18T15:05:00Z,u_0135_s01,ins_u_0135_005,"{""completed_at"": ""2026-06-18T15:09:00Z""}",v2.3.0-fixed +evt_001914,u_0056,onboarding_step_viewed,2026-06-18T15:07:00Z,u_0056_s01,ins_u_0056_004,{},v2.3.0-fixed +evt_001915,u_0536,signup_started,2026-06-18T15:08:00Z,u_0536_s01,ins_u_0536_001,{},v2.3.0-fixed +evt_001916,u_0567,onboarding_step_viewed,2026-06-18T15:09:00Z,u_0567_s01,ins_u_0567_004,{},v2.3.0-fixed +evt_001917,u_0056,feature_used,2026-06-18T15:16:00Z,u_0056_s01,ins_u_0056_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001918,u_0536,session_abandoned,2026-06-18T15:16:00Z,u_0536_s01,ins_u_0536_002,{},v2.3.0-fixed +evt_001919,u_0111,onboarding_completed,2026-06-18T15:17:00Z,u_0111_s01,ins_u_0111_005,"{""completed_at"": ""2026-06-18T15:14:00Z""}",v2.3.0-fixed +evt_001920,u_0165,signup_started,2026-06-18T15:17:00Z,u_0165_s01,ins_u_0165_001,{},v2.3.0-fixed +evt_001921,u_0064,signup_started,2026-06-18T15:18:00Z,u_0064_s01,ins_u_0064_001,{},v2.3.0-fixed +evt_001922,u_0134,signup_started,2026-06-18T15:20:00Z,u_0134_s01,ins_u_0134_001,{},v2.3.0-fixed +evt_001923,u_0589,activation_completed,2026-06-18T15:20:00Z,u_0589_s01,ins_u_0589_007,{},v2.3.0-fixed +evt_001924,u_0165,session_abandoned,2026-06-18T15:22:00Z,u_0165_s01,ins_u_0165_002,{},v2.3.0-fixed +evt_001925,u_0134,signup_completed,2026-06-18T15:24:00Z,u_0134_s01,ins_u_0134_002,{},v2.3.0-fixed +evt_001926,u_0064,signup_completed,2026-06-18T15:25:00Z,u_0064_s01,ins_u_0064_002,{},v2.3.0-fixed +evt_001927,u_0134,session_abandoned,2026-06-18T15:30:00Z,u_0134_s01,ins_u_0134_003,{},v2.3.0-fixed +evt_001928,u_0567,onboarding_completed,2026-06-18T15:30:00Z,u_0567_s01,ins_u_0567_005,"{""completed_at"": ""2026-06-18T15:30:00Z""}",v2.3.0-fixed +evt_001929,u_0064,session_abandoned,2026-06-18T15:34:00Z,u_0064_s01,ins_u_0064_003,{},v2.3.0-fixed +evt_001930,u_0056,onboarding_completed,2026-06-18T15:35:00Z,u_0056_s01,ins_u_0056_006,"{""completed_at"": ""2026-06-18T15:31:00Z""}",v2.3.0-fixed +evt_001931,u_0449,activation_completed,2026-06-18T15:35:00Z,u_0449_s01,ins_u_0449_007,{},v2.3.0-fixed +evt_001932,u_0470,signup_started,2026-06-18T15:36:00Z,u_0470_s01,ins_u_0470_001,{},v2.3.0-fixed +evt_001933,u_0139,signup_started,2026-06-18T15:37:00Z,u_0139_s01,ins_u_0139_001,{},v2.3.0-fixed +evt_001934,u_0139,signup_completed,2026-06-18T15:39:00Z,u_0139_s01,ins_u_0139_002,{},v2.3.0-fixed +evt_001935,u_0470,signup_completed,2026-06-18T15:39:00Z,u_0470_s01,ins_u_0470_002,{},v2.3.0-fixed +evt_001936,u_0491,signup_started,2026-06-18T15:41:00Z,u_0491_s01,ins_u_0491_001,{},v2.3.0-fixed +evt_001937,u_0545,signup_started,2026-06-18T15:45:00Z,u_0545_s01,ins_u_0545_001,{},v2.3.0-fixed +evt_001938,u_0139,profile_saved,2026-06-18T15:46:00Z,u_0139_s01,ins_u_0139_003,{},v2.3.0-fixed +evt_001939,u_0491,signup_completed,2026-06-18T15:46:00Z,u_0491_s01,ins_u_0491_002,{},v2.3.0-fixed +evt_001940,u_0470,profile_saved,2026-06-18T15:47:00Z,u_0470_s01,ins_u_0470_003,{},v2.3.0-fixed +evt_001941,u_0139,onboarding_step_viewed,2026-06-18T15:48:00Z,u_0139_s01,ins_u_0139_004,{},v2.3.0-fixed +evt_001942,u_0135,activation_completed,2026-06-18T15:50:00Z,u_0135_s01,ins_u_0135_006,{},v2.3.0-fixed +evt_001943,u_0567,activation_completed,2026-06-18T15:50:00Z,u_0567_s01,ins_u_0567_006,{},v2.3.0-fixed +evt_001944,u_0470,onboarding_step_viewed,2026-06-18T15:53:00Z,u_0470_s01,ins_u_0470_004,{},v2.3.0-fixed +evt_001945,u_0545,signup_completed,2026-06-18T15:53:00Z,u_0545_s01,ins_u_0545_002,{},v2.3.0-fixed +evt_001946,u_0723,signup_started,2026-06-18T15:53:00Z,u_0723_s01,ins_u_0723_001,{},v2.3.0-fixed +evt_001947,u_0491,session_abandoned,2026-06-18T15:55:00Z,u_0491_s01,ins_u_0491_003,{},v2.3.0-fixed +evt_001948,u_0723,signup_completed,2026-06-18T15:55:00Z,u_0723_s01,ins_u_0723_002,{},v2.3.0-fixed +evt_001949,u_0056,activation_completed,2026-06-18T15:57:00Z,u_0056_s01,ins_u_0056_007,{},v2.3.0-fixed +evt_001950,u_0553,signup_started,2026-06-18T15:58:00Z,u_0553_s01,ins_u_0553_001,{},v2.3.0-fixed +evt_001951,u_0553,signup_completed,2026-06-18T16:02:00Z,u_0553_s01,ins_u_0553_002,{},v2.3.0-fixed +evt_001952,u_0136,signup_started,2026-06-18T16:03:00Z,u_0136_s01,ins_u_0136_001,{},v2.3.0-fixed +evt_001953,u_0545,profile_saved,2026-06-18T16:03:00Z,u_0545_s01,ins_u_0545_003,{},v2.3.0-fixed +evt_001954,u_0553,profile_saved,2026-06-18T16:04:00Z,u_0553_s01,ins_u_0553_003,{},v2.3.0-fixed +evt_001955,u_0553,error_shown,2026-06-18T16:05:00Z,u_0553_s01,ins_u_0553_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001956,u_0723,profile_saved,2026-06-18T16:05:00Z,u_0723_s01,ins_u_0723_003,{},v2.3.0-fixed +evt_001957,u_0470,feature_used,2026-06-18T16:07:00Z,u_0470_s01,ins_u_0470_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_001958,u_0139,feature_used,2026-06-18T16:08:00Z,u_0139_s01,ins_u_0139_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001959,u_0553,onboarding_step_viewed,2026-06-18T16:08:00Z,u_0553_s01,ins_u_0553_005,{},v2.3.0-fixed +evt_001960,u_0545,onboarding_step_viewed,2026-06-18T16:09:00Z,u_0545_s01,ins_u_0545_004,{},v2.3.0-fixed +evt_001961,u_0522,signup_started,2026-06-18T16:10:00Z,u_0522_s01,ins_u_0522_001,{},v2.3.0-fixed +evt_001962,u_0723,onboarding_step_viewed,2026-06-18T16:10:00Z,u_0723_s01,ins_u_0723_004,{},v2.3.0-fixed +evt_001963,u_0136,session_abandoned,2026-06-18T16:11:00Z,u_0136_s01,ins_u_0136_002,{},v2.3.0-fixed +evt_001964,u_0175,signup_started,2026-06-18T16:15:00Z,u_0175_s01,ins_u_0175_001,{},v2.3.0-fixed +evt_001965,u_0139,onboarding_completed,2026-06-18T16:16:00Z,u_0139_s01,ins_u_0139_006,"{""completed_at"": ""2026-06-18T16:17:00Z""}",v2.3.0-fixed +evt_001966,u_0522,session_abandoned,2026-06-18T16:17:00Z,u_0522_s01,ins_u_0522_002,{},v2.3.0-fixed +evt_001967,u_0723,feature_used,2026-06-18T16:18:00Z,u_0723_s01,ins_u_0723_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001968,u_0553,feature_used,2026-06-18T16:20:00Z,u_0553_s01,ins_u_0553_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_001969,u_0377,signup_started,2026-06-18T16:22:00Z,u_0377_s01,ins_u_0377_001,{},v2.3.0-fixed +evt_001970,u_0175,session_abandoned,2026-06-18T16:23:00Z,u_0175_s01,ins_u_0175_002,{},v2.3.0-fixed +evt_001971,u_0022,signup_started,2026-06-18T16:25:00Z,u_0022_s01,ins_u_0022_001,{},v2.3.0-fixed +evt_001972,u_0377,signup_completed,2026-06-18T16:29:00Z,u_0377_s01,ins_u_0377_002,{},v2.3.0-fixed +evt_001973,u_0573,signup_started,2026-06-18T16:31:00Z,u_0573_s01,ins_u_0573_001,{},v2.3.0-fixed +evt_001974,u_0022,signup_completed,2026-06-18T16:33:00Z,u_0022_s01,ins_u_0022_002,{},v2.3.0-fixed +evt_001975,u_0573,session_abandoned,2026-06-18T16:33:00Z,u_0573_s01,ins_u_0573_002,{},v2.3.0-fixed +evt_001976,u_0798,signup_started,2026-06-18T16:33:00Z,u_0798_s01,ins_u_0798_001,{},v2.3.0-fixed +evt_001977,u_0545,onboarding_completed,2026-06-18T16:34:00Z,u_0545_s01,ins_u_0545_005,"{""completed_at"": ""2026-06-18T16:34:00Z""}",v2.3.0-fixed +evt_001978,u_0553,onboarding_completed,2026-06-18T16:34:00Z,u_0553_s01,ins_u_0553_007,"{""completed_at"": ""2026-06-18T16:39:00Z""}",v2.3.0-fixed +evt_001979,u_0772,signup_started,2026-06-18T16:35:00Z,u_0772_s01,ins_u_0772_001,{},v2.3.0-fixed +evt_001980,u_0377,session_abandoned,2026-06-18T16:36:00Z,u_0377_s01,ins_u_0377_003,{},v2.3.0-fixed +evt_001981,u_0772,signup_completed,2026-06-18T16:36:00Z,u_0772_s01,ins_u_0772_002,{},v2.3.0-fixed +evt_001982,u_0723,onboarding_completed,2026-06-18T16:37:00Z,u_0723_s01,ins_u_0723_006,"{""completed_at"": ""2026-06-18T16:44:00Z""}",v2.3.0-fixed +evt_001983,u_0022,profile_saved,2026-06-18T16:38:00Z,u_0022_s01,ins_u_0022_003,{},v2.3.0-fixed +evt_001984,u_0022,error_shown,2026-06-18T16:39:00Z,u_0022_s01,ins_u_0022_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_001985,u_0798,signup_completed,2026-06-18T16:40:00Z,u_0798_s01,ins_u_0798_002,{},v2.3.0-fixed +evt_001986,u_0374,signup_started,2026-06-18T16:42:00Z,u_0374_s01,ins_u_0374_001,{},v2.3.0-fixed +evt_001987,u_0772,session_abandoned,2026-06-18T16:42:00Z,u_0772_s01,ins_u_0772_003,{},v2.3.0-fixed +evt_001988,u_0374,signup_completed,2026-06-18T16:43:00Z,u_0374_s01,ins_u_0374_002,{},v2.3.0-fixed +evt_001989,u_0022,onboarding_step_viewed,2026-06-18T16:44:00Z,u_0022_s01,ins_u_0022_005,{},v2.3.0-fixed +evt_001990,u_0470,activation_completed,2026-06-18T16:45:00Z,u_0470_s01,ins_u_0470_006,{},v2.3.0-fixed +evt_001991,u_0798,profile_saved,2026-06-18T16:49:00Z,u_0798_s01,ins_u_0798_003,{},v2.3.0-fixed +evt_001992,u_0374,profile_saved,2026-06-18T16:51:00Z,u_0374_s01,ins_u_0374_003,{},v2.3.0-fixed +evt_001993,u_0798,onboarding_step_viewed,2026-06-18T16:52:00Z,u_0798_s01,ins_u_0798_004,{},v2.3.0-fixed +evt_001994,u_0374,onboarding_step_viewed,2026-06-18T16:56:00Z,u_0374_s01,ins_u_0374_004,{},v2.3.0-fixed +evt_001995,u_0032,signup_started,2026-06-18T16:58:00Z,u_0032_s01,ins_u_0032_001,{},v2.3.0-fixed +evt_001996,u_0391,signup_started,2026-06-18T17:00:00Z,u_0391_s01,ins_u_0391_001,{},v2.3.0-fixed +evt_001997,u_0139,activation_completed,2026-06-18T17:03:00Z,u_0139_s01,ins_u_0139_007,{},v2.3.0-fixed +evt_001998,u_0260,signup_started,2026-06-18T17:03:00Z,u_0260_s01,ins_u_0260_001,{},v2.3.0-fixed +evt_001999,u_0022,onboarding_completed,2026-06-18T17:04:00Z,u_0022_s01,ins_u_0022_006,"{""completed_at"": ""2026-06-18T17:04:00Z""}",v2.3.0-fixed +evt_002000,u_0260,session_abandoned,2026-06-18T17:04:00Z,u_0260_s01,ins_u_0260_002,{},v2.3.0-fixed +evt_002001,u_0350,signup_started,2026-06-18T17:04:00Z,u_0350_s01,ins_u_0350_001,{},v2.3.0-fixed +evt_002002,u_0032,signup_completed,2026-06-18T17:06:00Z,u_0032_s01,ins_u_0032_002,{},v2.3.0-fixed +evt_002003,u_0391,signup_completed,2026-06-18T17:08:00Z,u_0391_s01,ins_u_0391_002,{},v2.3.0-fixed +evt_002004,u_0350,signup_completed,2026-06-18T17:09:00Z,u_0350_s01,ins_u_0350_002,{},v2.3.0-fixed +evt_002005,u_0032,profile_saved,2026-06-18T17:13:00Z,u_0032_s01,ins_u_0032_003,{},v2.3.0-fixed +evt_002006,u_0374,feature_used,2026-06-18T17:14:00Z,u_0374_s01,ins_u_0374_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002007,u_0557,signup_started,2026-06-18T17:14:00Z,u_0557_s01,ins_u_0557_001,{},v2.3.0-fixed +evt_002008,u_0391,profile_saved,2026-06-18T17:15:00Z,u_0391_s01,ins_u_0391_003,{},v2.3.0-fixed +evt_002009,u_0391,error_shown,2026-06-18T17:16:00Z,u_0391_s01,ins_u_0391_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002010,u_0557,signup_completed,2026-06-18T17:17:00Z,u_0557_s01,ins_u_0557_002,{},v2.3.0-fixed +evt_002011,u_0685,signup_started,2026-06-18T17:17:00Z,u_0685_s01,ins_u_0685_001,{},v2.3.0-fixed +evt_002012,u_0032,onboarding_step_viewed,2026-06-18T17:18:00Z,u_0032_s01,ins_u_0032_004,{},v2.3.0-fixed +evt_002013,u_0350,profile_saved,2026-06-18T17:18:00Z,u_0350_s01,ins_u_0350_003,{},v2.3.0-fixed +evt_002014,u_0350,onboarding_step_viewed,2026-06-18T17:21:00Z,u_0350_s01,ins_u_0350_004,{},v2.3.0-fixed +evt_002015,u_0685,signup_completed,2026-06-18T17:21:00Z,u_0685_s01,ins_u_0685_002,{},v2.3.0-fixed +evt_002016,u_0557,profile_saved,2026-06-18T17:23:00Z,u_0557_s01,ins_u_0557_003,{},v2.3.0-fixed +evt_002017,u_0032,feature_used,2026-06-18T17:25:00Z,u_0032_s01,ins_u_0032_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002018,u_0021,signup_started,2026-06-18T17:27:00Z,u_0021_s01,ins_u_0021_001,{},v2.3.0-fixed +evt_002019,u_0798,onboarding_completed,2026-06-18T17:27:00Z,u_0798_s01,ins_u_0798_005,"{""completed_at"": ""2026-06-18T17:28:00Z""}",v2.3.0-fixed +evt_002020,u_0021,signup_completed,2026-06-18T17:29:00Z,u_0021_s01,ins_u_0021_002,{},v2.3.0-fixed +evt_002021,u_0685,profile_saved,2026-06-18T17:29:00Z,u_0685_s01,ins_u_0685_003,{},v2.3.0-fixed +evt_002022,u_0557,feature_used,2026-06-18T17:31:00Z,u_0557_s01,ins_u_0557_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002023,u_0374,onboarding_completed,2026-06-18T17:33:00Z,u_0374_s01,ins_u_0374_006,"{""completed_at"": ""2026-06-18T17:30:00Z""}",v2.3.0-fixed +evt_002024,u_0391,feature_used,2026-06-18T17:34:00Z,u_0391_s01,ins_u_0391_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002025,u_0685,onboarding_step_viewed,2026-06-18T17:35:00Z,u_0685_s01,ins_u_0685_004,{},v2.3.0-fixed +evt_002026,u_0021,profile_saved,2026-06-18T17:39:00Z,u_0021_s01,ins_u_0021_003,{},v2.3.0-fixed +evt_002027,u_0021,onboarding_step_viewed,2026-06-18T17:42:00Z,u_0021_s01,ins_u_0021_004,{},v2.3.0-fixed +evt_002028,u_0032,onboarding_completed,2026-06-18T17:46:00Z,u_0032_s01,ins_u_0032_006,"{""completed_at"": ""2026-06-18T17:53:00Z""}",v2.3.0-fixed +evt_002029,u_0685,feature_used,2026-06-18T17:47:00Z,u_0685_s01,ins_u_0685_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002030,u_0798,activation_completed,2026-06-18T17:48:00Z,u_0798_s01,ins_u_0798_006,{},v2.3.0-fixed +evt_002031,u_0391,onboarding_completed,2026-06-18T17:49:00Z,u_0391_s01,ins_u_0391_006,"{""completed_at"": ""2026-06-18T17:54:00Z""}",v2.3.0-fixed +evt_002032,u_0022,activation_completed,2026-06-18T17:52:00Z,u_0022_s01,ins_u_0022_007,{},v2.3.0-fixed +evt_002033,u_0132,signup_started,2026-06-18T17:52:00Z,u_0132_s01,ins_u_0132_001,{},v2.3.0-fixed +evt_002034,u_0132,signup_completed,2026-06-18T17:55:00Z,u_0132_s01,ins_u_0132_002,{},v2.3.0-fixed +evt_002035,u_0193,signup_started,2026-06-18T17:55:00Z,u_0193_s01,ins_u_0193_001,{},v2.3.0-fixed +evt_002036,u_0374,activation_completed,2026-06-18T17:55:00Z,u_0374_s01,ins_u_0374_007,{},v2.3.0-fixed +evt_002037,u_0193,signup_completed,2026-06-18T17:59:00Z,u_0193_s01,ins_u_0193_002,{},v2.3.0-fixed +evt_002038,u_0755,signup_started,2026-06-18T17:59:00Z,u_0755_s01,ins_u_0755_001,{},v2.3.0-fixed +evt_002039,u_0132,profile_saved,2026-06-18T18:00:00Z,u_0132_s01,ins_u_0132_003,{},v2.3.0-fixed +evt_002040,u_0193,profile_saved,2026-06-18T18:01:00Z,u_0193_s01,ins_u_0193_003,{},v2.3.0-fixed +evt_002041,u_0557,onboarding_completed,2026-06-18T18:01:00Z,u_0557_s01,ins_u_0557_005,"{""completed_at"": ""2026-06-18T17:57:00Z""}",v2.3.0-fixed +evt_002042,u_0350,onboarding_completed,2026-06-18T18:03:00Z,u_0350_s01,ins_u_0350_005,"{""completed_at"": ""2026-06-18T17:49:00Z""}",v2.3.0-fixed +evt_002043,u_0685,onboarding_completed,2026-06-18T18:03:00Z,u_0685_s01,ins_u_0685_006,"{""completed_at"": ""2026-06-18T18:04:00Z""}",v2.3.0-fixed +evt_002044,u_0065,signup_started,2026-06-18T18:04:00Z,u_0065_s01,ins_u_0065_001,{},v2.3.0-fixed +evt_002045,u_0193,onboarding_step_viewed,2026-06-18T18:04:00Z,u_0193_s01,ins_u_0193_004,{},v2.3.0-fixed +evt_002046,u_0032,activation_completed,2026-06-18T18:05:00Z,u_0032_s01,ins_u_0032_007,{},v2.3.0-fixed +evt_002047,u_0065,signup_completed,2026-06-18T18:05:00Z,u_0065_s01,ins_u_0065_002,{},v2.3.0-fixed +evt_002048,u_0132,onboarding_step_viewed,2026-06-18T18:05:00Z,u_0132_s01,ins_u_0132_004,{},v2.3.0-fixed +evt_002049,u_0755,signup_completed,2026-06-18T18:06:00Z,u_0755_s01,ins_u_0755_002,{},v2.3.0-fixed +evt_002050,u_0193,feature_used,2026-06-18T18:09:00Z,u_0193_s01,ins_u_0193_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002051,u_0755,profile_saved,2026-06-18T18:09:00Z,u_0755_s01,ins_u_0755_003,{},v2.3.0-fixed +evt_002052,u_0065,profile_saved,2026-06-18T18:10:00Z,u_0065_s01,ins_u_0065_003,{},v2.3.0-fixed +evt_002053,u_0755,error_shown,2026-06-18T18:10:00Z,u_0755_s01,ins_u_0755_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002054,u_0557,activation_completed,2026-06-18T18:11:00Z,u_0557_s01,ins_u_0557_006,{},v2.3.0-fixed +evt_002055,u_0065,onboarding_step_viewed,2026-06-18T18:14:00Z,u_0065_s01,ins_u_0065_004,{},v2.3.0-fixed +evt_002056,u_0755,onboarding_step_viewed,2026-06-18T18:14:00Z,u_0755_s01,ins_u_0755_005,{},v2.3.0-fixed +evt_002057,u_0755,feature_used,2026-06-18T18:16:00Z,u_0755_s01,ins_u_0755_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002058,u_0021,onboarding_completed,2026-06-18T18:17:00Z,u_0021_s01,ins_u_0021_005,"{""completed_at"": ""2026-06-18T18:10:00Z""}",v2.3.0-fixed +evt_002059,u_0357,signup_started,2026-06-18T18:18:00Z,u_0357_s01,ins_u_0357_001,{},v2.3.0-fixed +evt_002060,u_0357,signup_completed,2026-06-18T18:25:00Z,u_0357_s01,ins_u_0357_002,{},v2.3.0-fixed +evt_002061,u_0525,signup_started,2026-06-18T18:25:00Z,u_0525_s01,ins_u_0525_001,{},v2.3.0-fixed +evt_002062,u_0525,signup_completed,2026-06-18T18:29:00Z,u_0525_s01,ins_u_0525_002,{},v2.3.0-fixed +evt_002063,u_0065,feature_used,2026-06-18T18:31:00Z,u_0065_s01,ins_u_0065_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002064,u_0021,activation_completed,2026-06-18T18:33:00Z,u_0021_s01,ins_u_0021_006,{},v2.3.0-fixed +evt_002065,u_0357,profile_saved,2026-06-18T18:33:00Z,u_0357_s01,ins_u_0357_003,{},v2.3.0-fixed +evt_002066,u_0525,profile_saved,2026-06-18T18:37:00Z,u_0525_s01,ins_u_0525_003,{},v2.3.0-fixed +evt_002067,u_0357,onboarding_step_viewed,2026-06-18T18:39:00Z,u_0357_s01,ins_u_0357_004,{},v2.3.0-fixed +evt_002068,u_0065,onboarding_completed,2026-06-18T18:41:00Z,u_0065_s01,ins_u_0065_006,"{""completed_at"": ""2026-06-18T18:50:00Z""}",v2.3.0-fixed +evt_002069,u_0525,onboarding_step_viewed,2026-06-18T18:42:00Z,u_0525_s01,ins_u_0525_004,{},v2.3.0-fixed +evt_002070,u_0755,onboarding_completed,2026-06-18T18:44:00Z,u_0755_s01,ins_u_0755_007,"{""completed_at"": ""2026-06-18T18:39:00Z""}",v2.3.0-fixed +evt_002071,u_0132,onboarding_completed,2026-06-18T18:45:00Z,u_0132_s01,ins_u_0132_005,"{""completed_at"": ""2026-06-18T18:36:00Z""}",v2.3.0-fixed +evt_002072,u_0193,onboarding_completed,2026-06-18T18:46:00Z,u_0193_s01,ins_u_0193_006,"{""completed_at"": ""2026-06-18T18:28:00Z""}",v2.3.0-fixed +evt_002073,u_0525,feature_used,2026-06-18T18:49:00Z,u_0525_s01,ins_u_0525_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002074,u_0193,activation_completed,2026-06-18T18:52:00Z,u_0193_s01,ins_u_0193_007,{},v2.3.0-fixed +evt_002075,u_0783,signup_started,2026-06-18T18:52:00Z,u_0783_s01,ins_u_0783_001,{},v2.3.0-fixed +evt_002076,u_0783,signup_completed,2026-06-18T18:55:00Z,u_0783_s01,ins_u_0783_002,{},v2.3.0-fixed +evt_002077,u_0036,signup_started,2026-06-18T18:56:00Z,u_0036_s01,ins_u_0036_001,{},v2.3.0-fixed +evt_002078,u_0783,profile_saved,2026-06-18T18:59:00Z,u_0783_s01,ins_u_0783_003,{},v2.3.0-fixed +evt_002079,u_0464,signup_started,2026-06-18T19:03:00Z,u_0464_s01,ins_u_0464_001,{},v2.3.0-fixed +evt_002080,u_0036,signup_completed,2026-06-18T19:04:00Z,u_0036_s01,ins_u_0036_002,{},v2.3.0-fixed +evt_002081,u_0464,signup_completed,2026-06-18T19:04:00Z,u_0464_s01,ins_u_0464_002,{},v2.3.0-fixed +evt_002082,u_0783,onboarding_step_viewed,2026-06-18T19:04:00Z,u_0783_s01,ins_u_0783_004,{},v2.3.0-fixed +evt_002083,u_0397,signup_started,2026-06-18T19:05:00Z,u_0397_s01,ins_u_0397_001,{},v2.3.0-fixed +evt_002084,u_0525,onboarding_completed,2026-06-18T19:05:00Z,u_0525_s01,ins_u_0525_006,"{""completed_at"": ""2026-06-18T19:06:00Z""}",v2.3.0-fixed +evt_002085,u_0397,signup_completed,2026-06-18T19:06:00Z,u_0397_s01,ins_u_0397_002,{},v2.3.0-fixed +evt_002086,u_0149,signup_started,2026-06-18T19:10:00Z,u_0149_s01,ins_u_0149_001,{},v2.3.0-fixed +evt_002087,u_0383,signup_started,2026-06-18T19:10:00Z,u_0383_s01,ins_u_0383_001,{},v2.3.0-fixed +evt_002088,u_0464,session_abandoned,2026-06-18T19:11:00Z,u_0464_s01,ins_u_0464_003,{},v2.3.0-fixed +evt_002089,u_0036,profile_saved,2026-06-18T19:14:00Z,u_0036_s01,ins_u_0036_003,{},v2.3.0-fixed +evt_002090,u_0149,signup_completed,2026-06-18T19:14:00Z,u_0149_s01,ins_u_0149_002,{},v2.3.0-fixed +evt_002091,u_0397,session_abandoned,2026-06-18T19:15:00Z,u_0397_s01,ins_u_0397_003,{},v2.3.0-fixed +evt_002092,u_0036,onboarding_step_viewed,2026-06-18T19:17:00Z,u_0036_s01,ins_u_0036_004,{},v2.3.0-fixed +evt_002093,u_0383,session_abandoned,2026-06-18T19:17:00Z,u_0383_s01,ins_u_0383_002,{},v2.3.0-fixed +evt_002094,u_0149,session_abandoned,2026-06-18T19:23:00Z,u_0149_s01,ins_u_0149_003,{},v2.3.0-fixed +evt_002095,u_0036,feature_used,2026-06-18T19:28:00Z,u_0036_s01,ins_u_0036_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002096,u_0700,signup_started,2026-06-18T19:34:00Z,u_0700_s01,ins_u_0700_001,{},v2.3.0-fixed +evt_002097,u_0700,session_abandoned,2026-06-18T19:40:00Z,u_0700_s01,ins_u_0700_002,{},v2.3.0-fixed +evt_002098,u_0783,onboarding_completed,2026-06-18T19:44:00Z,u_0783_s01,ins_u_0783_005,"{""completed_at"": ""2026-06-18T19:27:00Z""}",v2.3.0-fixed +evt_002099,u_0357,activation_completed,2026-06-18T19:45:00Z,u_0357_s01,ins_u_0357_005,{},v2.3.0-fixed +evt_002100,u_0036,onboarding_completed,2026-06-18T19:50:00Z,u_0036_s01,ins_u_0036_006,"{""completed_at"": ""2026-06-18T19:52:00Z""}",v2.3.0-fixed +evt_002101,u_0537,signup_started,2026-06-18T20:06:00Z,u_0537_s01,ins_u_0537_001,{},v2.3.0-fixed +evt_002102,u_0537,signup_completed,2026-06-18T20:13:00Z,u_0537_s01,ins_u_0537_002,{},v2.3.0-fixed +evt_002103,u_0036,activation_completed,2026-06-18T20:14:00Z,u_0036_s01,ins_u_0036_007,{},v2.3.0-fixed +evt_002104,u_0099,signup_started,2026-06-18T20:22:00Z,u_0099_s01,ins_u_0099_001,{},v2.3.0-fixed +evt_002105,u_0537,profile_saved,2026-06-18T20:22:00Z,u_0537_s01,ins_u_0537_003,{},v2.3.0-fixed +evt_002106,u_0099,signup_completed,2026-06-18T20:27:00Z,u_0099_s01,ins_u_0099_002,{},v2.3.0-fixed +evt_002107,u_0537,onboarding_step_viewed,2026-06-18T20:27:00Z,u_0537_s01,ins_u_0537_004,{},v2.3.0-fixed +evt_002108,u_0099,profile_saved,2026-06-18T20:36:00Z,u_0099_s01,ins_u_0099_003,{},v2.3.0-fixed +evt_002109,u_0099,onboarding_step_viewed,2026-06-18T20:38:00Z,u_0099_s01,ins_u_0099_004,{},v2.3.0-fixed +evt_002110,u_0099,feature_used,2026-06-18T20:49:00Z,u_0099_s01,ins_u_0099_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002111,u_0537,onboarding_completed,2026-06-18T20:53:00Z,u_0537_s01,ins_u_0537_005,"{""completed_at"": ""2026-06-18T20:58:00Z""}",v2.3.0-fixed +evt_002112,u_0096,signup_started,2026-06-18T20:58:00Z,u_0096_s01,ins_u_0096_001,{},v2.3.0-fixed +evt_002113,u_0096,signup_completed,2026-06-18T21:01:00Z,u_0096_s01,ins_u_0096_002,{},v2.3.0-fixed +evt_002114,u_0096,profile_saved,2026-06-18T21:06:00Z,u_0096_s01,ins_u_0096_003,{},v2.3.0-fixed +evt_002115,u_0096,onboarding_step_viewed,2026-06-18T21:08:00Z,u_0096_s01,ins_u_0096_004,{},v2.3.0-fixed +evt_002116,u_0099,onboarding_completed,2026-06-18T21:16:00Z,u_0099_s01,ins_u_0099_006,"{""completed_at"": ""2026-06-18T21:02:00Z""}",v2.3.0-fixed +evt_002117,u_0099,activation_completed,2026-06-18T21:23:00Z,u_0099_s01,ins_u_0099_007,{},v2.3.0-fixed +evt_002118,u_0096,onboarding_completed,2026-06-18T21:47:00Z,u_0096_s01,ins_u_0096_005,"{""completed_at"": ""2026-06-18T21:42:00Z""}",v2.3.0-fixed +evt_002119,u_0310,return_visit,2026-06-19T02:37:00Z,u_0310_s02,ins_u_0310_008,{},v2.3.0-fixed +evt_002120,u_0310,feature_used,2026-06-19T02:42:00Z,u_0310_s02,ins_u_0310_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002121,u_0416,return_visit,2026-06-19T04:14:00Z,u_0416_s02,ins_u_0416_006,{},v2.3.0-fixed +evt_002122,u_0008,return_visit,2026-06-19T05:31:00Z,u_0008_s02,ins_u_0008_008,{},v2.3.0-fixed +evt_002123,u_0008,feature_used,2026-06-19T05:36:00Z,u_0008_s02,ins_u_0008_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002124,u_0414,return_visit,2026-06-19T06:42:00Z,u_0414_s02,ins_u_0414_008,{},v2.3.0-fixed +evt_002125,u_0415,return_visit,2026-06-19T07:44:00Z,u_0415_s02,ins_u_0415_007,{},v2.3.0-fixed +evt_002126,u_0415,feature_used,2026-06-19T07:49:00Z,u_0415_s02,ins_u_0415_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002127,u_0787,signup_started,2026-06-19T08:04:00Z,u_0787_s01,ins_u_0787_001,{},v2.3.0-fixed +evt_002128,u_0711,return_visit,2026-06-19T08:05:00Z,u_0711_s02,ins_u_0711_007,{},v2.3.0-fixed +evt_002129,u_0133,return_visit,2026-06-19T08:07:00Z,u_0133_s02,ins_u_0133_007,{},v2.3.0-fixed +evt_002130,u_0711,feature_used,2026-06-19T08:10:00Z,u_0711_s02,ins_u_0711_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002131,u_0787,signup_completed,2026-06-19T08:10:00Z,u_0787_s01,ins_u_0787_002,{},v2.3.0-fixed +evt_002132,u_0133,feature_used,2026-06-19T08:12:00Z,u_0133_s02,ins_u_0133_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002133,u_0011,signup_started,2026-06-19T08:13:00Z,u_0011_s01,ins_u_0011_001,{},v2.3.0-fixed +evt_002134,u_0787,profile_saved,2026-06-19T08:16:00Z,u_0787_s01,ins_u_0787_003,{},v2.3.0-fixed +evt_002135,u_0011,signup_completed,2026-06-19T08:21:00Z,u_0011_s01,ins_u_0011_002,{},v2.3.0-fixed +evt_002136,u_0070,signup_started,2026-06-19T08:22:00Z,u_0070_s01,ins_u_0070_001,{},v2.3.0-fixed +evt_002137,u_0787,onboarding_step_viewed,2026-06-19T08:22:00Z,u_0787_s01,ins_u_0787_004,{},v2.3.0-fixed +evt_002138,u_0550,signup_started,2026-06-19T08:23:00Z,u_0550_s01,ins_u_0550_001,{},v2.3.0-fixed +evt_002139,u_0011,session_abandoned,2026-06-19T08:28:00Z,u_0011_s01,ins_u_0011_003,{},v2.3.0-fixed +evt_002140,u_0070,session_abandoned,2026-06-19T08:29:00Z,u_0070_s01,ins_u_0070_002,{},v2.3.0-fixed +evt_002141,u_0550,signup_completed,2026-06-19T08:31:00Z,u_0550_s01,ins_u_0550_002,{},v2.3.0-fixed +evt_002142,u_0082,signup_started,2026-06-19T08:32:00Z,u_0082_s01,ins_u_0082_001,{},v2.3.0-fixed +evt_002143,u_0082,signup_completed,2026-06-19T08:33:00Z,u_0082_s01,ins_u_0082_002,{},v2.3.0-fixed +evt_002144,u_0550,profile_saved,2026-06-19T08:33:00Z,u_0550_s01,ins_u_0550_003,{},v2.3.0-fixed +evt_002145,u_0082,profile_saved,2026-06-19T08:35:00Z,u_0082_s01,ins_u_0082_003,{},v2.3.0-fixed +evt_002146,u_0550,onboarding_step_viewed,2026-06-19T08:35:00Z,u_0550_s01,ins_u_0550_004,{},v2.3.0-fixed +evt_002147,u_0082,onboarding_step_viewed,2026-06-19T08:40:00Z,u_0082_s01,ins_u_0082_004,{},v2.3.0-fixed +evt_002148,u_0787,onboarding_completed,2026-06-19T08:48:00Z,u_0787_s01,ins_u_0787_005,"{""completed_at"": ""2026-06-19T08:42:00Z""}",v2.3.0-fixed +evt_002149,u_0082,feature_used,2026-06-19T08:53:00Z,u_0082_s01,ins_u_0082_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002150,u_0550,feature_used,2026-06-19T08:56:00Z,u_0550_s01,ins_u_0550_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002151,u_0150,signup_started,2026-06-19T08:57:00Z,u_0150_s01,ins_u_0150_001,{},v2.3.0-fixed +evt_002152,u_0582,signup_started,2026-06-19T09:04:00Z,u_0582_s01,ins_u_0582_001,{},v2.3.0-fixed +evt_002153,u_0082,onboarding_completed,2026-06-19T09:05:00Z,u_0082_s01,ins_u_0082_006,"{""completed_at"": ""2026-06-19T09:02:00Z""}",v2.3.0-fixed +evt_002154,u_0150,signup_completed,2026-06-19T09:05:00Z,u_0150_s01,ins_u_0150_002,{},v2.3.0-fixed +evt_002155,u_0582,signup_completed,2026-06-19T09:08:00Z,u_0582_s01,ins_u_0582_002,{},v2.3.0-fixed +evt_002156,u_0150,profile_saved,2026-06-19T09:12:00Z,u_0150_s01,ins_u_0150_003,{},v2.3.0-fixed +evt_002157,u_0150,onboarding_step_viewed,2026-06-19T09:14:00Z,u_0150_s01,ins_u_0150_004,{},v2.3.0-fixed +evt_002158,u_0582,profile_saved,2026-06-19T09:18:00Z,u_0582_s01,ins_u_0582_003,{},v2.3.0-fixed +evt_002159,u_0017,signup_started,2026-06-19T09:22:00Z,u_0017_s01,ins_u_0017_001,{},v2.3.0-fixed +evt_002160,u_0582,onboarding_step_viewed,2026-06-19T09:23:00Z,u_0582_s01,ins_u_0582_004,{},v2.3.0-fixed +evt_002161,u_0468,signup_started,2026-06-19T09:25:00Z,u_0468_s01,ins_u_0468_001,{},v2.3.0-fixed +evt_002162,u_0017,session_abandoned,2026-06-19T09:26:00Z,u_0017_s01,ins_u_0017_002,{},v2.3.0-fixed +evt_002163,u_0468,session_abandoned,2026-06-19T09:32:00Z,u_0468_s01,ins_u_0468_002,{},v2.3.0-fixed +evt_002164,u_0582,feature_used,2026-06-19T09:35:00Z,u_0582_s01,ins_u_0582_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002165,u_0642,signup_started,2026-06-19T09:35:00Z,u_0642_s01,ins_u_0642_001,{},v2.3.0-fixed +evt_002166,u_0088,signup_started,2026-06-19T09:43:00Z,u_0088_s01,ins_u_0088_001,{},v2.3.0-fixed +evt_002167,u_0642,signup_completed,2026-06-19T09:43:00Z,u_0642_s01,ins_u_0642_002,{},v2.3.0-fixed +evt_002168,u_0088,signup_completed,2026-06-19T09:44:00Z,u_0088_s01,ins_u_0088_002,{},v2.3.0-fixed +evt_002169,u_0088,profile_saved,2026-06-19T09:49:00Z,u_0088_s01,ins_u_0088_003,{},v2.3.0-fixed +evt_002170,u_0642,session_abandoned,2026-06-19T09:49:00Z,u_0642_s01,ins_u_0642_003,{},v2.3.0-fixed +evt_002171,u_0088,onboarding_step_viewed,2026-06-19T09:53:00Z,u_0088_s01,ins_u_0088_004,{},v2.3.0-fixed +evt_002172,u_0150,onboarding_completed,2026-06-19T09:53:00Z,u_0150_s01,ins_u_0150_005,"{""completed_at"": ""2026-06-19T09:45:00Z""}",v2.3.0-fixed +evt_002173,u_0582,onboarding_completed,2026-06-19T10:01:00Z,u_0582_s01,ins_u_0582_006,"{""completed_at"": ""2026-06-19T09:56:00Z""}",v2.3.0-fixed +evt_002174,u_0241,signup_started,2026-06-19T10:10:00Z,u_0241_s01,ins_u_0241_001,{},v2.3.0-fixed +evt_002175,u_0241,session_abandoned,2026-06-19T10:11:00Z,u_0241_s01,ins_u_0241_002,{},v2.3.0-fixed +evt_002176,u_0076,signup_started,2026-06-19T10:13:00Z,u_0076_s01,ins_u_0076_001,{},v2.3.0-fixed +evt_002177,u_0076,session_abandoned,2026-06-19T10:14:00Z,u_0076_s01,ins_u_0076_002,{},v2.3.0-fixed +evt_002178,u_0511,signup_started,2026-06-19T10:18:00Z,u_0511_s01,ins_u_0511_001,{},v2.3.0-fixed +evt_002179,u_0511,signup_completed,2026-06-19T10:19:00Z,u_0511_s01,ins_u_0511_002,{},v2.3.0-fixed +evt_002180,u_0511,profile_saved,2026-06-19T10:21:00Z,u_0511_s01,ins_u_0511_003,{},v2.3.0-fixed +evt_002181,u_0511,onboarding_step_viewed,2026-06-19T10:25:00Z,u_0511_s01,ins_u_0511_004,{},v2.3.0-fixed +evt_002182,u_0088,onboarding_completed,2026-06-19T10:26:00Z,u_0088_s01,ins_u_0088_005,"{""completed_at"": ""2026-06-19T10:20:00Z""}",v2.3.0-fixed +evt_002183,u_0775,signup_started,2026-06-19T10:29:00Z,u_0775_s01,ins_u_0775_001,{},v2.3.0-fixed +evt_002184,u_0775,signup_completed,2026-06-19T10:30:00Z,u_0775_s01,ins_u_0775_002,{},v2.3.0-fixed +evt_002185,u_0775,profile_saved,2026-06-19T10:34:00Z,u_0775_s01,ins_u_0775_003,{},v2.3.0-fixed +evt_002186,u_0516,return_visit,2026-06-19T10:37:00Z,u_0516_s02,ins_u_0516_008,{},v2.3.0-fixed +evt_002187,u_0775,onboarding_step_viewed,2026-06-19T10:38:00Z,u_0775_s01,ins_u_0775_004,{},v2.3.0-fixed +evt_002188,u_0516,feature_used,2026-06-19T10:42:00Z,u_0516_s02,ins_u_0516_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002189,u_0511,feature_used,2026-06-19T10:46:00Z,u_0511_s01,ins_u_0511_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002190,u_0607,signup_started,2026-06-19T10:57:00Z,u_0607_s01,ins_u_0607_001,{},v2.3.0-fixed +evt_002191,u_0775,feature_used,2026-06-19T10:57:00Z,u_0775_s01,ins_u_0775_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002192,u_0511,onboarding_completed,2026-06-19T10:58:00Z,u_0511_s01,ins_u_0511_006,"{""completed_at"": ""2026-06-19T11:01:00Z""}",v2.3.0-fixed +evt_002193,u_0088,activation_completed,2026-06-19T10:59:00Z,u_0088_s01,ins_u_0088_006,{},v2.3.0-fixed +evt_002194,u_0607,signup_completed,2026-06-19T11:00:00Z,u_0607_s01,ins_u_0607_002,{},v2.3.0-fixed +evt_002195,u_0124,signup_started,2026-06-19T11:02:00Z,u_0124_s01,ins_u_0124_001,{},v2.3.0-fixed +evt_002196,u_0607,profile_saved,2026-06-19T11:05:00Z,u_0607_s01,ins_u_0607_003,{},v2.3.0-fixed +evt_002197,u_0124,signup_completed,2026-06-19T11:06:00Z,u_0124_s01,ins_u_0124_002,{},v2.3.0-fixed +evt_002198,u_0775,onboarding_completed,2026-06-19T11:07:00Z,u_0775_s01,ins_u_0775_006,"{""completed_at"": ""2026-06-19T11:08:00Z""}",v2.3.0-fixed +evt_002199,u_0042,signup_started,2026-06-19T11:08:00Z,u_0042_s01,ins_u_0042_001,{},v2.3.0-fixed +evt_002200,u_0042,signup_completed,2026-06-19T11:11:00Z,u_0042_s01,ins_u_0042_002,{},v2.3.0-fixed +evt_002201,u_0124,session_abandoned,2026-06-19T11:11:00Z,u_0124_s01,ins_u_0124_003,{},v2.3.0-fixed +evt_002202,u_0353,signup_started,2026-06-19T11:12:00Z,u_0353_s01,ins_u_0353_001,{},v2.3.0-fixed +evt_002203,u_0332,signup_started,2026-06-19T11:16:00Z,u_0332_s01,ins_u_0332_001,{},v2.3.0-fixed +evt_002204,u_0353,signup_completed,2026-06-19T11:17:00Z,u_0353_s01,ins_u_0353_002,{},v2.3.0-fixed +evt_002205,u_0042,profile_saved,2026-06-19T11:19:00Z,u_0042_s01,ins_u_0042_003,{},v2.3.0-fixed +evt_002206,u_0042,onboarding_step_viewed,2026-06-19T11:21:00Z,u_0042_s01,ins_u_0042_004,{},v2.3.0-fixed +evt_002207,u_0332,signup_completed,2026-06-19T11:24:00Z,u_0332_s01,ins_u_0332_002,{},v2.3.0-fixed +evt_002208,u_0353,profile_saved,2026-06-19T11:24:00Z,u_0353_s01,ins_u_0353_003,{},v2.3.0-fixed +evt_002209,u_0689,return_visit,2026-06-19T11:24:00Z,u_0689_s02,ins_u_0689_006,{},v2.3.0-fixed +evt_002210,u_0353,error_shown,2026-06-19T11:25:00Z,u_0353_s01,ins_u_0353_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002211,u_0689,feature_used,2026-06-19T11:29:00Z,u_0689_s02,ins_u_0689_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002212,u_0353,onboarding_step_viewed,2026-06-19T11:30:00Z,u_0353_s01,ins_u_0353_005,{},v2.3.0-fixed +evt_002213,u_0511,activation_completed,2026-06-19T11:30:00Z,u_0511_s01,ins_u_0511_007,{},v2.3.0-fixed +evt_002214,u_0636,signup_started,2026-06-19T11:30:00Z,u_0636_s01,ins_u_0636_001,{},v2.3.0-fixed +evt_002215,u_0607,onboarding_completed,2026-06-19T11:32:00Z,u_0607_s01,ins_u_0607_004,"{""completed_at"": ""2026-06-19T11:44:00Z""}",v2.3.0-fixed +evt_002216,u_0636,signup_completed,2026-06-19T11:32:00Z,u_0636_s01,ins_u_0636_002,{},v2.3.0-fixed +evt_002217,u_0332,session_abandoned,2026-06-19T11:33:00Z,u_0332_s01,ins_u_0332_003,{},v2.3.0-fixed +evt_002218,u_0353,feature_used,2026-06-19T11:35:00Z,u_0353_s01,ins_u_0353_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002219,u_0225,signup_started,2026-06-19T11:37:00Z,u_0225_s01,ins_u_0225_001,{},v2.3.0-fixed +evt_002220,u_0161,signup_started,2026-06-19T11:41:00Z,u_0161_s01,ins_u_0161_001,{},v2.3.0-fixed +evt_002221,u_0161,signup_completed,2026-06-19T11:42:00Z,u_0161_s01,ins_u_0161_002,{},v2.3.0-fixed +evt_002222,u_0636,profile_saved,2026-06-19T11:42:00Z,u_0636_s01,ins_u_0636_003,{},v2.3.0-fixed +evt_002223,u_0225,signup_completed,2026-06-19T11:43:00Z,u_0225_s01,ins_u_0225_002,{},v2.3.0-fixed +evt_002224,u_0636,onboarding_step_viewed,2026-06-19T11:46:00Z,u_0636_s01,ins_u_0636_004,{},v2.3.0-fixed +evt_002225,u_0164,signup_started,2026-06-19T11:49:00Z,u_0164_s01,ins_u_0164_001,{},v2.3.0-fixed +evt_002226,u_0225,session_abandoned,2026-06-19T11:49:00Z,u_0225_s01,ins_u_0225_003,{},v2.3.0-fixed +evt_002227,u_0161,profile_saved,2026-06-19T11:51:00Z,u_0161_s01,ins_u_0161_003,{},v2.3.0-fixed +evt_002228,u_0164,signup_completed,2026-06-19T11:53:00Z,u_0164_s01,ins_u_0164_002,{},v2.3.0-fixed +evt_002229,u_0319,signup_started,2026-06-19T11:54:00Z,u_0319_s01,ins_u_0319_001,{},v2.3.0-fixed +evt_002230,u_0161,onboarding_step_viewed,2026-06-19T11:55:00Z,u_0161_s01,ins_u_0161_004,{},v2.3.0-fixed +evt_002231,u_0164,session_abandoned,2026-06-19T11:57:00Z,u_0164_s01,ins_u_0164_003,{},v2.3.0-fixed +evt_002232,u_0042,onboarding_completed,2026-06-19T11:58:00Z,u_0042_s01,ins_u_0042_005,"{""completed_at"": ""2026-06-19T11:45:00Z""}",v2.3.0-fixed +evt_002233,u_0319,signup_completed,2026-06-19T11:59:00Z,u_0319_s01,ins_u_0319_002,{},v2.3.0-fixed +evt_002234,u_0607,activation_completed,2026-06-19T12:02:00Z,u_0607_s01,ins_u_0607_005,{},v2.3.0-fixed +evt_002235,u_0319,profile_saved,2026-06-19T12:03:00Z,u_0319_s01,ins_u_0319_003,{},v2.3.0-fixed +evt_002236,u_0658,signup_started,2026-06-19T12:05:00Z,u_0658_s01,ins_u_0658_001,{},v2.3.0-fixed +evt_002237,u_0108,signup_started,2026-06-19T12:07:00Z,u_0108_s01,ins_u_0108_001,{},v2.3.0-fixed +evt_002238,u_0319,onboarding_step_viewed,2026-06-19T12:07:00Z,u_0319_s01,ins_u_0319_004,{},v2.3.0-fixed +evt_002239,u_0108,session_abandoned,2026-06-19T12:11:00Z,u_0108_s01,ins_u_0108_002,{},v2.3.0-fixed +evt_002240,u_0319,feature_used,2026-06-19T12:11:00Z,u_0319_s01,ins_u_0319_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002241,u_0658,signup_completed,2026-06-19T12:13:00Z,u_0658_s01,ins_u_0658_002,{},v2.3.0-fixed +evt_002242,u_0658,profile_saved,2026-06-19T12:15:00Z,u_0658_s01,ins_u_0658_003,{},v2.3.0-fixed +evt_002243,u_0636,onboarding_completed,2026-06-19T12:19:00Z,u_0636_s01,ins_u_0636_005,"{""completed_at"": ""2026-06-19T12:16:00Z""}",v2.3.0-fixed +evt_002244,u_0658,onboarding_step_viewed,2026-06-19T12:19:00Z,u_0658_s01,ins_u_0658_004,{},v2.3.0-fixed +evt_002245,u_0006,signup_started,2026-06-19T12:20:00Z,u_0006_s01,ins_u_0006_001,{},v2.3.0-fixed +evt_002246,u_0240,signup_started,2026-06-19T12:20:00Z,u_0240_s01,ins_u_0240_001,{},v2.3.0-fixed +evt_002247,u_0472,signup_started,2026-06-19T12:22:00Z,u_0472_s01,ins_u_0472_001,{},v2.3.0-fixed +evt_002248,u_0006,signup_completed,2026-06-19T12:23:00Z,u_0006_s01,ins_u_0006_002,{},v2.3.0-fixed +evt_002249,u_0240,signup_completed,2026-06-19T12:25:00Z,u_0240_s01,ins_u_0240_002,{},v2.3.0-fixed +evt_002250,u_0240,profile_saved,2026-06-19T12:29:00Z,u_0240_s01,ins_u_0240_003,{},v2.3.0-fixed +evt_002251,u_0472,signup_completed,2026-06-19T12:30:00Z,u_0472_s01,ins_u_0472_002,{},v2.3.0-fixed +evt_002252,u_0006,profile_saved,2026-06-19T12:32:00Z,u_0006_s01,ins_u_0006_003,{},v2.3.0-fixed +evt_002253,u_0161,onboarding_completed,2026-06-19T12:33:00Z,u_0161_s01,ins_u_0161_005,"{""completed_at"": ""2026-06-19T12:30:00Z""}",v2.3.0-fixed +evt_002254,u_0006,onboarding_step_viewed,2026-06-19T12:34:00Z,u_0006_s01,ins_u_0006_004,{},v2.3.0-fixed +evt_002255,u_0472,profile_saved,2026-06-19T12:38:00Z,u_0472_s01,ins_u_0472_003,{},v2.3.0-fixed +evt_002256,u_0658,feature_used,2026-06-19T12:39:00Z,u_0658_s01,ins_u_0658_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002257,u_0319,onboarding_completed,2026-06-19T12:43:00Z,u_0319_s01,ins_u_0319_006,"{""completed_at"": ""2026-06-19T12:31:00Z""}",v2.3.0-fixed +evt_002258,u_0472,onboarding_step_viewed,2026-06-19T12:43:00Z,u_0472_s01,ins_u_0472_004,{},v2.3.0-fixed +evt_002259,u_0144,signup_started,2026-06-19T12:50:00Z,u_0144_s01,ins_u_0144_001,{},v2.3.0-fixed +evt_002260,u_0144,signup_completed,2026-06-19T12:51:00Z,u_0144_s01,ins_u_0144_002,{},v2.3.0-fixed +evt_002261,u_0240,feature_used,2026-06-19T12:54:00Z,u_0240_s01,ins_u_0240_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_002262,u_0144,profile_saved,2026-06-19T12:56:00Z,u_0144_s01,ins_u_0144_003,{},v2.3.0-fixed +evt_002263,u_0319,activation_completed,2026-06-19T12:57:00Z,u_0319_s01,ins_u_0319_007,{},v2.3.0-fixed +evt_002264,u_0006,onboarding_completed,2026-06-19T13:06:00Z,u_0006_s01,ins_u_0006_005,"{""completed_at"": ""2026-06-19T13:03:00Z""}",v2.3.0-fixed +evt_002265,u_0161,activation_completed,2026-06-19T13:08:00Z,u_0161_s01,ins_u_0161_006,{},v2.3.0-fixed +evt_002266,u_0780,signup_started,2026-06-19T13:08:00Z,u_0780_s01,ins_u_0780_001,{},v2.3.0-fixed +evt_002267,u_0240,onboarding_completed,2026-06-19T13:13:00Z,u_0240_s01,ins_u_0240_005,"{""completed_at"": ""2026-06-19T13:03:00Z""}",v2.3.0-fixed +evt_002268,u_0472,onboarding_completed,2026-06-19T13:13:00Z,u_0472_s01,ins_u_0472_005,"{""completed_at"": ""2026-06-19T13:18:00Z""}",v2.3.0-fixed +evt_002269,u_0780,signup_completed,2026-06-19T13:13:00Z,u_0780_s01,ins_u_0780_002,{},v2.3.0-fixed +evt_002270,u_0144,feature_used,2026-06-19T13:14:00Z,u_0144_s01,ins_u_0144_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_002271,u_0668,signup_started,2026-06-19T13:16:00Z,u_0668_s01,ins_u_0668_001,{},v2.3.0-fixed +evt_002272,u_0780,profile_saved,2026-06-19T13:16:00Z,u_0780_s01,ins_u_0780_003,{},v2.3.0-fixed +evt_002273,u_0668,signup_completed,2026-06-19T13:17:00Z,u_0668_s01,ins_u_0668_002,{},v2.3.0-fixed +evt_002274,u_0666,signup_started,2026-06-19T13:18:00Z,u_0666_s01,ins_u_0666_001,{},v2.3.0-fixed +evt_002275,u_0112,signup_started,2026-06-19T13:19:00Z,u_0112_s01,ins_u_0112_001,{},v2.3.0-fixed +evt_002276,u_0006,activation_completed,2026-06-19T13:21:00Z,u_0006_s01,ins_u_0006_006,{},v2.3.0-fixed +evt_002277,u_0780,onboarding_step_viewed,2026-06-19T13:21:00Z,u_0780_s01,ins_u_0780_004,{},v2.3.0-fixed +evt_002278,u_0497,signup_started,2026-06-19T13:22:00Z,u_0497_s01,ins_u_0497_001,{},v2.3.0-fixed +evt_002279,u_0666,signup_completed,2026-06-19T13:22:00Z,u_0666_s01,ins_u_0666_002,{},v2.3.0-fixed +evt_002280,u_0676,signup_started,2026-06-19T13:24:00Z,u_0676_s01,ins_u_0676_001,{},v2.3.0-fixed +evt_002281,u_0112,signup_completed,2026-06-19T13:25:00Z,u_0112_s01,ins_u_0112_002,{},v2.3.0-fixed +evt_002282,u_0497,signup_completed,2026-06-19T13:26:00Z,u_0497_s01,ins_u_0497_002,{},v2.3.0-fixed +evt_002283,u_0668,session_abandoned,2026-06-19T13:26:00Z,u_0668_s01,ins_u_0668_003,{},v2.3.0-fixed +evt_002284,u_0144,onboarding_completed,2026-06-19T13:28:00Z,u_0144_s01,ins_u_0144_005,"{""completed_at"": ""2026-06-19T13:22:00Z""}",v2.3.0-fixed +evt_002285,u_0112,profile_saved,2026-06-19T13:29:00Z,u_0112_s01,ins_u_0112_003,{},v2.3.0-fixed +evt_002286,u_0112,error_shown,2026-06-19T13:30:00Z,u_0112_s01,ins_u_0112_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002287,u_0676,signup_completed,2026-06-19T13:30:00Z,u_0676_s01,ins_u_0676_002,{},v2.3.0-fixed +evt_002288,u_0666,profile_saved,2026-06-19T13:32:00Z,u_0666_s01,ins_u_0666_003,{},v2.3.0-fixed +evt_002289,u_0497,profile_saved,2026-06-19T13:33:00Z,u_0497_s01,ins_u_0497_003,{},v2.3.0-fixed +evt_002290,u_0112,onboarding_step_viewed,2026-06-19T13:34:00Z,u_0112_s01,ins_u_0112_005,{},v2.3.0-fixed +evt_002291,u_0497,onboarding_step_viewed,2026-06-19T13:35:00Z,u_0497_s01,ins_u_0497_004,{},v2.3.0-fixed +evt_002292,u_0180,signup_started,2026-06-19T13:36:00Z,u_0180_s01,ins_u_0180_001,{},v2.3.0-fixed +evt_002293,u_0666,onboarding_step_viewed,2026-06-19T13:36:00Z,u_0666_s01,ins_u_0666_004,{},v2.3.0-fixed +evt_002294,u_0676,session_abandoned,2026-06-19T13:36:00Z,u_0676_s01,ins_u_0676_003,{},v2.3.0-fixed +evt_002295,u_0112,feature_used,2026-06-19T13:37:00Z,u_0112_s01,ins_u_0112_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_002296,u_0180,signup_completed,2026-06-19T13:37:00Z,u_0180_s01,ins_u_0180_002,{},v2.3.0-fixed +evt_002297,u_0180,profile_saved,2026-06-19T13:39:00Z,u_0180_s01,ins_u_0180_003,{},v2.3.0-fixed +evt_002298,u_0606,return_visit,2026-06-19T13:39:00Z,u_0606_s02,ins_u_0606_008,{},v2.3.0-fixed +evt_002299,u_0180,onboarding_step_viewed,2026-06-19T13:41:00Z,u_0180_s01,ins_u_0180_004,{},v2.3.0-fixed +evt_002300,u_0337,signup_started,2026-06-19T13:41:00Z,u_0337_s01,ins_u_0337_001,{},v2.3.0-fixed +evt_002301,u_0114,signup_started,2026-06-19T13:43:00Z,u_0114_s01,ins_u_0114_001,{},v2.3.0-fixed +evt_002302,u_0757,signup_started,2026-06-19T13:44:00Z,u_0757_s01,ins_u_0757_001,{},v2.3.0-fixed +evt_002303,u_0638,signup_started,2026-06-19T13:46:00Z,u_0638_s01,ins_u_0638_001,{},v2.3.0-fixed +evt_002304,u_0780,onboarding_completed,2026-06-19T13:46:00Z,u_0780_s01,ins_u_0780_005,"{""completed_at"": ""2026-06-19T13:53:00Z""}",v2.3.0-fixed +evt_002305,u_0114,signup_completed,2026-06-19T13:49:00Z,u_0114_s01,ins_u_0114_002,{},v2.3.0-fixed +evt_002306,u_0337,signup_completed,2026-06-19T13:49:00Z,u_0337_s01,ins_u_0337_002,{},v2.3.0-fixed +evt_002307,u_0638,signup_completed,2026-06-19T13:51:00Z,u_0638_s01,ins_u_0638_002,{},v2.3.0-fixed +evt_002308,u_0114,profile_saved,2026-06-19T13:52:00Z,u_0114_s01,ins_u_0114_003,{},v2.3.0-fixed +evt_002309,u_0757,signup_completed,2026-06-19T13:52:00Z,u_0757_s01,ins_u_0757_002,{},v2.3.0-fixed +evt_002310,u_0479,signup_started,2026-06-19T13:53:00Z,u_0479_s01,ins_u_0479_001,{},v2.3.0-fixed +evt_002311,u_0479,signup_completed,2026-06-19T13:54:00Z,u_0479_s01,ins_u_0479_002,{},v2.3.0-fixed +evt_002312,u_0497,feature_used,2026-06-19T13:54:00Z,u_0497_s01,ins_u_0497_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002313,u_0638,profile_saved,2026-06-19T13:54:00Z,u_0638_s01,ins_u_0638_003,{},v2.3.0-fixed +evt_002314,u_0337,profile_saved,2026-06-19T13:56:00Z,u_0337_s01,ins_u_0337_003,{},v2.3.0-fixed +evt_002315,u_0757,session_abandoned,2026-06-19T13:56:00Z,u_0757_s01,ins_u_0757_003,{},v2.3.0-fixed +evt_002316,u_0180,feature_used,2026-06-19T13:57:00Z,u_0180_s01,ins_u_0180_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002317,u_0114,onboarding_step_viewed,2026-06-19T13:58:00Z,u_0114_s01,ins_u_0114_004,{},v2.3.0-fixed +evt_002318,u_0337,onboarding_step_viewed,2026-06-19T13:58:00Z,u_0337_s01,ins_u_0337_004,{},v2.3.0-fixed +evt_002319,u_0472,activation_completed,2026-06-19T13:58:00Z,u_0472_s01,ins_u_0472_006,{},v2.3.0-fixed +evt_002320,u_0638,onboarding_step_viewed,2026-06-19T14:00:00Z,u_0638_s01,ins_u_0638_004,{},v2.3.0-fixed +evt_002321,u_0479,profile_saved,2026-06-19T14:02:00Z,u_0479_s01,ins_u_0479_003,{},v2.3.0-fixed +evt_002322,u_0638,feature_used,2026-06-19T14:05:00Z,u_0638_s01,ins_u_0638_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002323,u_0479,onboarding_step_viewed,2026-06-19T14:07:00Z,u_0479_s01,ins_u_0479_004,{},v2.3.0-fixed +evt_002324,u_0112,onboarding_completed,2026-06-19T14:08:00Z,u_0112_s01,ins_u_0112_007,"{""completed_at"": ""2026-06-19T14:04:00Z""}",v2.3.0-fixed +evt_002325,u_0144,activation_completed,2026-06-19T14:08:00Z,u_0144_s01,ins_u_0144_006,{},v2.3.0-fixed +evt_002326,u_0666,onboarding_completed,2026-06-19T14:08:00Z,u_0666_s01,ins_u_0666_005,"{""completed_at"": ""2026-06-19T13:58:00Z""}",v2.3.0-fixed +evt_002327,u_0604,signup_started,2026-06-19T14:10:00Z,u_0604_s01,ins_u_0604_001,{},v2.3.0-fixed +evt_002328,u_0604,signup_completed,2026-06-19T14:11:00Z,u_0604_s01,ins_u_0604_002,{},v2.3.0-fixed +evt_002329,u_0180,onboarding_completed,2026-06-19T14:13:00Z,u_0180_s01,ins_u_0180_006,"{""completed_at"": ""2026-06-19T14:14:00Z""}",v2.3.0-fixed +evt_002330,u_0604,profile_saved,2026-06-19T14:18:00Z,u_0604_s01,ins_u_0604_003,{},v2.3.0-fixed +evt_002331,u_0358,signup_started,2026-06-19T14:19:00Z,u_0358_s01,ins_u_0358_001,{},v2.3.0-fixed +evt_002332,u_0475,signup_started,2026-06-19T14:19:00Z,u_0475_s01,ins_u_0475_001,{},v2.3.0-fixed +evt_002333,u_0475,signup_completed,2026-06-19T14:20:00Z,u_0475_s01,ins_u_0475_002,{},v2.3.0-fixed +evt_002334,u_0337,feature_used,2026-06-19T14:21:00Z,u_0337_s01,ins_u_0337_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002335,u_0604,onboarding_step_viewed,2026-06-19T14:21:00Z,u_0604_s01,ins_u_0604_004,{},v2.3.0-fixed +evt_002336,u_0142,signup_started,2026-06-19T14:22:00Z,u_0142_s01,ins_u_0142_001,{},v2.3.0-fixed +evt_002337,u_0337,onboarding_completed,2026-06-19T14:23:00Z,u_0337_s01,ins_u_0337_006,"{""completed_at"": ""2026-06-19T14:24:00Z""}",v2.3.0-fixed +evt_002338,u_0114,onboarding_completed,2026-06-19T14:24:00Z,u_0114_s01,ins_u_0114_005,"{""completed_at"": ""2026-06-19T14:24:00Z""}",v2.3.0-fixed +evt_002339,u_0226,signup_started,2026-06-19T14:25:00Z,u_0226_s01,ins_u_0226_001,{},v2.3.0-fixed +evt_002340,u_0358,signup_completed,2026-06-19T14:25:00Z,u_0358_s01,ins_u_0358_002,{},v2.3.0-fixed +evt_002341,u_0475,session_abandoned,2026-06-19T14:26:00Z,u_0475_s01,ins_u_0475_003,{},v2.3.0-fixed +evt_002342,u_0358,profile_saved,2026-06-19T14:29:00Z,u_0358_s01,ins_u_0358_003,{},v2.3.0-fixed +evt_002343,u_0512,signup_started,2026-06-19T14:29:00Z,u_0512_s01,ins_u_0512_001,{},v2.3.0-fixed +evt_002344,u_0142,session_abandoned,2026-06-19T14:30:00Z,u_0142_s01,ins_u_0142_002,{},v2.3.0-fixed +evt_002345,u_0226,signup_completed,2026-06-19T14:30:00Z,u_0226_s01,ins_u_0226_002,{},v2.3.0-fixed +evt_002346,u_0638,onboarding_completed,2026-06-19T14:30:00Z,u_0638_s01,ins_u_0638_006,"{""completed_at"": ""2026-06-19T14:34:00Z""}",v2.3.0-fixed +evt_002347,u_0512,signup_completed,2026-06-19T14:31:00Z,u_0512_s01,ins_u_0512_002,{},v2.3.0-fixed +evt_002348,u_0604,feature_used,2026-06-19T14:31:00Z,u_0604_s01,ins_u_0604_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002349,u_0479,onboarding_completed,2026-06-19T14:32:00Z,u_0479_s01,ins_u_0479_005,"{""completed_at"": ""2026-06-19T14:30:00Z""}",v2.3.0-fixed +evt_002350,u_0512,profile_saved,2026-06-19T14:33:00Z,u_0512_s01,ins_u_0512_003,{},v2.3.0-fixed +evt_002351,u_0358,onboarding_step_viewed,2026-06-19T14:35:00Z,u_0358_s01,ins_u_0358_004,{},v2.3.0-fixed +evt_002352,u_0512,onboarding_step_viewed,2026-06-19T14:35:00Z,u_0512_s01,ins_u_0512_004,{},v2.3.0-fixed +evt_002353,u_0097,signup_started,2026-06-19T14:38:00Z,u_0097_s01,ins_u_0097_001,{},v2.3.0-fixed +evt_002354,u_0226,profile_saved,2026-06-19T14:40:00Z,u_0226_s01,ins_u_0226_003,{},v2.3.0-fixed +evt_002355,u_0092,signup_started,2026-06-19T14:41:00Z,u_0092_s01,ins_u_0092_001,{},v2.3.0-fixed +evt_002356,u_0092,signup_completed,2026-06-19T14:44:00Z,u_0092_s01,ins_u_0092_002,{},v2.3.0-fixed +evt_002357,u_0097,session_abandoned,2026-06-19T14:45:00Z,u_0097_s01,ins_u_0097_002,{},v2.3.0-fixed +evt_002358,u_0327,signup_started,2026-06-19T14:47:00Z,u_0327_s01,ins_u_0327_001,{},v2.3.0-fixed +evt_002359,u_0092,profile_saved,2026-06-19T14:48:00Z,u_0092_s01,ins_u_0092_003,{},v2.3.0-fixed +evt_002360,u_0180,activation_completed,2026-06-19T14:50:00Z,u_0180_s01,ins_u_0180_007,{},v2.3.0-fixed +evt_002361,u_0327,signup_completed,2026-06-19T14:50:00Z,u_0327_s01,ins_u_0327_002,{},v2.3.0-fixed +evt_002362,u_0092,onboarding_step_viewed,2026-06-19T14:52:00Z,u_0092_s01,ins_u_0092_004,{},v2.3.0-fixed +evt_002363,u_0226,feature_used,2026-06-19T14:56:00Z,u_0226_s01,ins_u_0226_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_002364,u_0358,onboarding_completed,2026-06-19T14:56:00Z,u_0358_s01,ins_u_0358_005,"{""completed_at"": ""2026-06-19T15:03:00Z""}",v2.3.0-fixed +evt_002365,u_0512,feature_used,2026-06-19T14:56:00Z,u_0512_s01,ins_u_0512_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002366,u_0327,session_abandoned,2026-06-19T14:57:00Z,u_0327_s01,ins_u_0327_003,{},v2.3.0-fixed +evt_002367,u_0257,signup_started,2026-06-19T15:01:00Z,u_0257_s01,ins_u_0257_001,{},v2.3.0-fixed +evt_002368,u_0604,onboarding_completed,2026-06-19T15:02:00Z,u_0604_s01,ins_u_0604_006,"{""completed_at"": ""2026-06-19T14:47:00Z""}",v2.3.0-fixed +evt_002369,u_0257,session_abandoned,2026-06-19T15:07:00Z,u_0257_s01,ins_u_0257_002,{},v2.3.0-fixed +evt_002370,u_0512,onboarding_completed,2026-06-19T15:10:00Z,u_0512_s01,ins_u_0512_006,"{""completed_at"": ""2026-06-19T15:00:00Z""}",v2.3.0-fixed +evt_002371,u_0226,onboarding_completed,2026-06-19T15:11:00Z,u_0226_s01,ins_u_0226_005,"{""completed_at"": ""2026-06-19T15:06:00Z""}",v2.3.0-fixed +evt_002372,u_0512,activation_completed,2026-06-19T15:19:00Z,u_0512_s01,ins_u_0512_007,{},v2.3.0-fixed +evt_002373,u_0092,onboarding_completed,2026-06-19T15:21:00Z,u_0092_s01,ins_u_0092_005,"{""completed_at"": ""2026-06-19T15:23:00Z""}",v2.3.0-fixed +evt_002374,u_0094,signup_started,2026-06-19T15:22:00Z,u_0094_s01,ins_u_0094_001,{},v2.3.0-fixed +evt_002375,u_0094,signup_completed,2026-06-19T15:26:00Z,u_0094_s01,ins_u_0094_002,{},v2.3.0-fixed +evt_002376,u_0358,activation_completed,2026-06-19T15:27:00Z,u_0358_s01,ins_u_0358_006,{},v2.3.0-fixed +evt_002377,u_0094,session_abandoned,2026-06-19T15:35:00Z,u_0094_s01,ins_u_0094_003,{},v2.3.0-fixed +evt_002378,u_0235,signup_started,2026-06-19T15:44:00Z,u_0235_s01,ins_u_0235_001,{},v2.3.0-fixed +evt_002379,u_0779,signup_started,2026-06-19T15:45:00Z,u_0779_s01,ins_u_0779_001,{},v2.3.0-fixed +evt_002380,u_0646,signup_started,2026-06-19T15:47:00Z,u_0646_s01,ins_u_0646_001,{},v2.3.0-fixed +evt_002381,u_0779,signup_completed,2026-06-19T15:47:00Z,u_0779_s01,ins_u_0779_002,{},v2.3.0-fixed +evt_002382,u_0235,signup_completed,2026-06-19T15:48:00Z,u_0235_s01,ins_u_0235_002,{},v2.3.0-fixed +evt_002383,u_0779,profile_saved,2026-06-19T15:51:00Z,u_0779_s01,ins_u_0779_003,{},v2.3.0-fixed +evt_002384,u_0235,profile_saved,2026-06-19T15:54:00Z,u_0235_s01,ins_u_0235_003,{},v2.3.0-fixed +evt_002385,u_0646,signup_completed,2026-06-19T15:54:00Z,u_0646_s01,ins_u_0646_002,{},v2.3.0-fixed +evt_002386,u_0786,signup_started,2026-06-19T15:54:00Z,u_0786_s01,ins_u_0786_001,{},v2.3.0-fixed +evt_002387,u_0235,onboarding_step_viewed,2026-06-19T15:57:00Z,u_0235_s01,ins_u_0235_004,{},v2.3.0-fixed +evt_002388,u_0339,signup_started,2026-06-19T15:57:00Z,u_0339_s01,ins_u_0339_001,{},v2.3.0-fixed +evt_002389,u_0339,signup_completed,2026-06-19T15:58:00Z,u_0339_s01,ins_u_0339_002,{},v2.3.0-fixed +evt_002390,u_0646,profile_saved,2026-06-19T15:59:00Z,u_0646_s01,ins_u_0646_003,{},v2.3.0-fixed +evt_002391,u_0646,onboarding_step_viewed,2026-06-19T16:01:00Z,u_0646_s01,ins_u_0646_004,{},v2.3.0-fixed +evt_002392,u_0779,feature_used,2026-06-19T16:01:00Z,u_0779_s01,ins_u_0779_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002393,u_0786,session_abandoned,2026-06-19T16:02:00Z,u_0786_s01,ins_u_0786_002,{},v2.3.0-fixed +evt_002394,u_0321,signup_started,2026-06-19T16:07:00Z,u_0321_s01,ins_u_0321_001,{},v2.3.0-fixed +evt_002395,u_0646,feature_used,2026-06-19T16:07:00Z,u_0646_s01,ins_u_0646_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002396,u_0339,profile_saved,2026-06-19T16:08:00Z,u_0339_s01,ins_u_0339_003,{},v2.3.0-fixed +evt_002397,u_0339,onboarding_step_viewed,2026-06-19T16:12:00Z,u_0339_s01,ins_u_0339_004,{},v2.3.0-fixed +evt_002398,u_0321,signup_completed,2026-06-19T16:13:00Z,u_0321_s01,ins_u_0321_002,{},v2.3.0-fixed +evt_002399,u_0109,signup_started,2026-06-19T16:16:00Z,u_0109_s01,ins_u_0109_001,{},v2.3.0-fixed +evt_002400,u_0347,signup_started,2026-06-19T16:16:00Z,u_0347_s01,ins_u_0347_001,{},v2.3.0-fixed +evt_002401,u_0321,profile_saved,2026-06-19T16:17:00Z,u_0321_s01,ins_u_0321_003,{},v2.3.0-fixed +evt_002402,u_0347,session_abandoned,2026-06-19T16:17:00Z,u_0347_s01,ins_u_0347_002,{},v2.3.0-fixed +evt_002403,u_0109,signup_completed,2026-06-19T16:18:00Z,u_0109_s01,ins_u_0109_002,{},v2.3.0-fixed +evt_002404,u_0321,onboarding_step_viewed,2026-06-19T16:21:00Z,u_0321_s01,ins_u_0321_004,{},v2.3.0-fixed +evt_002405,u_0713,signup_started,2026-06-19T16:22:00Z,u_0713_s01,ins_u_0713_001,{},v2.3.0-fixed +evt_002406,u_0713,signup_completed,2026-06-19T16:24:00Z,u_0713_s01,ins_u_0713_002,{},v2.3.0-fixed +evt_002407,u_0438,signup_started,2026-06-19T16:25:00Z,u_0438_s01,ins_u_0438_001,{},v2.3.0-fixed +evt_002408,u_0339,feature_used,2026-06-19T16:26:00Z,u_0339_s01,ins_u_0339_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002409,u_0450,signup_started,2026-06-19T16:26:00Z,u_0450_s01,ins_u_0450_001,{},v2.3.0-fixed +evt_002410,u_0584,signup_started,2026-06-19T16:26:00Z,u_0584_s01,ins_u_0584_001,{},v2.3.0-fixed +evt_002411,u_0109,session_abandoned,2026-06-19T16:27:00Z,u_0109_s01,ins_u_0109_003,{},v2.3.0-fixed +evt_002412,u_0584,signup_completed,2026-06-19T16:27:00Z,u_0584_s01,ins_u_0584_002,{},v2.3.0-fixed +evt_002413,u_0713,profile_saved,2026-06-19T16:28:00Z,u_0713_s01,ins_u_0713_003,{},v2.3.0-fixed +evt_002414,u_0713,error_shown,2026-06-19T16:29:00Z,u_0713_s01,ins_u_0713_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002415,u_0438,signup_completed,2026-06-19T16:30:00Z,u_0438_s01,ins_u_0438_002,{},v2.3.0-fixed +evt_002416,u_0713,onboarding_step_viewed,2026-06-19T16:31:00Z,u_0713_s01,ins_u_0713_005,{},v2.3.0-fixed +evt_002417,u_0438,profile_saved,2026-06-19T16:33:00Z,u_0438_s01,ins_u_0438_003,{},v2.3.0-fixed +evt_002418,u_0450,signup_completed,2026-06-19T16:33:00Z,u_0450_s01,ins_u_0450_002,{},v2.3.0-fixed +evt_002419,u_0584,session_abandoned,2026-06-19T16:36:00Z,u_0584_s01,ins_u_0584_003,{},v2.3.0-fixed +evt_002420,u_0339,onboarding_completed,2026-06-19T16:37:00Z,u_0339_s01,ins_u_0339_006,"{""completed_at"": ""2026-06-19T16:47:00Z""}",v2.3.0-fixed +evt_002421,u_0235,onboarding_completed,2026-06-19T16:38:00Z,u_0235_s01,ins_u_0235_005,"{""completed_at"": ""2026-06-19T16:28:00Z""}",v2.3.0-fixed +evt_002422,u_0450,session_abandoned,2026-06-19T16:38:00Z,u_0450_s01,ins_u_0450_003,{},v2.3.0-fixed +evt_002423,u_0646,onboarding_completed,2026-06-19T16:40:00Z,u_0646_s01,ins_u_0646_006,"{""completed_at"": ""2026-06-19T16:39:00Z""}",v2.3.0-fixed +evt_002424,u_0779,activation_completed,2026-06-19T16:43:00Z,u_0779_s01,ins_u_0779_005,{},v2.3.0-fixed +evt_002425,u_0652,signup_started,2026-06-19T16:47:00Z,u_0652_s01,ins_u_0652_001,{},v2.3.0-fixed +evt_002426,u_0652,signup_completed,2026-06-19T16:49:00Z,u_0652_s01,ins_u_0652_002,{},v2.3.0-fixed +evt_002427,u_0204,signup_started,2026-06-19T16:50:00Z,u_0204_s01,ins_u_0204_001,{},v2.3.0-fixed +evt_002428,u_0204,signup_completed,2026-06-19T16:57:00Z,u_0204_s01,ins_u_0204_002,{},v2.3.0-fixed +evt_002429,u_0438,feature_used,2026-06-19T16:57:00Z,u_0438_s01,ins_u_0438_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_002430,u_0106,signup_started,2026-06-19T16:58:00Z,u_0106_s01,ins_u_0106_001,{},v2.3.0-fixed +evt_002431,u_0652,session_abandoned,2026-06-19T16:58:00Z,u_0652_s01,ins_u_0652_003,{},v2.3.0-fixed +evt_002432,u_0321,onboarding_completed,2026-06-19T17:01:00Z,u_0321_s01,ins_u_0321_005,"{""completed_at"": ""2026-06-19T16:53:00Z""}",v2.3.0-fixed +evt_002433,u_0106,signup_completed,2026-06-19T17:02:00Z,u_0106_s01,ins_u_0106_002,{},v2.3.0-fixed +evt_002434,u_0106,profile_saved,2026-06-19T17:04:00Z,u_0106_s01,ins_u_0106_003,{},v2.3.0-fixed +evt_002435,u_0106,onboarding_step_viewed,2026-06-19T17:06:00Z,u_0106_s01,ins_u_0106_004,{},v2.3.0-fixed +evt_002436,u_0204,profile_saved,2026-06-19T17:07:00Z,u_0204_s01,ins_u_0204_003,{},v2.3.0-fixed +evt_002437,u_0401,signup_started,2026-06-19T17:08:00Z,u_0401_s01,ins_u_0401_001,{},v2.3.0-fixed +evt_002438,u_0438,onboarding_completed,2026-06-19T17:08:00Z,u_0438_s01,ins_u_0438_005,"{""completed_at"": ""2026-06-19T17:08:00Z""}",v2.3.0-fixed +evt_002439,u_0204,onboarding_step_viewed,2026-06-19T17:09:00Z,u_0204_s01,ins_u_0204_004,{},v2.3.0-fixed +evt_002440,u_0401,signup_completed,2026-06-19T17:09:00Z,u_0401_s01,ins_u_0401_002,{},v2.3.0-fixed +evt_002441,u_0321,activation_completed,2026-06-19T17:10:00Z,u_0321_s01,ins_u_0321_006,{},v2.3.0-fixed +evt_002442,u_0713,onboarding_completed,2026-06-19T17:12:00Z,u_0713_s01,ins_u_0713_006,"{""completed_at"": ""2026-06-19T17:02:00Z""}",v2.3.0-fixed +evt_002443,u_0401,profile_saved,2026-06-19T17:15:00Z,u_0401_s01,ins_u_0401_003,{},v2.3.0-fixed +evt_002444,u_0401,error_shown,2026-06-19T17:16:00Z,u_0401_s01,ins_u_0401_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002445,u_0339,activation_completed,2026-06-19T17:17:00Z,u_0339_s01,ins_u_0339_007,{},v2.3.0-fixed +evt_002446,u_0401,onboarding_step_viewed,2026-06-19T17:18:00Z,u_0401_s01,ins_u_0401_005,{},v2.3.0-fixed +evt_002447,u_0442,signup_started,2026-06-19T17:24:00Z,u_0442_s01,ins_u_0442_001,{},v2.3.0-fixed +evt_002448,u_0442,session_abandoned,2026-06-19T17:27:00Z,u_0442_s01,ins_u_0442_002,{},v2.3.0-fixed +evt_002449,u_0401,feature_used,2026-06-19T17:32:00Z,u_0401_s01,ins_u_0401_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002450,u_0483,signup_started,2026-06-19T17:32:00Z,u_0483_s01,ins_u_0483_001,{},v2.3.0-fixed +evt_002451,u_0483,signup_completed,2026-06-19T17:40:00Z,u_0483_s01,ins_u_0483_002,{},v2.3.0-fixed +evt_002452,u_0106,onboarding_completed,2026-06-19T17:41:00Z,u_0106_s01,ins_u_0106_005,"{""completed_at"": ""2026-06-19T17:43:00Z""}",v2.3.0-fixed +evt_002453,u_0204,onboarding_completed,2026-06-19T17:45:00Z,u_0204_s01,ins_u_0204_005,"{""completed_at"": ""2026-06-19T17:37:00Z""}",v2.3.0-fixed +evt_002454,u_0483,profile_saved,2026-06-19T17:45:00Z,u_0483_s01,ins_u_0483_003,{},v2.3.0-fixed +evt_002455,u_0483,onboarding_step_viewed,2026-06-19T17:47:00Z,u_0483_s01,ins_u_0483_004,{},v2.3.0-fixed +evt_002456,u_0713,activation_completed,2026-06-19T17:48:00Z,u_0713_s01,ins_u_0713_007,{},v2.3.0-fixed +evt_002457,u_0129,signup_started,2026-06-19T17:58:00Z,u_0129_s01,ins_u_0129_001,{},v2.3.0-fixed +evt_002458,u_0401,onboarding_completed,2026-06-19T17:59:00Z,u_0401_s01,ins_u_0401_007,"{""completed_at"": ""2026-06-19T17:49:00Z""}",v2.3.0-fixed +evt_002459,u_0758,signup_started,2026-06-19T17:59:00Z,u_0758_s01,ins_u_0758_001,{},v2.3.0-fixed +evt_002460,u_0129,signup_completed,2026-06-19T18:01:00Z,u_0129_s01,ins_u_0129_002,{},v2.3.0-fixed +evt_002461,u_0758,signup_completed,2026-06-19T18:01:00Z,u_0758_s01,ins_u_0758_002,{},v2.3.0-fixed +evt_002462,u_0483,feature_used,2026-06-19T18:04:00Z,u_0483_s01,ins_u_0483_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002463,u_0758,profile_saved,2026-06-19T18:09:00Z,u_0758_s01,ins_u_0758_003,{},v2.3.0-fixed +evt_002464,u_0129,profile_saved,2026-06-19T18:10:00Z,u_0129_s01,ins_u_0129_003,{},v2.3.0-fixed +evt_002465,u_0129,error_shown,2026-06-19T18:11:00Z,u_0129_s01,ins_u_0129_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002466,u_0401,activation_completed,2026-06-19T18:12:00Z,u_0401_s01,ins_u_0401_008,{},v2.3.0-fixed +evt_002467,u_0622,signup_started,2026-06-19T18:12:00Z,u_0622_s01,ins_u_0622_001,{},v2.3.0-fixed +evt_002468,u_0129,onboarding_step_viewed,2026-06-19T18:15:00Z,u_0129_s01,ins_u_0129_005,{},v2.3.0-fixed +evt_002469,u_0483,onboarding_completed,2026-06-19T18:16:00Z,u_0483_s01,ins_u_0483_006,"{""completed_at"": ""2026-06-19T18:17:00Z""}",v2.3.0-fixed +evt_002470,u_0758,feature_used,2026-06-19T18:16:00Z,u_0758_s01,ins_u_0758_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_002471,u_0129,feature_used,2026-06-19T18:17:00Z,u_0129_s01,ins_u_0129_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002472,u_0622,signup_completed,2026-06-19T18:20:00Z,u_0622_s01,ins_u_0622_002,{},v2.3.0-fixed +evt_002473,u_0106,activation_completed,2026-06-19T18:23:00Z,u_0106_s01,ins_u_0106_006,{},v2.3.0-fixed +evt_002474,u_0622,session_abandoned,2026-06-19T18:28:00Z,u_0622_s01,ins_u_0622_003,{},v2.3.0-fixed +evt_002475,u_0611,signup_started,2026-06-19T18:37:00Z,u_0611_s01,ins_u_0611_001,{},v2.3.0-fixed +evt_002476,u_0483,activation_completed,2026-06-19T18:38:00Z,u_0483_s01,ins_u_0483_007,{},v2.3.0-fixed +evt_002477,u_0129,onboarding_completed,2026-06-19T18:45:00Z,u_0129_s01,ins_u_0129_007,"{""completed_at"": ""2026-06-19T18:42:00Z""}",v2.3.0-fixed +evt_002478,u_0611,signup_completed,2026-06-19T18:45:00Z,u_0611_s01,ins_u_0611_002,{},v2.3.0-fixed +evt_002479,u_0758,onboarding_completed,2026-06-19T18:48:00Z,u_0758_s01,ins_u_0758_005,"{""completed_at"": ""2026-06-19T18:38:00Z""}",v2.3.0-fixed +evt_002480,u_0624,signup_started,2026-06-19T18:52:00Z,u_0624_s01,ins_u_0624_001,{},v2.3.0-fixed +evt_002481,u_0611,session_abandoned,2026-06-19T18:53:00Z,u_0611_s01,ins_u_0611_003,{},v2.3.0-fixed +evt_002482,u_0624,signup_completed,2026-06-19T18:54:00Z,u_0624_s01,ins_u_0624_002,{},v2.3.0-fixed +evt_002483,u_0129,activation_completed,2026-06-19T18:59:00Z,u_0129_s01,ins_u_0129_008,{},v2.3.0-fixed +evt_002484,u_0624,profile_saved,2026-06-19T19:03:00Z,u_0624_s01,ins_u_0624_003,{},v2.3.0-fixed +evt_002485,u_0380,signup_started,2026-06-19T19:04:00Z,u_0380_s01,ins_u_0380_001,{},v2.3.0-fixed +evt_002486,u_0624,onboarding_step_viewed,2026-06-19T19:07:00Z,u_0624_s01,ins_u_0624_004,{},v2.3.0-fixed +evt_002487,u_0380,session_abandoned,2026-06-19T19:11:00Z,u_0380_s01,ins_u_0380_002,{},v2.3.0-fixed +evt_002488,u_0624,feature_used,2026-06-19T19:19:00Z,u_0624_s01,ins_u_0624_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002489,u_0386,signup_started,2026-06-19T19:20:00Z,u_0386_s01,ins_u_0386_001,{},v2.3.0-fixed +evt_002490,u_0703,signup_started,2026-06-19T19:22:00Z,u_0703_s01,ins_u_0703_001,{},v2.3.0-fixed +evt_002491,u_0703,signup_completed,2026-06-19T19:23:00Z,u_0703_s01,ins_u_0703_002,{},v2.3.0-fixed +evt_002492,u_0119,signup_started,2026-06-19T19:24:00Z,u_0119_s01,ins_u_0119_001,{},v2.3.0-fixed +evt_002493,u_0386,signup_completed,2026-06-19T19:25:00Z,u_0386_s01,ins_u_0386_002,{},v2.3.0-fixed +evt_002494,u_0119,signup_completed,2026-06-19T19:27:00Z,u_0119_s01,ins_u_0119_002,{},v2.3.0-fixed +evt_002495,u_0289,signup_started,2026-06-19T19:27:00Z,u_0289_s01,ins_u_0289_001,{},v2.3.0-fixed +evt_002496,u_0182,signup_started,2026-06-19T19:30:00Z,u_0182_s01,ins_u_0182_001,{},v2.3.0-fixed +evt_002497,u_0289,signup_completed,2026-06-19T19:30:00Z,u_0289_s01,ins_u_0289_002,{},v2.3.0-fixed +evt_002498,u_0386,profile_saved,2026-06-19T19:30:00Z,u_0386_s01,ins_u_0386_003,{},v2.3.0-fixed +evt_002499,u_0703,profile_saved,2026-06-19T19:30:00Z,u_0703_s01,ins_u_0703_003,{},v2.3.0-fixed +evt_002500,u_0624,onboarding_completed,2026-06-19T19:33:00Z,u_0624_s01,ins_u_0624_006,"{""completed_at"": ""2026-06-19T19:38:00Z""}",v2.3.0-fixed +evt_002501,u_0703,onboarding_step_viewed,2026-06-19T19:33:00Z,u_0703_s01,ins_u_0703_004,{},v2.3.0-fixed +evt_002502,u_0289,profile_saved,2026-06-19T19:34:00Z,u_0289_s01,ins_u_0289_003,{},v2.3.0-fixed +evt_002503,u_0119,profile_saved,2026-06-19T19:35:00Z,u_0119_s01,ins_u_0119_003,{},v2.3.0-fixed +evt_002504,u_0386,onboarding_step_viewed,2026-06-19T19:35:00Z,u_0386_s01,ins_u_0386_004,{},v2.3.0-fixed +evt_002505,u_0182,signup_completed,2026-06-19T19:36:00Z,u_0182_s01,ins_u_0182_002,{},v2.3.0-fixed +evt_002506,u_0182,profile_saved,2026-06-19T19:38:00Z,u_0182_s01,ins_u_0182_003,{},v2.3.0-fixed +evt_002507,u_0289,onboarding_step_viewed,2026-06-19T19:39:00Z,u_0289_s01,ins_u_0289_004,{},v2.3.0-fixed +evt_002508,u_0119,onboarding_step_viewed,2026-06-19T19:41:00Z,u_0119_s01,ins_u_0119_004,{},v2.3.0-fixed +evt_002509,u_0333,signup_started,2026-06-19T19:41:00Z,u_0333_s01,ins_u_0333_001,{},v2.3.0-fixed +evt_002510,u_0182,onboarding_step_viewed,2026-06-19T19:42:00Z,u_0182_s01,ins_u_0182_004,{},v2.3.0-fixed +evt_002511,u_0333,signup_completed,2026-06-19T19:42:00Z,u_0333_s01,ins_u_0333_002,{},v2.3.0-fixed +evt_002512,u_0046,signup_started,2026-06-19T19:44:00Z,u_0046_s01,ins_u_0046_001,{},v2.3.0-fixed +evt_002513,u_0333,profile_saved,2026-06-19T19:44:00Z,u_0333_s01,ins_u_0333_003,{},v2.3.0-fixed +evt_002514,u_0333,onboarding_step_viewed,2026-06-19T19:46:00Z,u_0333_s01,ins_u_0333_004,{},v2.3.0-fixed +evt_002515,u_0386,feature_used,2026-06-19T19:46:00Z,u_0386_s01,ins_u_0386_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002516,u_0703,feature_used,2026-06-19T19:47:00Z,u_0703_s01,ins_u_0703_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002517,u_0046,signup_completed,2026-06-19T19:48:00Z,u_0046_s01,ins_u_0046_002,{},v2.3.0-fixed +evt_002518,u_0588,signup_started,2026-06-19T19:51:00Z,u_0588_s01,ins_u_0588_001,{},v2.3.0-fixed +evt_002519,u_0146,signup_started,2026-06-19T19:52:00Z,u_0146_s01,ins_u_0146_001,{},v2.3.0-fixed +evt_002520,u_0333,feature_used,2026-06-19T19:53:00Z,u_0333_s01,ins_u_0333_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002521,u_0046,profile_saved,2026-06-19T19:55:00Z,u_0046_s01,ins_u_0046_003,{},v2.3.0-fixed +evt_002522,u_0212,signup_started,2026-06-19T19:55:00Z,u_0212_s01,ins_u_0212_001,{},v2.3.0-fixed +evt_002523,u_0588,signup_completed,2026-06-19T19:55:00Z,u_0588_s01,ins_u_0588_002,{},v2.3.0-fixed +evt_002524,u_0289,feature_used,2026-06-19T19:56:00Z,u_0289_s01,ins_u_0289_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002525,u_0046,onboarding_step_viewed,2026-06-19T19:59:00Z,u_0046_s01,ins_u_0046_004,{},v2.3.0-fixed +evt_002526,u_0386,onboarding_completed,2026-06-19T19:59:00Z,u_0386_s01,ins_u_0386_006,"{""completed_at"": ""2026-06-19T19:59:00Z""}",v2.3.0-fixed +evt_002527,u_0588,session_abandoned,2026-06-19T19:59:00Z,u_0588_s01,ins_u_0588_003,{},v2.3.0-fixed +evt_002528,u_0146,signup_completed,2026-06-19T20:00:00Z,u_0146_s01,ins_u_0146_002,{},v2.3.0-fixed +evt_002529,u_0212,session_abandoned,2026-06-19T20:01:00Z,u_0212_s01,ins_u_0212_002,{},v2.3.0-fixed +evt_002530,u_0263,signup_started,2026-06-19T20:01:00Z,u_0263_s01,ins_u_0263_001,{},v2.3.0-fixed +evt_002531,u_0119,onboarding_completed,2026-06-19T20:02:00Z,u_0119_s01,ins_u_0119_005,"{""completed_at"": ""2026-06-19T20:08:00Z""}",v2.3.0-fixed +evt_002532,u_0263,signup_completed,2026-06-19T20:02:00Z,u_0263_s01,ins_u_0263_002,{},v2.3.0-fixed +evt_002533,u_0373,signup_started,2026-06-19T20:02:00Z,u_0373_s01,ins_u_0373_001,{},v2.3.0-fixed +evt_002534,u_0703,onboarding_completed,2026-06-19T20:02:00Z,u_0703_s01,ins_u_0703_006,"{""completed_at"": ""2026-06-19T20:00:00Z""}",v2.3.0-fixed +evt_002535,u_0146,profile_saved,2026-06-19T20:05:00Z,u_0146_s01,ins_u_0146_003,{},v2.3.0-fixed +evt_002536,u_0373,signup_completed,2026-06-19T20:05:00Z,u_0373_s01,ins_u_0373_002,{},v2.3.0-fixed +evt_002537,u_0146,onboarding_step_viewed,2026-06-19T20:09:00Z,u_0146_s01,ins_u_0146_004,{},v2.3.0-fixed +evt_002538,u_0333,onboarding_completed,2026-06-19T20:10:00Z,u_0333_s01,ins_u_0333_006,"{""completed_at"": ""2026-06-19T20:19:00Z""}",v2.3.0-fixed +evt_002539,u_0263,profile_saved,2026-06-19T20:12:00Z,u_0263_s01,ins_u_0263_003,{},v2.3.0-fixed +evt_002540,u_0317,signup_started,2026-06-19T20:12:00Z,u_0317_s01,ins_u_0317_001,{},v2.3.0-fixed +evt_002541,u_0182,onboarding_completed,2026-06-19T20:13:00Z,u_0182_s01,ins_u_0182_005,"{""completed_at"": ""2026-06-19T20:04:00Z""}",v2.3.0-fixed +evt_002542,u_0289,onboarding_completed,2026-06-19T20:14:00Z,u_0289_s01,ins_u_0289_006,"{""completed_at"": ""2026-06-19T20:02:00Z""}",v2.3.0-fixed +evt_002543,u_0373,profile_saved,2026-06-19T20:15:00Z,u_0373_s01,ins_u_0373_003,{},v2.3.0-fixed +evt_002544,u_0039,return_visit,2026-06-19T20:17:00Z,u_0039_s02,ins_u_0039_006,{},v2.3.0-fixed +evt_002545,u_0263,onboarding_step_viewed,2026-06-19T20:18:00Z,u_0263_s01,ins_u_0263_004,{},v2.3.0-fixed +evt_002546,u_0373,onboarding_step_viewed,2026-06-19T20:18:00Z,u_0373_s01,ins_u_0373_004,{},v2.3.0-fixed +evt_002547,u_0317,signup_completed,2026-06-19T20:20:00Z,u_0317_s01,ins_u_0317_002,{},v2.3.0-fixed +evt_002548,u_0039,feature_used,2026-06-19T20:22:00Z,u_0039_s02,ins_u_0039_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002549,u_0137,signup_started,2026-06-19T20:24:00Z,u_0137_s01,ins_u_0137_001,{},v2.3.0-fixed +evt_002550,u_0137,signup_completed,2026-06-19T20:25:00Z,u_0137_s01,ins_u_0137_002,{},v2.3.0-fixed +evt_002551,u_0289,activation_completed,2026-06-19T20:25:00Z,u_0289_s01,ins_u_0289_007,{},v2.3.0-fixed +evt_002552,u_0680,signup_started,2026-06-19T20:25:00Z,u_0680_s01,ins_u_0680_001,{},v2.3.0-fixed +evt_002553,u_0317,profile_saved,2026-06-19T20:29:00Z,u_0317_s01,ins_u_0317_003,{},v2.3.0-fixed +evt_002554,u_0155,signup_started,2026-06-19T20:30:00Z,u_0155_s01,ins_u_0155_001,{},v2.3.0-fixed +evt_002555,u_0046,onboarding_completed,2026-06-19T20:31:00Z,u_0046_s01,ins_u_0046_005,"{""completed_at"": ""2026-06-19T20:32:00Z""}",v2.3.0-fixed +evt_002556,u_0680,signup_completed,2026-06-19T20:31:00Z,u_0680_s01,ins_u_0680_002,{},v2.3.0-fixed +evt_002557,u_0137,profile_saved,2026-06-19T20:33:00Z,u_0137_s01,ins_u_0137_003,{},v2.3.0-fixed +evt_002558,u_0317,onboarding_step_viewed,2026-06-19T20:35:00Z,u_0317_s01,ins_u_0317_004,{},v2.3.0-fixed +evt_002559,u_0155,signup_completed,2026-06-19T20:36:00Z,u_0155_s01,ins_u_0155_002,{},v2.3.0-fixed +evt_002560,u_0137,onboarding_step_viewed,2026-06-19T20:37:00Z,u_0137_s01,ins_u_0137_004,{},v2.3.0-fixed +evt_002561,u_0146,onboarding_completed,2026-06-19T20:37:00Z,u_0146_s01,ins_u_0146_005,"{""completed_at"": ""2026-06-19T20:35:00Z""}",v2.3.0-fixed +evt_002562,u_0373,feature_used,2026-06-19T20:38:00Z,u_0373_s01,ins_u_0373_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002563,u_0680,profile_saved,2026-06-19T20:41:00Z,u_0680_s01,ins_u_0680_003,{},v2.3.0-fixed +evt_002564,u_0386,activation_completed,2026-06-19T20:42:00Z,u_0386_s01,ins_u_0386_007,{},v2.3.0-fixed +evt_002565,u_0680,onboarding_step_viewed,2026-06-19T20:44:00Z,u_0680_s01,ins_u_0680_004,{},v2.3.0-fixed +evt_002566,u_0373,onboarding_completed,2026-06-19T20:45:00Z,u_0373_s01,ins_u_0373_006,"{""completed_at"": ""2026-06-19T20:42:00Z""}",v2.3.0-fixed +evt_002567,u_0137,feature_used,2026-06-19T20:46:00Z,u_0137_s01,ins_u_0137_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002568,u_0155,profile_saved,2026-06-19T20:46:00Z,u_0155_s01,ins_u_0155_003,{},v2.3.0-fixed +evt_002569,u_0182,activation_completed,2026-06-19T20:47:00Z,u_0182_s01,ins_u_0182_006,{},v2.3.0-fixed +evt_002570,u_0263,onboarding_completed,2026-06-19T20:47:00Z,u_0263_s01,ins_u_0263_005,"{""completed_at"": ""2026-06-19T20:40:00Z""}",v2.3.0-fixed +evt_002571,u_0730,signup_started,2026-06-19T20:50:00Z,u_0730_s01,ins_u_0730_001,{},v2.3.0-fixed +evt_002572,u_0046,activation_completed,2026-06-19T20:51:00Z,u_0046_s01,ins_u_0046_006,{},v2.3.0-fixed +evt_002573,u_0730,signup_completed,2026-06-19T20:52:00Z,u_0730_s01,ins_u_0730_002,{},v2.3.0-fixed +evt_002574,u_0155,feature_used,2026-06-19T20:55:00Z,u_0155_s01,ins_u_0155_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002575,u_0298,signup_started,2026-06-19T20:56:00Z,u_0298_s01,ins_u_0298_001,{},v2.3.0-fixed +evt_002576,u_0333,activation_completed,2026-06-19T20:56:00Z,u_0333_s01,ins_u_0333_007,{},v2.3.0-fixed +evt_002577,u_0680,feature_used,2026-06-19T20:57:00Z,u_0680_s01,ins_u_0680_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002578,u_0016,signup_started,2026-06-19T20:58:00Z,u_0016_s01,ins_u_0016_001,{},v2.3.0-fixed +evt_002579,u_0075,signup_started,2026-06-19T20:58:00Z,u_0075_s01,ins_u_0075_001,{},v2.3.0-fixed +evt_002580,u_0730,session_abandoned,2026-06-19T20:58:00Z,u_0730_s01,ins_u_0730_003,{},v2.3.0-fixed +evt_002581,u_0298,signup_completed,2026-06-19T21:00:00Z,u_0298_s01,ins_u_0298_002,{},v2.3.0-fixed +evt_002582,u_0075,session_abandoned,2026-06-19T21:02:00Z,u_0075_s01,ins_u_0075_002,{},v2.3.0-fixed +evt_002583,u_0137,onboarding_completed,2026-06-19T21:04:00Z,u_0137_s01,ins_u_0137_006,"{""completed_at"": ""2026-06-19T21:02:00Z""}",v2.3.0-fixed +evt_002584,u_0016,signup_completed,2026-06-19T21:06:00Z,u_0016_s01,ins_u_0016_002,{},v2.3.0-fixed +evt_002585,u_0298,profile_saved,2026-06-19T21:09:00Z,u_0298_s01,ins_u_0298_003,{},v2.3.0-fixed +evt_002586,u_0317,onboarding_completed,2026-06-19T21:10:00Z,u_0317_s01,ins_u_0317_005,"{""completed_at"": ""2026-06-19T21:01:00Z""}",v2.3.0-fixed +evt_002587,u_0016,session_abandoned,2026-06-19T21:12:00Z,u_0016_s01,ins_u_0016_003,{},v2.3.0-fixed +evt_002588,u_0298,onboarding_step_viewed,2026-06-19T21:13:00Z,u_0298_s01,ins_u_0298_004,{},v2.3.0-fixed +evt_002589,u_0680,onboarding_completed,2026-06-19T21:16:00Z,u_0680_s01,ins_u_0680_006,"{""completed_at"": ""2026-06-19T21:11:00Z""}",v2.3.0-fixed +evt_002590,u_0263,activation_completed,2026-06-19T21:20:00Z,u_0263_s01,ins_u_0263_006,{},v2.3.0-fixed +evt_002591,u_0317,activation_completed,2026-06-19T21:27:00Z,u_0317_s01,ins_u_0317_006,{},v2.3.0-fixed +evt_002592,u_0298,feature_used,2026-06-19T21:32:00Z,u_0298_s01,ins_u_0298_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002593,u_0680,activation_completed,2026-06-19T21:35:00Z,u_0680_s01,ins_u_0680_007,{},v2.3.0-fixed +evt_002594,u_0298,onboarding_completed,2026-06-19T21:39:00Z,u_0298_s01,ins_u_0298_006,"{""completed_at"": ""2026-06-19T21:43:00Z""}",v2.3.0-fixed +evt_002595,u_0526,return_visit,2026-06-20T00:49:00Z,u_0526_s02,ins_u_0526_008,{},v2.3.0-fixed +evt_002596,u_0308,return_visit,2026-06-20T01:41:00Z,u_0308_s02,ins_u_0308_007,{},v2.3.0-fixed +evt_002597,u_0308,feature_used,2026-06-20T01:46:00Z,u_0308_s02,ins_u_0308_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002598,u_0543,return_visit,2026-06-20T05:50:00Z,u_0543_s02,ins_u_0543_006,{},v2.3.0-fixed +evt_002599,u_0543,feature_used,2026-06-20T05:55:00Z,u_0543_s02,ins_u_0543_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002600,u_0262,return_visit,2026-06-20T06:13:00Z,u_0262_s02,ins_u_0262_008,{},v2.3.0-fixed +evt_002601,u_0695,return_visit,2026-06-20T07:00:00Z,u_0695_s02,ins_u_0695_007,{},v2.3.0-fixed +evt_002602,u_0768,return_visit,2026-06-20T07:06:00Z,u_0768_s02,ins_u_0768_007,{},v2.3.0-fixed +evt_002603,u_0362,signup_started,2026-06-20T08:07:00Z,u_0362_s01,ins_u_0362_001,{},v2.3.0-fixed +evt_002604,u_0252,signup_started,2026-06-20T08:09:00Z,u_0252_s01,ins_u_0252_001,{},v2.3.0-fixed +evt_002605,u_0362,signup_completed,2026-06-20T08:09:00Z,u_0362_s01,ins_u_0362_002,{},v2.3.0-fixed +evt_002606,u_0062,signup_started,2026-06-20T08:11:00Z,u_0062_s01,ins_u_0062_001,{},v2.3.0-fixed +evt_002607,u_0123,signup_started,2026-06-20T08:11:00Z,u_0123_s01,ins_u_0123_001,{},v2.3.0-fixed +evt_002608,u_0362,profile_saved,2026-06-20T08:11:00Z,u_0362_s01,ins_u_0362_003,{},v2.3.0-fixed +evt_002609,u_0628,signup_started,2026-06-20T08:13:00Z,u_0628_s01,ins_u_0628_001,{},v2.3.0-fixed +evt_002610,u_0062,signup_completed,2026-06-20T08:14:00Z,u_0062_s01,ins_u_0062_002,{},v2.3.0-fixed +evt_002611,u_0252,signup_completed,2026-06-20T08:14:00Z,u_0252_s01,ins_u_0252_002,{},v2.3.0-fixed +evt_002612,u_0362,onboarding_step_viewed,2026-06-20T08:16:00Z,u_0362_s01,ins_u_0362_004,{},v2.3.0-fixed +evt_002613,u_0375,signup_started,2026-06-20T08:17:00Z,u_0375_s01,ins_u_0375_001,{},v2.3.0-fixed +evt_002614,u_0628,session_abandoned,2026-06-20T08:17:00Z,u_0628_s01,ins_u_0628_002,{},v2.3.0-fixed +evt_002615,u_0123,signup_completed,2026-06-20T08:18:00Z,u_0123_s01,ins_u_0123_002,{},v2.3.0-fixed +evt_002616,u_0697,signup_started,2026-06-20T08:20:00Z,u_0697_s01,ins_u_0697_001,{},v2.3.0-fixed +evt_002617,u_0062,profile_saved,2026-06-20T08:21:00Z,u_0062_s01,ins_u_0062_003,{},v2.3.0-fixed +evt_002618,u_0252,profile_saved,2026-06-20T08:22:00Z,u_0252_s01,ins_u_0252_003,{},v2.3.0-fixed +evt_002619,u_0062,onboarding_step_viewed,2026-06-20T08:24:00Z,u_0062_s01,ins_u_0062_004,{},v2.3.0-fixed +evt_002620,u_0734,signup_started,2026-06-20T08:24:00Z,u_0734_s01,ins_u_0734_001,{},v2.3.0-fixed +evt_002621,u_0123,session_abandoned,2026-06-20T08:25:00Z,u_0123_s01,ins_u_0123_003,{},v2.3.0-fixed +evt_002622,u_0375,signup_completed,2026-06-20T08:25:00Z,u_0375_s01,ins_u_0375_002,{},v2.3.0-fixed +evt_002623,u_0734,signup_completed,2026-06-20T08:25:00Z,u_0734_s01,ins_u_0734_002,{},v2.3.0-fixed +evt_002624,u_0252,onboarding_step_viewed,2026-06-20T08:26:00Z,u_0252_s01,ins_u_0252_004,{},v2.3.0-fixed +evt_002625,u_0697,signup_completed,2026-06-20T08:26:00Z,u_0697_s01,ins_u_0697_002,{},v2.3.0-fixed +evt_002626,u_0709,signup_started,2026-06-20T08:30:00Z,u_0709_s01,ins_u_0709_001,{},v2.3.0-fixed +evt_002627,u_0375,profile_saved,2026-06-20T08:31:00Z,u_0375_s01,ins_u_0375_003,{},v2.3.0-fixed +evt_002628,u_0697,session_abandoned,2026-06-20T08:32:00Z,u_0697_s01,ins_u_0697_003,{},v2.3.0-fixed +evt_002629,u_0734,session_abandoned,2026-06-20T08:33:00Z,u_0734_s01,ins_u_0734_003,{},v2.3.0-fixed +evt_002630,u_0362,feature_used,2026-06-20T08:34:00Z,u_0362_s01,ins_u_0362_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002631,u_0375,onboarding_step_viewed,2026-06-20T08:34:00Z,u_0375_s01,ins_u_0375_004,{},v2.3.0-fixed +evt_002632,u_0062,feature_used,2026-06-20T08:36:00Z,u_0062_s01,ins_u_0062_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002633,u_0709,signup_completed,2026-06-20T08:37:00Z,u_0709_s01,ins_u_0709_002,{},v2.3.0-fixed +evt_002634,u_0251,signup_started,2026-06-20T08:41:00Z,u_0251_s01,ins_u_0251_001,{},v2.3.0-fixed +evt_002635,u_0385,signup_started,2026-06-20T08:41:00Z,u_0385_s01,ins_u_0385_001,{},v2.3.0-fixed +evt_002636,u_0709,profile_saved,2026-06-20T08:41:00Z,u_0709_s01,ins_u_0709_003,{},v2.3.0-fixed +evt_002637,u_0252,feature_used,2026-06-20T08:42:00Z,u_0252_s01,ins_u_0252_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002638,u_0709,onboarding_step_viewed,2026-06-20T08:43:00Z,u_0709_s01,ins_u_0709_004,{},v2.3.0-fixed +evt_002639,u_0090,signup_started,2026-06-20T08:47:00Z,u_0090_s01,ins_u_0090_001,{},v2.3.0-fixed +evt_002640,u_0385,signup_completed,2026-06-20T08:47:00Z,u_0385_s01,ins_u_0385_002,{},v2.3.0-fixed +evt_002641,u_0251,signup_completed,2026-06-20T08:49:00Z,u_0251_s01,ins_u_0251_002,{},v2.3.0-fixed +evt_002642,u_0090,signup_completed,2026-06-20T08:50:00Z,u_0090_s01,ins_u_0090_002,{},v2.3.0-fixed +evt_002643,u_0251,session_abandoned,2026-06-20T08:53:00Z,u_0251_s01,ins_u_0251_003,{},v2.3.0-fixed +evt_002644,u_0362,onboarding_completed,2026-06-20T08:54:00Z,u_0362_s01,ins_u_0362_006,"{""completed_at"": ""2026-06-20T08:39:00Z""}",v2.3.0-fixed +evt_002645,u_0375,feature_used,2026-06-20T08:54:00Z,u_0375_s01,ins_u_0375_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002646,u_0371,signup_started,2026-06-20T08:55:00Z,u_0371_s01,ins_u_0371_001,{},v2.3.0-fixed +evt_002647,u_0090,session_abandoned,2026-06-20T08:56:00Z,u_0090_s01,ins_u_0090_003,{},v2.3.0-fixed +evt_002648,u_0385,profile_saved,2026-06-20T08:56:00Z,u_0385_s01,ins_u_0385_003,{},v2.3.0-fixed +evt_002649,u_0062,onboarding_completed,2026-06-20T08:57:00Z,u_0062_s01,ins_u_0062_006,"{""completed_at"": ""2026-06-20T08:54:00Z""}",v2.3.0-fixed +evt_002650,u_0385,error_shown,2026-06-20T08:57:00Z,u_0385_s01,ins_u_0385_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002651,u_0371,signup_completed,2026-06-20T09:02:00Z,u_0371_s01,ins_u_0371_002,{},v2.3.0-fixed +evt_002652,u_0709,feature_used,2026-06-20T09:03:00Z,u_0709_s01,ins_u_0709_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002653,u_0371,profile_saved,2026-06-20T09:04:00Z,u_0371_s01,ins_u_0371_003,{},v2.3.0-fixed +evt_002654,u_0371,onboarding_step_viewed,2026-06-20T09:07:00Z,u_0371_s01,ins_u_0371_004,{},v2.3.0-fixed +evt_002655,u_0010,signup_started,2026-06-20T09:08:00Z,u_0010_s01,ins_u_0010_001,{},v2.3.0-fixed +evt_002656,u_0375,onboarding_completed,2026-06-20T09:08:00Z,u_0375_s01,ins_u_0375_006,"{""completed_at"": ""2026-06-20T09:07:00Z""}",v2.3.0-fixed +evt_002657,u_0362,activation_completed,2026-06-20T09:09:00Z,u_0362_s01,ins_u_0362_007,{},v2.3.0-fixed +evt_002658,u_0010,signup_completed,2026-06-20T09:10:00Z,u_0010_s01,ins_u_0010_002,{},v2.3.0-fixed +evt_002659,u_0010,profile_saved,2026-06-20T09:12:00Z,u_0010_s01,ins_u_0010_003,{},v2.3.0-fixed +evt_002660,u_0371,feature_used,2026-06-20T09:12:00Z,u_0371_s01,ins_u_0371_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002661,u_0385,feature_used,2026-06-20T09:12:00Z,u_0385_s01,ins_u_0385_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002662,u_0010,onboarding_step_viewed,2026-06-20T09:17:00Z,u_0010_s01,ins_u_0010_004,{},v2.3.0-fixed +evt_002663,u_0509,signup_started,2026-06-20T09:17:00Z,u_0509_s01,ins_u_0509_001,{},v2.3.0-fixed +evt_002664,u_0761,signup_started,2026-06-20T09:18:00Z,u_0761_s01,ins_u_0761_001,{},v2.3.0-fixed +evt_002665,u_0283,signup_started,2026-06-20T09:24:00Z,u_0283_s01,ins_u_0283_001,{},v2.3.0-fixed +evt_002666,u_0375,activation_completed,2026-06-20T09:24:00Z,u_0375_s01,ins_u_0375_007,{},v2.3.0-fixed +evt_002667,u_0761,signup_completed,2026-06-20T09:24:00Z,u_0761_s01,ins_u_0761_002,{},v2.3.0-fixed +evt_002668,u_0283,signup_completed,2026-06-20T09:25:00Z,u_0283_s01,ins_u_0283_002,{},v2.3.0-fixed +evt_002669,u_0509,signup_completed,2026-06-20T09:25:00Z,u_0509_s01,ins_u_0509_002,{},v2.3.0-fixed +evt_002670,u_0709,onboarding_completed,2026-06-20T09:26:00Z,u_0709_s01,ins_u_0709_006,"{""completed_at"": ""2026-06-20T09:21:00Z""}",v2.3.0-fixed +evt_002671,u_0761,profile_saved,2026-06-20T09:26:00Z,u_0761_s01,ins_u_0761_003,{},v2.3.0-fixed +evt_002672,u_0509,profile_saved,2026-06-20T09:27:00Z,u_0509_s01,ins_u_0509_003,{},v2.3.0-fixed +evt_002673,u_0107,signup_started,2026-06-20T09:28:00Z,u_0107_s01,ins_u_0107_001,{},v2.3.0-fixed +evt_002674,u_0761,onboarding_step_viewed,2026-06-20T09:28:00Z,u_0761_s01,ins_u_0761_004,{},v2.3.0-fixed +evt_002675,u_0107,signup_completed,2026-06-20T09:29:00Z,u_0107_s01,ins_u_0107_002,{},v2.3.0-fixed +evt_002676,u_0509,onboarding_step_viewed,2026-06-20T09:29:00Z,u_0509_s01,ins_u_0509_004,{},v2.3.0-fixed +evt_002677,u_0010,feature_used,2026-06-20T09:31:00Z,u_0010_s01,ins_u_0010_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002678,u_0107,profile_saved,2026-06-20T09:31:00Z,u_0107_s01,ins_u_0107_003,{},v2.3.0-fixed +evt_002679,u_0283,session_abandoned,2026-06-20T09:33:00Z,u_0283_s01,ins_u_0283_003,{},v2.3.0-fixed +evt_002680,u_0107,onboarding_step_viewed,2026-06-20T09:34:00Z,u_0107_s01,ins_u_0107_004,{},v2.3.0-fixed +evt_002681,u_0314,signup_started,2026-06-20T09:34:00Z,u_0314_s01,ins_u_0314_001,{},v2.3.0-fixed +evt_002682,u_0314,signup_completed,2026-06-20T09:36:00Z,u_0314_s01,ins_u_0314_002,{},v2.3.0-fixed +evt_002683,u_0385,onboarding_completed,2026-06-20T09:36:00Z,u_0385_s01,ins_u_0385_006,"{""completed_at"": ""2026-06-20T09:29:00Z""}",v2.3.0-fixed +evt_002684,u_0501,signup_started,2026-06-20T09:37:00Z,u_0501_s01,ins_u_0501_001,{},v2.3.0-fixed +evt_002685,u_0252,activation_completed,2026-06-20T09:40:00Z,u_0252_s01,ins_u_0252_006,{},v2.3.0-fixed +evt_002686,u_0206,signup_started,2026-06-20T09:41:00Z,u_0206_s01,ins_u_0206_001,{},v2.3.0-fixed +evt_002687,u_0575,signup_started,2026-06-20T09:41:00Z,u_0575_s01,ins_u_0575_001,{},v2.3.0-fixed +evt_002688,u_0216,signup_started,2026-06-20T09:42:00Z,u_0216_s01,ins_u_0216_001,{},v2.3.0-fixed +evt_002689,u_0314,session_abandoned,2026-06-20T09:42:00Z,u_0314_s01,ins_u_0314_003,{},v2.3.0-fixed +evt_002690,u_0501,signup_completed,2026-06-20T09:42:00Z,u_0501_s01,ins_u_0501_002,{},v2.3.0-fixed +evt_002691,u_0509,feature_used,2026-06-20T09:42:00Z,u_0509_s01,ins_u_0509_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002692,u_0206,signup_completed,2026-06-20T09:44:00Z,u_0206_s01,ins_u_0206_002,{},v2.3.0-fixed +evt_002693,u_0575,session_abandoned,2026-06-20T09:46:00Z,u_0575_s01,ins_u_0575_002,{},v2.3.0-fixed +evt_002694,u_0761,feature_used,2026-06-20T09:46:00Z,u_0761_s01,ins_u_0761_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002695,u_0216,signup_completed,2026-06-20T09:47:00Z,u_0216_s01,ins_u_0216_002,{},v2.3.0-fixed +evt_002696,u_0371,onboarding_completed,2026-06-20T09:47:00Z,u_0371_s01,ins_u_0371_006,"{""completed_at"": ""2026-06-20T09:43:00Z""}",v2.3.0-fixed +evt_002697,u_0501,session_abandoned,2026-06-20T09:47:00Z,u_0501_s01,ins_u_0501_003,{},v2.3.0-fixed +evt_002698,u_0467,signup_started,2026-06-20T09:51:00Z,u_0467_s01,ins_u_0467_001,{},v2.3.0-fixed +evt_002699,u_0010,onboarding_completed,2026-06-20T09:53:00Z,u_0010_s01,ins_u_0010_006,"{""completed_at"": ""2026-06-20T09:48:00Z""}",v2.3.0-fixed +evt_002700,u_0206,profile_saved,2026-06-20T09:54:00Z,u_0206_s01,ins_u_0206_003,{},v2.3.0-fixed +evt_002701,u_0467,signup_completed,2026-06-20T09:54:00Z,u_0467_s01,ins_u_0467_002,{},v2.3.0-fixed +evt_002702,u_0216,profile_saved,2026-06-20T09:57:00Z,u_0216_s01,ins_u_0216_003,{},v2.3.0-fixed +evt_002703,u_0206,onboarding_step_viewed,2026-06-20T09:59:00Z,u_0206_s01,ins_u_0206_004,{},v2.3.0-fixed +evt_002704,u_0709,activation_completed,2026-06-20T10:00:00Z,u_0709_s01,ins_u_0709_007,{},v2.3.0-fixed +evt_002705,u_0107,onboarding_completed,2026-06-20T10:01:00Z,u_0107_s01,ins_u_0107_005,"{""completed_at"": ""2026-06-20T10:04:00Z""}",v2.3.0-fixed +evt_002706,u_0216,onboarding_step_viewed,2026-06-20T10:01:00Z,u_0216_s01,ins_u_0216_004,{},v2.3.0-fixed +evt_002707,u_0467,session_abandoned,2026-06-20T10:03:00Z,u_0467_s01,ins_u_0467_003,{},v2.3.0-fixed +evt_002708,u_0761,onboarding_completed,2026-06-20T10:08:00Z,u_0761_s01,ins_u_0761_006,"{""completed_at"": ""2026-06-20T09:55:00Z""}",v2.3.0-fixed +evt_002709,u_0216,feature_used,2026-06-20T10:12:00Z,u_0216_s01,ins_u_0216_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002710,u_0010,activation_completed,2026-06-20T10:14:00Z,u_0010_s01,ins_u_0010_007,{},v2.3.0-fixed +evt_002711,u_0385,activation_completed,2026-06-20T10:16:00Z,u_0385_s01,ins_u_0385_007,{},v2.3.0-fixed +evt_002712,u_0206,onboarding_completed,2026-06-20T10:20:00Z,u_0206_s01,ins_u_0206_005,"{""completed_at"": ""2026-06-20T10:20:00Z""}",v2.3.0-fixed +evt_002713,u_0440,signup_started,2026-06-20T10:21:00Z,u_0440_s01,ins_u_0440_001,{},v2.3.0-fixed +evt_002714,u_0371,activation_completed,2026-06-20T10:22:00Z,u_0371_s01,ins_u_0371_007,{},v2.3.0-fixed +evt_002715,u_0440,signup_completed,2026-06-20T10:27:00Z,u_0440_s01,ins_u_0440_002,{},v2.3.0-fixed +evt_002716,u_0413,signup_started,2026-06-20T10:31:00Z,u_0413_s01,ins_u_0413_001,{},v2.3.0-fixed +evt_002717,u_0413,session_abandoned,2026-06-20T10:36:00Z,u_0413_s01,ins_u_0413_002,{},v2.3.0-fixed +evt_002718,u_0440,profile_saved,2026-06-20T10:36:00Z,u_0440_s01,ins_u_0440_003,{},v2.3.0-fixed +evt_002719,u_0743,signup_started,2026-06-20T10:37:00Z,u_0743_s01,ins_u_0743_001,{},v2.3.0-fixed +evt_002720,u_0216,onboarding_completed,2026-06-20T10:39:00Z,u_0216_s01,ins_u_0216_006,"{""completed_at"": ""2026-06-20T10:28:00Z""}",v2.3.0-fixed +evt_002721,u_0440,onboarding_step_viewed,2026-06-20T10:40:00Z,u_0440_s01,ins_u_0440_004,{},v2.3.0-fixed +evt_002722,u_0509,activation_completed,2026-06-20T10:40:00Z,u_0509_s01,ins_u_0509_006,{},v2.3.0-fixed +evt_002723,u_0743,session_abandoned,2026-06-20T10:44:00Z,u_0743_s01,ins_u_0743_002,{},v2.3.0-fixed +evt_002724,u_0218,signup_started,2026-06-20T10:57:00Z,u_0218_s01,ins_u_0218_001,{},v2.3.0-fixed +evt_002725,u_0540,signup_started,2026-06-20T10:59:00Z,u_0540_s01,ins_u_0540_001,{},v2.3.0-fixed +evt_002726,u_0218,signup_completed,2026-06-20T11:02:00Z,u_0218_s01,ins_u_0218_002,{},v2.3.0-fixed +evt_002727,u_0737,signup_started,2026-06-20T11:02:00Z,u_0737_s01,ins_u_0737_001,{},v2.3.0-fixed +evt_002728,u_0737,signup_completed,2026-06-20T11:03:00Z,u_0737_s01,ins_u_0737_002,{},v2.3.0-fixed +evt_002729,u_0540,signup_completed,2026-06-20T11:05:00Z,u_0540_s01,ins_u_0540_002,{},v2.3.0-fixed +evt_002730,u_0218,session_abandoned,2026-06-20T11:06:00Z,u_0218_s01,ins_u_0218_003,{},v2.3.0-fixed +evt_002731,u_0540,session_abandoned,2026-06-20T11:09:00Z,u_0540_s01,ins_u_0540_003,{},v2.3.0-fixed +evt_002732,u_0640,signup_started,2026-06-20T11:12:00Z,u_0640_s01,ins_u_0640_001,{},v2.3.0-fixed +evt_002733,u_0737,session_abandoned,2026-06-20T11:12:00Z,u_0737_s01,ins_u_0737_003,{},v2.3.0-fixed +evt_002734,u_0640,signup_completed,2026-06-20T11:15:00Z,u_0640_s01,ins_u_0640_002,{},v2.3.0-fixed +evt_002735,u_0216,activation_completed,2026-06-20T11:16:00Z,u_0216_s01,ins_u_0216_007,{},v2.3.0-fixed +evt_002736,u_0565,signup_started,2026-06-20T11:19:00Z,u_0565_s01,ins_u_0565_001,{},v2.3.0-fixed +evt_002737,u_0640,profile_saved,2026-06-20T11:24:00Z,u_0640_s01,ins_u_0640_003,{},v2.3.0-fixed +evt_002738,u_0565,signup_completed,2026-06-20T11:27:00Z,u_0565_s01,ins_u_0565_002,{},v2.3.0-fixed +evt_002739,u_0009,signup_started,2026-06-20T11:29:00Z,u_0009_s01,ins_u_0009_001,{},v2.3.0-fixed +evt_002740,u_0009,signup_completed,2026-06-20T11:31:00Z,u_0009_s01,ins_u_0009_002,{},v2.3.0-fixed +evt_002741,u_0034,signup_started,2026-06-20T11:31:00Z,u_0034_s01,ins_u_0034_001,{},v2.3.0-fixed +evt_002742,u_0034,signup_completed,2026-06-20T11:32:00Z,u_0034_s01,ins_u_0034_002,{},v2.3.0-fixed +evt_002743,u_0300,signup_started,2026-06-20T11:32:00Z,u_0300_s01,ins_u_0300_001,{},v2.3.0-fixed +evt_002744,u_0420,return_visit,2026-06-20T11:32:00Z,u_0420_s02,ins_u_0420_007,{},v2.3.0-fixed +evt_002745,u_0227,signup_started,2026-06-20T11:36:00Z,u_0227_s01,ins_u_0227_001,{},v2.3.0-fixed +evt_002746,u_0795,signup_started,2026-06-20T11:36:00Z,u_0795_s01,ins_u_0795_001,{},v2.3.0-fixed +evt_002747,u_0009,profile_saved,2026-06-20T11:37:00Z,u_0009_s01,ins_u_0009_003,{},v2.3.0-fixed +evt_002748,u_0300,signup_completed,2026-06-20T11:37:00Z,u_0300_s01,ins_u_0300_002,{},v2.3.0-fixed +evt_002749,u_0565,profile_saved,2026-06-20T11:37:00Z,u_0565_s01,ins_u_0565_003,{},v2.3.0-fixed +evt_002750,u_0009,error_shown,2026-06-20T11:38:00Z,u_0009_s01,ins_u_0009_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002751,u_0640,feature_used,2026-06-20T11:38:00Z,u_0640_s01,ins_u_0640_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_002752,u_0034,profile_saved,2026-06-20T11:39:00Z,u_0034_s01,ins_u_0034_003,{},v2.3.0-fixed +evt_002753,u_0009,onboarding_step_viewed,2026-06-20T11:41:00Z,u_0009_s01,ins_u_0009_005,{},v2.3.0-fixed +evt_002754,u_0034,onboarding_step_viewed,2026-06-20T11:41:00Z,u_0034_s01,ins_u_0034_004,{},v2.3.0-fixed +evt_002755,u_0227,signup_completed,2026-06-20T11:41:00Z,u_0227_s01,ins_u_0227_002,{},v2.3.0-fixed +evt_002756,u_0565,onboarding_step_viewed,2026-06-20T11:43:00Z,u_0565_s01,ins_u_0565_004,{},v2.3.0-fixed +evt_002757,u_0795,signup_completed,2026-06-20T11:43:00Z,u_0795_s01,ins_u_0795_002,{},v2.3.0-fixed +evt_002758,u_0009,feature_used,2026-06-20T11:46:00Z,u_0009_s01,ins_u_0009_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002759,u_0300,profile_saved,2026-06-20T11:46:00Z,u_0300_s01,ins_u_0300_003,{},v2.3.0-fixed +evt_002760,u_0227,session_abandoned,2026-06-20T11:47:00Z,u_0227_s01,ins_u_0227_003,{},v2.3.0-fixed +evt_002761,u_0795,profile_saved,2026-06-20T11:48:00Z,u_0795_s01,ins_u_0795_003,{},v2.3.0-fixed +evt_002762,u_0143,signup_started,2026-06-20T11:49:00Z,u_0143_s01,ins_u_0143_001,{},v2.3.0-fixed +evt_002763,u_0300,onboarding_step_viewed,2026-06-20T11:51:00Z,u_0300_s01,ins_u_0300_004,{},v2.3.0-fixed +evt_002764,u_0795,onboarding_step_viewed,2026-06-20T11:54:00Z,u_0795_s01,ins_u_0795_004,{},v2.3.0-fixed +evt_002765,u_0143,signup_completed,2026-06-20T11:55:00Z,u_0143_s01,ins_u_0143_002,{},v2.3.0-fixed +evt_002766,u_0693,signup_started,2026-06-20T11:55:00Z,u_0693_s01,ins_u_0693_001,{},v2.3.0-fixed +evt_002767,u_0795,feature_used,2026-06-20T11:58:00Z,u_0795_s01,ins_u_0795_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002768,u_0640,onboarding_completed,2026-06-20T11:59:00Z,u_0640_s01,ins_u_0640_005,"{""completed_at"": ""2026-06-20T11:50:00Z""}",v2.3.0-fixed +evt_002769,u_0457,signup_started,2026-06-20T12:00:00Z,u_0457_s01,ins_u_0457_001,{},v2.3.0-fixed +evt_002770,u_0457,signup_completed,2026-06-20T12:01:00Z,u_0457_s01,ins_u_0457_002,{},v2.3.0-fixed +evt_002771,u_0693,signup_completed,2026-06-20T12:02:00Z,u_0693_s01,ins_u_0693_002,{},v2.3.0-fixed +evt_002772,u_0565,onboarding_completed,2026-06-20T12:03:00Z,u_0565_s01,ins_u_0565_005,"{""completed_at"": ""2026-06-20T12:16:00Z""}",v2.3.0-fixed +evt_002773,u_0143,session_abandoned,2026-06-20T12:04:00Z,u_0143_s01,ins_u_0143_003,{},v2.3.0-fixed +evt_002774,u_0457,profile_saved,2026-06-20T12:04:00Z,u_0457_s01,ins_u_0457_003,{},v2.3.0-fixed +evt_002775,u_0693,profile_saved,2026-06-20T12:04:00Z,u_0693_s01,ins_u_0693_003,{},v2.3.0-fixed +evt_002776,u_0693,onboarding_step_viewed,2026-06-20T12:08:00Z,u_0693_s01,ins_u_0693_004,{},v2.3.0-fixed +evt_002777,u_0702,signup_started,2026-06-20T12:08:00Z,u_0702_s01,ins_u_0702_001,{},v2.3.0-fixed +evt_002778,u_0171,return_visit,2026-06-20T12:09:00Z,u_0171_s02,ins_u_0171_007,{},v2.3.0-fixed +evt_002779,u_0034,onboarding_completed,2026-06-20T12:12:00Z,u_0034_s01,ins_u_0034_005,"{""completed_at"": ""2026-06-20T12:05:00Z""}",v2.3.0-fixed +evt_002780,u_0702,signup_completed,2026-06-20T12:13:00Z,u_0702_s01,ins_u_0702_002,{},v2.3.0-fixed +evt_002781,u_0171,feature_used,2026-06-20T12:14:00Z,u_0171_s02,ins_u_0171_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002782,u_0275,signup_started,2026-06-20T12:15:00Z,u_0275_s01,ins_u_0275_001,{},v2.3.0-fixed +evt_002783,u_0489,signup_started,2026-06-20T12:15:00Z,u_0489_s01,ins_u_0489_001,{},v2.3.0-fixed +evt_002784,u_0275,session_abandoned,2026-06-20T12:18:00Z,u_0275_s01,ins_u_0275_002,{},v2.3.0-fixed +evt_002785,u_0702,session_abandoned,2026-06-20T12:19:00Z,u_0702_s01,ins_u_0702_003,{},v2.3.0-fixed +evt_002786,u_0489,signup_completed,2026-06-20T12:23:00Z,u_0489_s01,ins_u_0489_002,{},v2.3.0-fixed +evt_002787,u_0300,onboarding_completed,2026-06-20T12:24:00Z,u_0300_s01,ins_u_0300_005,"{""completed_at"": ""2026-06-20T12:23:00Z""}",v2.3.0-fixed +evt_002788,u_0145,signup_started,2026-06-20T12:25:00Z,u_0145_s01,ins_u_0145_001,{},v2.3.0-fixed +evt_002789,u_0457,feature_used,2026-06-20T12:27:00Z,u_0457_s01,ins_u_0457_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002790,u_0728,signup_started,2026-06-20T12:28:00Z,u_0728_s01,ins_u_0728_001,{},v2.3.0-fixed +evt_002791,u_0795,onboarding_completed,2026-06-20T12:28:00Z,u_0795_s01,ins_u_0795_006,"{""completed_at"": ""2026-06-20T12:14:00Z""}",v2.3.0-fixed +evt_002792,u_0145,signup_completed,2026-06-20T12:31:00Z,u_0145_s01,ins_u_0145_002,{},v2.3.0-fixed +evt_002793,u_0482,signup_started,2026-06-20T12:32:00Z,u_0482_s01,ins_u_0482_001,{},v2.3.0-fixed +evt_002794,u_0728,signup_completed,2026-06-20T12:32:00Z,u_0728_s01,ins_u_0728_002,{},v2.3.0-fixed +evt_002795,u_0457,onboarding_completed,2026-06-20T12:33:00Z,u_0457_s01,ins_u_0457_005,"{""completed_at"": ""2026-06-20T12:30:00Z""}",v2.3.0-fixed +evt_002796,u_0482,signup_completed,2026-06-20T12:33:00Z,u_0482_s01,ins_u_0482_002,{},v2.3.0-fixed +evt_002797,u_0489,profile_saved,2026-06-20T12:33:00Z,u_0489_s01,ins_u_0489_003,{},v2.3.0-fixed +evt_002798,u_0145,profile_saved,2026-06-20T12:35:00Z,u_0145_s01,ins_u_0145_003,{},v2.3.0-fixed +evt_002799,u_0489,onboarding_step_viewed,2026-06-20T12:35:00Z,u_0489_s01,ins_u_0489_004,{},v2.3.0-fixed +evt_002800,u_0145,error_shown,2026-06-20T12:36:00Z,u_0145_s01,ins_u_0145_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002801,u_0482,profile_saved,2026-06-20T12:36:00Z,u_0482_s01,ins_u_0482_003,{},v2.3.0-fixed +evt_002802,u_0795,activation_completed,2026-06-20T12:37:00Z,u_0795_s01,ins_u_0795_007,{},v2.3.0-fixed +evt_002803,u_0482,onboarding_step_viewed,2026-06-20T12:38:00Z,u_0482_s01,ins_u_0482_004,{},v2.3.0-fixed +evt_002804,u_0728,session_abandoned,2026-06-20T12:40:00Z,u_0728_s01,ins_u_0728_003,{},v2.3.0-fixed +evt_002805,u_0145,onboarding_step_viewed,2026-06-20T12:41:00Z,u_0145_s01,ins_u_0145_005,{},v2.3.0-fixed +evt_002806,u_0693,onboarding_completed,2026-06-20T12:41:00Z,u_0693_s01,ins_u_0693_005,"{""completed_at"": ""2026-06-20T12:35:00Z""}",v2.3.0-fixed +evt_002807,u_0326,signup_started,2026-06-20T12:48:00Z,u_0326_s01,ins_u_0326_001,{},v2.3.0-fixed +evt_002808,u_0277,signup_started,2026-06-20T12:49:00Z,u_0277_s01,ins_u_0277_001,{},v2.3.0-fixed +evt_002809,u_0242,signup_started,2026-06-20T12:51:00Z,u_0242_s01,ins_u_0242_001,{},v2.3.0-fixed +evt_002810,u_0277,signup_completed,2026-06-20T12:51:00Z,u_0277_s01,ins_u_0277_002,{},v2.3.0-fixed +evt_002811,u_0571,signup_started,2026-06-20T12:52:00Z,u_0571_s01,ins_u_0571_001,{},v2.3.0-fixed +evt_002812,u_0145,feature_used,2026-06-20T12:54:00Z,u_0145_s01,ins_u_0145_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002813,u_0326,signup_completed,2026-06-20T12:54:00Z,u_0326_s01,ins_u_0326_002,{},v2.3.0-fixed +evt_002814,u_0034,activation_completed,2026-06-20T12:55:00Z,u_0034_s01,ins_u_0034_006,{},v2.3.0-fixed +evt_002815,u_0277,session_abandoned,2026-06-20T12:56:00Z,u_0277_s01,ins_u_0277_003,{},v2.3.0-fixed +evt_002816,u_0571,signup_completed,2026-06-20T12:57:00Z,u_0571_s01,ins_u_0571_002,{},v2.3.0-fixed +evt_002817,u_0242,session_abandoned,2026-06-20T12:59:00Z,u_0242_s01,ins_u_0242_002,{},v2.3.0-fixed +evt_002818,u_0326,profile_saved,2026-06-20T13:00:00Z,u_0326_s01,ins_u_0326_003,{},v2.3.0-fixed +evt_002819,u_0489,onboarding_completed,2026-06-20T13:00:00Z,u_0489_s01,ins_u_0489_005,"{""completed_at"": ""2026-06-20T12:59:00Z""}",v2.3.0-fixed +evt_002820,u_0433,return_visit,2026-06-20T13:01:00Z,u_0433_s02,ins_u_0433_006,{},v2.3.0-fixed +evt_002821,u_0482,onboarding_completed,2026-06-20T13:02:00Z,u_0482_s01,ins_u_0482_005,"{""completed_at"": ""2026-06-20T13:12:00Z""}",v2.3.0-fixed +evt_002822,u_0145,onboarding_completed,2026-06-20T13:04:00Z,u_0145_s01,ins_u_0145_007,"{""completed_at"": ""2026-06-20T13:02:00Z""}",v2.3.0-fixed +evt_002823,u_0457,activation_completed,2026-06-20T13:04:00Z,u_0457_s01,ins_u_0457_006,{},v2.3.0-fixed +evt_002824,u_0549,signup_started,2026-06-20T13:04:00Z,u_0549_s01,ins_u_0549_001,{},v2.3.0-fixed +evt_002825,u_0571,session_abandoned,2026-06-20T13:05:00Z,u_0571_s01,ins_u_0571_003,{},v2.3.0-fixed +evt_002826,u_0326,onboarding_step_viewed,2026-06-20T13:06:00Z,u_0326_s01,ins_u_0326_004,{},v2.3.0-fixed +evt_002827,u_0549,signup_completed,2026-06-20T13:07:00Z,u_0549_s01,ins_u_0549_002,{},v2.3.0-fixed +evt_002828,u_0549,profile_saved,2026-06-20T13:09:00Z,u_0549_s01,ins_u_0549_003,{},v2.3.0-fixed +evt_002829,u_0549,onboarding_step_viewed,2026-06-20T13:11:00Z,u_0549_s01,ins_u_0549_004,{},v2.3.0-fixed +evt_002830,u_0436,signup_started,2026-06-20T13:17:00Z,u_0436_s01,ins_u_0436_001,{},v2.3.0-fixed +evt_002831,u_0436,session_abandoned,2026-06-20T13:20:00Z,u_0436_s01,ins_u_0436_002,{},v2.3.0-fixed +evt_002832,u_0209,signup_started,2026-06-20T13:24:00Z,u_0209_s01,ins_u_0209_001,{},v2.3.0-fixed +evt_002833,u_0145,activation_completed,2026-06-20T13:25:00Z,u_0145_s01,ins_u_0145_008,{},v2.3.0-fixed +evt_002834,u_0326,feature_used,2026-06-20T13:25:00Z,u_0326_s01,ins_u_0326_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002835,u_0549,feature_used,2026-06-20T13:26:00Z,u_0549_s01,ins_u_0549_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002836,u_0647,signup_started,2026-06-20T13:26:00Z,u_0647_s01,ins_u_0647_001,{},v2.3.0-fixed +evt_002837,u_0647,signup_completed,2026-06-20T13:29:00Z,u_0647_s01,ins_u_0647_002,{},v2.3.0-fixed +evt_002838,u_0209,session_abandoned,2026-06-20T13:31:00Z,u_0209_s01,ins_u_0209_002,{},v2.3.0-fixed +evt_002839,u_0647,session_abandoned,2026-06-20T13:33:00Z,u_0647_s01,ins_u_0647_003,{},v2.3.0-fixed +evt_002840,u_0489,activation_completed,2026-06-20T13:34:00Z,u_0489_s01,ins_u_0489_006,{},v2.3.0-fixed +evt_002841,u_0326,onboarding_completed,2026-06-20T13:36:00Z,u_0326_s01,ins_u_0326_006,"{""completed_at"": ""2026-06-20T13:38:00Z""}",v2.3.0-fixed +evt_002842,u_0672,signup_started,2026-06-20T13:37:00Z,u_0672_s01,ins_u_0672_001,{},v2.3.0-fixed +evt_002843,u_0672,session_abandoned,2026-06-20T13:44:00Z,u_0672_s01,ins_u_0672_002,{},v2.3.0-fixed +evt_002844,u_0372,signup_started,2026-06-20T13:49:00Z,u_0372_s01,ins_u_0372_001,{},v2.3.0-fixed +evt_002845,u_0372,signup_completed,2026-06-20T13:57:00Z,u_0372_s01,ins_u_0372_002,{},v2.3.0-fixed +evt_002846,u_0285,signup_started,2026-06-20T13:58:00Z,u_0285_s01,ins_u_0285_001,{},v2.3.0-fixed +evt_002847,u_0285,signup_completed,2026-06-20T14:03:00Z,u_0285_s01,ins_u_0285_002,{},v2.3.0-fixed +evt_002848,u_0372,profile_saved,2026-06-20T14:05:00Z,u_0372_s01,ins_u_0372_003,{},v2.3.0-fixed +evt_002849,u_0285,profile_saved,2026-06-20T14:09:00Z,u_0285_s01,ins_u_0285_003,{},v2.3.0-fixed +evt_002850,u_0372,onboarding_step_viewed,2026-06-20T14:09:00Z,u_0372_s01,ins_u_0372_004,{},v2.3.0-fixed +evt_002851,u_0326,activation_completed,2026-06-20T14:10:00Z,u_0326_s01,ins_u_0326_007,{},v2.3.0-fixed +evt_002852,u_0564,signup_started,2026-06-20T14:21:00Z,u_0564_s01,ins_u_0564_001,{},v2.3.0-fixed +evt_002853,u_0616,signup_started,2026-06-20T14:21:00Z,u_0616_s01,ins_u_0616_001,{},v2.3.0-fixed +evt_002854,u_0616,signup_completed,2026-06-20T14:23:00Z,u_0616_s01,ins_u_0616_002,{},v2.3.0-fixed +evt_002855,u_0564,session_abandoned,2026-06-20T14:24:00Z,u_0564_s01,ins_u_0564_002,{},v2.3.0-fixed +evt_002856,u_0264,signup_started,2026-06-20T14:30:00Z,u_0264_s01,ins_u_0264_001,{},v2.3.0-fixed +evt_002857,u_0372,feature_used,2026-06-20T14:30:00Z,u_0372_s01,ins_u_0372_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002858,u_0616,profile_saved,2026-06-20T14:33:00Z,u_0616_s01,ins_u_0616_003,{},v2.3.0-fixed +evt_002859,u_0505,signup_started,2026-06-20T14:35:00Z,u_0505_s01,ins_u_0505_001,{},v2.3.0-fixed +evt_002860,u_0505,signup_completed,2026-06-20T14:36:00Z,u_0505_s01,ins_u_0505_002,{},v2.3.0-fixed +evt_002861,u_0654,signup_started,2026-06-20T14:36:00Z,u_0654_s01,ins_u_0654_001,{},v2.3.0-fixed +evt_002862,u_0264,signup_completed,2026-06-20T14:37:00Z,u_0264_s01,ins_u_0264_002,{},v2.3.0-fixed +evt_002863,u_0372,onboarding_completed,2026-06-20T14:37:00Z,u_0372_s01,ins_u_0372_006,"{""completed_at"": ""2026-06-20T14:33:00Z""}",v2.3.0-fixed +evt_002864,u_0616,onboarding_step_viewed,2026-06-20T14:37:00Z,u_0616_s01,ins_u_0616_004,{},v2.3.0-fixed +evt_002865,u_0349,signup_started,2026-06-20T14:38:00Z,u_0349_s01,ins_u_0349_001,{},v2.3.0-fixed +evt_002866,u_0505,profile_saved,2026-06-20T14:38:00Z,u_0505_s01,ins_u_0505_003,{},v2.3.0-fixed +evt_002867,u_0349,session_abandoned,2026-06-20T14:39:00Z,u_0349_s01,ins_u_0349_002,{},v2.3.0-fixed +evt_002868,u_0285,onboarding_completed,2026-06-20T14:42:00Z,u_0285_s01,ins_u_0285_004,"{""completed_at"": ""2026-06-20T14:45:00Z""}",v2.3.0-fixed +evt_002869,u_0654,session_abandoned,2026-06-20T14:42:00Z,u_0654_s01,ins_u_0654_002,{},v2.3.0-fixed +evt_002870,u_0264,profile_saved,2026-06-20T14:44:00Z,u_0264_s01,ins_u_0264_003,{},v2.3.0-fixed +evt_002871,u_0505,onboarding_step_viewed,2026-06-20T14:44:00Z,u_0505_s01,ins_u_0505_004,{},v2.3.0-fixed +evt_002872,u_0264,onboarding_step_viewed,2026-06-20T14:47:00Z,u_0264_s01,ins_u_0264_004,{},v2.3.0-fixed +evt_002873,u_0616,feature_used,2026-06-20T14:51:00Z,u_0616_s01,ins_u_0616_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002874,u_0619,signup_started,2026-06-20T15:09:00Z,u_0619_s01,ins_u_0619_001,{},v2.3.0-fixed +evt_002875,u_0616,onboarding_completed,2026-06-20T15:10:00Z,u_0616_s01,ins_u_0616_006,"{""completed_at"": ""2026-06-20T14:59:00Z""}",v2.3.0-fixed +evt_002876,u_0619,signup_completed,2026-06-20T15:12:00Z,u_0619_s01,ins_u_0619_002,{},v2.3.0-fixed +evt_002877,u_0012,signup_started,2026-06-20T15:16:00Z,u_0012_s01,ins_u_0012_001,{},v2.3.0-fixed +evt_002878,u_0619,profile_saved,2026-06-20T15:16:00Z,u_0619_s01,ins_u_0619_003,{},v2.3.0-fixed +evt_002879,u_0264,onboarding_completed,2026-06-20T15:18:00Z,u_0264_s01,ins_u_0264_005,"{""completed_at"": ""2026-06-20T15:24:00Z""}",v2.3.0-fixed +evt_002880,u_0505,onboarding_completed,2026-06-20T15:20:00Z,u_0505_s01,ins_u_0505_005,"{""completed_at"": ""2026-06-20T15:17:00Z""}",v2.3.0-fixed +evt_002881,u_0616,activation_completed,2026-06-20T15:20:00Z,u_0616_s01,ins_u_0616_007,{},v2.3.0-fixed +evt_002882,u_0012,signup_completed,2026-06-20T15:22:00Z,u_0012_s01,ins_u_0012_002,{},v2.3.0-fixed +evt_002883,u_0619,onboarding_step_viewed,2026-06-20T15:22:00Z,u_0619_s01,ins_u_0619_004,{},v2.3.0-fixed +evt_002884,u_0012,profile_saved,2026-06-20T15:27:00Z,u_0012_s01,ins_u_0012_003,{},v2.3.0-fixed +evt_002885,u_0619,feature_used,2026-06-20T15:27:00Z,u_0619_s01,ins_u_0619_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002886,u_0012,onboarding_step_viewed,2026-06-20T15:29:00Z,u_0012_s01,ins_u_0012_004,{},v2.3.0-fixed +evt_002887,u_0478,signup_started,2026-06-20T15:34:00Z,u_0478_s01,ins_u_0478_001,{},v2.3.0-fixed +evt_002888,u_0012,feature_used,2026-06-20T15:36:00Z,u_0012_s01,ins_u_0012_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002889,u_0478,signup_completed,2026-06-20T15:37:00Z,u_0478_s01,ins_u_0478_002,{},v2.3.0-fixed +evt_002890,u_0121,signup_started,2026-06-20T15:38:00Z,u_0121_s01,ins_u_0121_001,{},v2.3.0-fixed +evt_002891,u_0230,signup_started,2026-06-20T15:41:00Z,u_0230_s01,ins_u_0230_001,{},v2.3.0-fixed +evt_002892,u_0478,session_abandoned,2026-06-20T15:41:00Z,u_0478_s01,ins_u_0478_003,{},v2.3.0-fixed +evt_002893,u_0230,session_abandoned,2026-06-20T15:42:00Z,u_0230_s01,ins_u_0230_002,{},v2.3.0-fixed +evt_002894,u_0121,session_abandoned,2026-06-20T15:44:00Z,u_0121_s01,ins_u_0121_002,{},v2.3.0-fixed +evt_002895,u_0505,activation_completed,2026-06-20T15:47:00Z,u_0505_s01,ins_u_0505_006,{},v2.3.0-fixed +evt_002896,u_0407,signup_started,2026-06-20T15:49:00Z,u_0407_s01,ins_u_0407_001,{},v2.3.0-fixed +evt_002897,u_0178,signup_started,2026-06-20T15:50:00Z,u_0178_s01,ins_u_0178_001,{},v2.3.0-fixed +evt_002898,u_0178,signup_completed,2026-06-20T15:52:00Z,u_0178_s01,ins_u_0178_002,{},v2.3.0-fixed +evt_002899,u_0619,onboarding_completed,2026-06-20T15:56:00Z,u_0619_s01,ins_u_0619_006,"{""completed_at"": ""2026-06-20T15:51:00Z""}",v2.3.0-fixed +evt_002900,u_0012,onboarding_completed,2026-06-20T15:57:00Z,u_0012_s01,ins_u_0012_006,"{""completed_at"": ""2026-06-20T15:58:00Z""}",v2.3.0-fixed +evt_002901,u_0407,session_abandoned,2026-06-20T15:57:00Z,u_0407_s01,ins_u_0407_002,{},v2.3.0-fixed +evt_002902,u_0178,profile_saved,2026-06-20T15:59:00Z,u_0178_s01,ins_u_0178_003,{},v2.3.0-fixed +evt_002903,u_0591,signup_started,2026-06-20T16:00:00Z,u_0591_s01,ins_u_0591_001,{},v2.3.0-fixed +evt_002904,u_0178,onboarding_step_viewed,2026-06-20T16:02:00Z,u_0178_s01,ins_u_0178_004,{},v2.3.0-fixed +evt_002905,u_0488,signup_started,2026-06-20T16:05:00Z,u_0488_s01,ins_u_0488_001,{},v2.3.0-fixed +evt_002906,u_0591,signup_completed,2026-06-20T16:05:00Z,u_0591_s01,ins_u_0591_002,{},v2.3.0-fixed +evt_002907,u_0387,signup_started,2026-06-20T16:06:00Z,u_0387_s01,ins_u_0387_001,{},v2.3.0-fixed +evt_002908,u_0387,signup_completed,2026-06-20T16:08:00Z,u_0387_s01,ins_u_0387_002,{},v2.3.0-fixed +evt_002909,u_0591,profile_saved,2026-06-20T16:09:00Z,u_0591_s01,ins_u_0591_003,{},v2.3.0-fixed +evt_002910,u_0488,signup_completed,2026-06-20T16:12:00Z,u_0488_s01,ins_u_0488_002,{},v2.3.0-fixed +evt_002911,u_0387,profile_saved,2026-06-20T16:15:00Z,u_0387_s01,ins_u_0387_003,{},v2.3.0-fixed +evt_002912,u_0591,onboarding_step_viewed,2026-06-20T16:15:00Z,u_0591_s01,ins_u_0591_004,{},v2.3.0-fixed +evt_002913,u_0178,feature_used,2026-06-20T16:16:00Z,u_0178_s01,ins_u_0178_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002914,u_0387,error_shown,2026-06-20T16:16:00Z,u_0387_s01,ins_u_0387_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_002915,u_0466,signup_started,2026-06-20T16:16:00Z,u_0466_s01,ins_u_0466_001,{},v2.3.0-fixed +evt_002916,u_0387,onboarding_step_viewed,2026-06-20T16:17:00Z,u_0387_s01,ins_u_0387_005,{},v2.3.0-fixed +evt_002917,u_0488,profile_saved,2026-06-20T16:18:00Z,u_0488_s01,ins_u_0488_003,{},v2.3.0-fixed +evt_002918,u_0488,onboarding_step_viewed,2026-06-20T16:20:00Z,u_0488_s01,ins_u_0488_004,{},v2.3.0-fixed +evt_002919,u_0012,activation_completed,2026-06-20T16:22:00Z,u_0012_s01,ins_u_0012_007,{},v2.3.0-fixed +evt_002920,u_0466,signup_completed,2026-06-20T16:23:00Z,u_0466_s01,ins_u_0466_002,{},v2.3.0-fixed +evt_002921,u_0466,session_abandoned,2026-06-20T16:27:00Z,u_0466_s01,ins_u_0466_003,{},v2.3.0-fixed +evt_002922,u_0178,onboarding_completed,2026-06-20T16:38:00Z,u_0178_s01,ins_u_0178_006,"{""completed_at"": ""2026-06-20T16:26:00Z""}",v2.3.0-fixed +evt_002923,u_0387,feature_used,2026-06-20T16:40:00Z,u_0387_s01,ins_u_0387_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002924,u_0488,onboarding_completed,2026-06-20T16:47:00Z,u_0488_s01,ins_u_0488_005,"{""completed_at"": ""2026-06-20T16:44:00Z""}",v2.3.0-fixed +evt_002925,u_0629,signup_started,2026-06-20T16:48:00Z,u_0629_s01,ins_u_0629_001,{},v2.3.0-fixed +evt_002926,u_0629,signup_completed,2026-06-20T16:49:00Z,u_0629_s01,ins_u_0629_002,{},v2.3.0-fixed +evt_002927,u_0630,signup_started,2026-06-20T16:49:00Z,u_0630_s01,ins_u_0630_001,{},v2.3.0-fixed +evt_002928,u_0591,onboarding_completed,2026-06-20T16:51:00Z,u_0591_s01,ins_u_0591_005,"{""completed_at"": ""2026-06-20T16:42:00Z""}",v2.3.0-fixed +evt_002929,u_0629,session_abandoned,2026-06-20T16:56:00Z,u_0629_s01,ins_u_0629_003,{},v2.3.0-fixed +evt_002930,u_0387,onboarding_completed,2026-06-20T16:57:00Z,u_0387_s01,ins_u_0387_007,"{""completed_at"": ""2026-06-20T16:45:00Z""}",v2.3.0-fixed +evt_002931,u_0562,signup_started,2026-06-20T16:57:00Z,u_0562_s01,ins_u_0562_001,{},v2.3.0-fixed +evt_002932,u_0630,signup_completed,2026-06-20T16:57:00Z,u_0630_s01,ins_u_0630_002,{},v2.3.0-fixed +evt_002933,u_0591,activation_completed,2026-06-20T17:04:00Z,u_0591_s01,ins_u_0591_006,{},v2.3.0-fixed +evt_002934,u_0630,session_abandoned,2026-06-20T17:04:00Z,u_0630_s01,ins_u_0630_003,{},v2.3.0-fixed +evt_002935,u_0336,signup_started,2026-06-20T17:05:00Z,u_0336_s01,ins_u_0336_001,{},v2.3.0-fixed +evt_002936,u_0562,signup_completed,2026-06-20T17:05:00Z,u_0562_s01,ins_u_0562_002,{},v2.3.0-fixed +evt_002937,u_0178,activation_completed,2026-06-20T17:07:00Z,u_0178_s01,ins_u_0178_007,{},v2.3.0-fixed +evt_002938,u_0720,signup_started,2026-06-20T17:08:00Z,u_0720_s01,ins_u_0720_001,{},v2.3.0-fixed +evt_002939,u_0720,signup_completed,2026-06-20T17:09:00Z,u_0720_s01,ins_u_0720_002,{},v2.3.0-fixed +evt_002940,u_0336,signup_completed,2026-06-20T17:12:00Z,u_0336_s01,ins_u_0336_002,{},v2.3.0-fixed +evt_002941,u_0731,signup_started,2026-06-20T17:13:00Z,u_0731_s01,ins_u_0731_001,{},v2.3.0-fixed +evt_002942,u_0234,signup_started,2026-06-20T17:14:00Z,u_0234_s01,ins_u_0234_001,{},v2.3.0-fixed +evt_002943,u_0562,session_abandoned,2026-06-20T17:14:00Z,u_0562_s01,ins_u_0562_003,{},v2.3.0-fixed +evt_002944,u_0720,profile_saved,2026-06-20T17:14:00Z,u_0720_s01,ins_u_0720_003,{},v2.3.0-fixed +evt_002945,u_0648,signup_started,2026-06-20T17:17:00Z,u_0648_s01,ins_u_0648_001,{},v2.3.0-fixed +evt_002946,u_0731,signup_completed,2026-06-20T17:17:00Z,u_0731_s01,ins_u_0731_002,{},v2.3.0-fixed +evt_002947,u_0648,signup_completed,2026-06-20T17:18:00Z,u_0648_s01,ins_u_0648_002,{},v2.3.0-fixed +evt_002948,u_0234,signup_completed,2026-06-20T17:20:00Z,u_0234_s01,ins_u_0234_002,{},v2.3.0-fixed +evt_002949,u_0488,activation_completed,2026-06-20T17:20:00Z,u_0488_s01,ins_u_0488_006,{},v2.3.0-fixed +evt_002950,u_0720,onboarding_step_viewed,2026-06-20T17:20:00Z,u_0720_s01,ins_u_0720_004,{},v2.3.0-fixed +evt_002951,u_0648,profile_saved,2026-06-20T17:21:00Z,u_0648_s01,ins_u_0648_003,{},v2.3.0-fixed +evt_002952,u_0336,profile_saved,2026-06-20T17:22:00Z,u_0336_s01,ins_u_0336_003,{},v2.3.0-fixed +evt_002953,u_0274,signup_started,2026-06-20T17:23:00Z,u_0274_s01,ins_u_0274_001,{},v2.3.0-fixed +evt_002954,u_0731,session_abandoned,2026-06-20T17:23:00Z,u_0731_s01,ins_u_0731_003,{},v2.3.0-fixed +evt_002955,u_0720,feature_used,2026-06-20T17:24:00Z,u_0720_s01,ins_u_0720_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002956,u_0234,profile_saved,2026-06-20T17:25:00Z,u_0234_s01,ins_u_0234_003,{},v2.3.0-fixed +evt_002957,u_0274,signup_completed,2026-06-20T17:25:00Z,u_0274_s01,ins_u_0274_002,{},v2.3.0-fixed +evt_002958,u_0274,profile_saved,2026-06-20T17:27:00Z,u_0274_s01,ins_u_0274_003,{},v2.3.0-fixed +evt_002959,u_0648,onboarding_step_viewed,2026-06-20T17:27:00Z,u_0648_s01,ins_u_0648_004,{},v2.3.0-fixed +evt_002960,u_0400,signup_started,2026-06-20T17:28:00Z,u_0400_s01,ins_u_0400_001,{},v2.3.0-fixed +evt_002961,u_0234,onboarding_step_viewed,2026-06-20T17:30:00Z,u_0234_s01,ins_u_0234_004,{},v2.3.0-fixed +evt_002962,u_0274,onboarding_step_viewed,2026-06-20T17:30:00Z,u_0274_s01,ins_u_0274_004,{},v2.3.0-fixed +evt_002963,u_0400,signup_completed,2026-06-20T17:30:00Z,u_0400_s01,ins_u_0400_002,{},v2.3.0-fixed +evt_002964,u_0400,profile_saved,2026-06-20T17:40:00Z,u_0400_s01,ins_u_0400_003,{},v2.3.0-fixed +evt_002965,u_0274,feature_used,2026-06-20T17:41:00Z,u_0274_s01,ins_u_0274_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_002966,u_0400,onboarding_step_viewed,2026-06-20T17:42:00Z,u_0400_s01,ins_u_0400_004,{},v2.3.0-fixed +evt_002967,u_0336,feature_used,2026-06-20T17:44:00Z,u_0336_s01,ins_u_0336_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_002968,u_0378,signup_started,2026-06-20T17:48:00Z,u_0378_s01,ins_u_0378_001,{},v2.3.0-fixed +evt_002969,u_0720,onboarding_completed,2026-06-20T17:48:00Z,u_0720_s01,ins_u_0720_006,"{""completed_at"": ""2026-06-20T17:44:00Z""}",v2.3.0-fixed +evt_002970,u_0704,signup_started,2026-06-20T17:50:00Z,u_0704_s01,ins_u_0704_001,{},v2.3.0-fixed +evt_002971,u_0507,signup_started,2026-06-20T17:52:00Z,u_0507_s01,ins_u_0507_001,{},v2.3.0-fixed +evt_002972,u_0378,session_abandoned,2026-06-20T17:55:00Z,u_0378_s01,ins_u_0378_002,{},v2.3.0-fixed +evt_002973,u_0704,signup_completed,2026-06-20T17:58:00Z,u_0704_s01,ins_u_0704_002,{},v2.3.0-fixed +evt_002974,u_0507,signup_completed,2026-06-20T18:00:00Z,u_0507_s01,ins_u_0507_002,{},v2.3.0-fixed +evt_002975,u_0782,signup_started,2026-06-20T18:00:00Z,u_0782_s01,ins_u_0782_001,{},v2.3.0-fixed +evt_002976,u_0782,session_abandoned,2026-06-20T18:02:00Z,u_0782_s01,ins_u_0782_002,{},v2.3.0-fixed +evt_002977,u_0274,onboarding_completed,2026-06-20T18:04:00Z,u_0274_s01,ins_u_0274_006,"{""completed_at"": ""2026-06-20T17:57:00Z""}",v2.3.0-fixed +evt_002978,u_0336,onboarding_completed,2026-06-20T18:04:00Z,u_0336_s01,ins_u_0336_005,"{""completed_at"": ""2026-06-20T17:51:00Z""}",v2.3.0-fixed +evt_002979,u_0394,signup_started,2026-06-20T18:04:00Z,u_0394_s01,ins_u_0394_001,{},v2.3.0-fixed +evt_002980,u_0704,profile_saved,2026-06-20T18:05:00Z,u_0704_s01,ins_u_0704_003,{},v2.3.0-fixed +evt_002981,u_0402,signup_started,2026-06-20T18:06:00Z,u_0402_s01,ins_u_0402_001,{},v2.3.0-fixed +evt_002982,u_0507,profile_saved,2026-06-20T18:07:00Z,u_0507_s01,ins_u_0507_003,{},v2.3.0-fixed +evt_002983,u_0548,signup_started,2026-06-20T18:07:00Z,u_0548_s01,ins_u_0548_001,{},v2.3.0-fixed +evt_002984,u_0704,onboarding_step_viewed,2026-06-20T18:08:00Z,u_0704_s01,ins_u_0704_004,{},v2.3.0-fixed +evt_002985,u_0394,signup_completed,2026-06-20T18:09:00Z,u_0394_s01,ins_u_0394_002,{},v2.3.0-fixed +evt_002986,u_0402,signup_completed,2026-06-20T18:12:00Z,u_0402_s01,ins_u_0402_002,{},v2.3.0-fixed +evt_002987,u_0507,onboarding_step_viewed,2026-06-20T18:12:00Z,u_0507_s01,ins_u_0507_004,{},v2.3.0-fixed +evt_002988,u_0379,signup_started,2026-06-20T18:14:00Z,u_0379_s01,ins_u_0379_001,{},v2.3.0-fixed +evt_002989,u_0548,signup_completed,2026-06-20T18:14:00Z,u_0548_s01,ins_u_0548_002,{},v2.3.0-fixed +evt_002990,u_0379,signup_completed,2026-06-20T18:15:00Z,u_0379_s01,ins_u_0379_002,{},v2.3.0-fixed +evt_002991,u_0322,signup_started,2026-06-20T18:17:00Z,u_0322_s01,ins_u_0322_001,{},v2.3.0-fixed +evt_002992,u_0366,signup_started,2026-06-20T18:17:00Z,u_0366_s01,ins_u_0366_001,{},v2.3.0-fixed +evt_002993,u_0400,onboarding_completed,2026-06-20T18:17:00Z,u_0400_s01,ins_u_0400_005,"{""completed_at"": ""2026-06-20T18:09:00Z""}",v2.3.0-fixed +evt_002994,u_0402,session_abandoned,2026-06-20T18:17:00Z,u_0402_s01,ins_u_0402_003,{},v2.3.0-fixed +evt_002995,u_0394,profile_saved,2026-06-20T18:19:00Z,u_0394_s01,ins_u_0394_003,{},v2.3.0-fixed +evt_002996,u_0507,feature_used,2026-06-20T18:19:00Z,u_0507_s01,ins_u_0507_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_002997,u_0366,signup_completed,2026-06-20T18:20:00Z,u_0366_s01,ins_u_0366_002,{},v2.3.0-fixed +evt_002998,u_0234,activation_completed,2026-06-20T18:21:00Z,u_0234_s01,ins_u_0234_005,{},v2.3.0-fixed +evt_002999,u_0379,session_abandoned,2026-06-20T18:21:00Z,u_0379_s01,ins_u_0379_003,{},v2.3.0-fixed +evt_003000,u_0735,signup_started,2026-06-20T18:21:00Z,u_0735_s01,ins_u_0735_001,{},v2.3.0-fixed +evt_003001,u_0322,signup_completed,2026-06-20T18:22:00Z,u_0322_s01,ins_u_0322_002,{},v2.3.0-fixed +evt_003002,u_0469,signup_started,2026-06-20T18:22:00Z,u_0469_s01,ins_u_0469_001,{},v2.3.0-fixed +evt_003003,u_0469,signup_completed,2026-06-20T18:23:00Z,u_0469_s01,ins_u_0469_002,{},v2.3.0-fixed +evt_003004,u_0548,profile_saved,2026-06-20T18:24:00Z,u_0548_s01,ins_u_0548_003,{},v2.3.0-fixed +evt_003005,u_0735,session_abandoned,2026-06-20T18:24:00Z,u_0735_s01,ins_u_0735_002,{},v2.3.0-fixed +evt_003006,u_0366,session_abandoned,2026-06-20T18:25:00Z,u_0366_s01,ins_u_0366_003,{},v2.3.0-fixed +evt_003007,u_0322,session_abandoned,2026-06-20T18:26:00Z,u_0322_s01,ins_u_0322_003,{},v2.3.0-fixed +evt_003008,u_0035,signup_started,2026-06-20T18:27:00Z,u_0035_s01,ins_u_0035_001,{},v2.3.0-fixed +evt_003009,u_0548,onboarding_step_viewed,2026-06-20T18:27:00Z,u_0548_s01,ins_u_0548_004,{},v2.3.0-fixed +evt_003010,u_0704,feature_used,2026-06-20T18:30:00Z,u_0704_s01,ins_u_0704_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003011,u_0035,signup_completed,2026-06-20T18:31:00Z,u_0035_s01,ins_u_0035_002,{},v2.3.0-fixed +evt_003012,u_0469,session_abandoned,2026-06-20T18:32:00Z,u_0469_s01,ins_u_0469_003,{},v2.3.0-fixed +evt_003013,u_0394,feature_used,2026-06-20T18:38:00Z,u_0394_s01,ins_u_0394_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_003014,u_0035,profile_saved,2026-06-20T18:39:00Z,u_0035_s01,ins_u_0035_003,{},v2.3.0-fixed +evt_003015,u_0430,signup_started,2026-06-20T18:40:00Z,u_0430_s01,ins_u_0430_001,{},v2.3.0-fixed +evt_003016,u_0035,onboarding_step_viewed,2026-06-20T18:41:00Z,u_0035_s01,ins_u_0035_004,{},v2.3.0-fixed +evt_003017,u_0274,activation_completed,2026-06-20T18:41:00Z,u_0274_s01,ins_u_0274_007,{},v2.3.0-fixed +evt_003018,u_0704,onboarding_completed,2026-06-20T18:41:00Z,u_0704_s01,ins_u_0704_006,"{""completed_at"": ""2026-06-20T18:45:00Z""}",v2.3.0-fixed +evt_003019,u_0502,signup_started,2026-06-20T18:43:00Z,u_0502_s01,ins_u_0502_001,{},v2.3.0-fixed +evt_003020,u_0233,signup_started,2026-06-20T18:44:00Z,u_0233_s01,ins_u_0233_001,{},v2.3.0-fixed +evt_003021,u_0548,feature_used,2026-06-20T18:44:00Z,u_0548_s01,ins_u_0548_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003022,u_0430,signup_completed,2026-06-20T18:45:00Z,u_0430_s01,ins_u_0430_002,{},v2.3.0-fixed +evt_003023,u_0657,signup_started,2026-06-20T18:45:00Z,u_0657_s01,ins_u_0657_001,{},v2.3.0-fixed +evt_003024,u_0035,feature_used,2026-06-20T18:47:00Z,u_0035_s01,ins_u_0035_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003025,u_0233,session_abandoned,2026-06-20T18:47:00Z,u_0233_s01,ins_u_0233_002,{},v2.3.0-fixed +evt_003026,u_0657,signup_completed,2026-06-20T18:48:00Z,u_0657_s01,ins_u_0657_002,{},v2.3.0-fixed +evt_003027,u_0502,signup_completed,2026-06-20T18:49:00Z,u_0502_s01,ins_u_0502_002,{},v2.3.0-fixed +evt_003028,u_0430,profile_saved,2026-06-20T18:53:00Z,u_0430_s01,ins_u_0430_003,{},v2.3.0-fixed +evt_003029,u_0502,profile_saved,2026-06-20T18:53:00Z,u_0502_s01,ins_u_0502_003,{},v2.3.0-fixed +evt_003030,u_0657,profile_saved,2026-06-20T18:53:00Z,u_0657_s01,ins_u_0657_003,{},v2.3.0-fixed +evt_003031,u_0657,onboarding_step_viewed,2026-06-20T18:55:00Z,u_0657_s01,ins_u_0657_004,{},v2.3.0-fixed +evt_003032,u_0430,onboarding_step_viewed,2026-06-20T18:59:00Z,u_0430_s01,ins_u_0430_004,{},v2.3.0-fixed +evt_003033,u_0502,onboarding_step_viewed,2026-06-20T18:59:00Z,u_0502_s01,ins_u_0502_004,{},v2.3.0-fixed +evt_003034,u_0031,signup_started,2026-06-20T19:03:00Z,u_0031_s01,ins_u_0031_001,{},v2.3.0-fixed +evt_003035,u_0118,signup_started,2026-06-20T19:03:00Z,u_0118_s01,ins_u_0118_001,{},v2.3.0-fixed +evt_003036,u_0031,session_abandoned,2026-06-20T19:04:00Z,u_0031_s01,ins_u_0031_002,{},v2.3.0-fixed +evt_003037,u_0118,signup_completed,2026-06-20T19:06:00Z,u_0118_s01,ins_u_0118_002,{},v2.3.0-fixed +evt_003038,u_0035,onboarding_completed,2026-06-20T19:08:00Z,u_0035_s01,ins_u_0035_006,"{""completed_at"": ""2026-06-20T19:09:00Z""}",v2.3.0-fixed +evt_003039,u_0548,onboarding_completed,2026-06-20T19:08:00Z,u_0548_s01,ins_u_0548_006,"{""completed_at"": ""2026-06-20T18:50:00Z""}",v2.3.0-fixed +evt_003040,u_0704,activation_completed,2026-06-20T19:08:00Z,u_0704_s01,ins_u_0704_007,{},v2.3.0-fixed +evt_003041,u_0118,profile_saved,2026-06-20T19:14:00Z,u_0118_s01,ins_u_0118_003,{},v2.3.0-fixed +evt_003042,u_0118,error_shown,2026-06-20T19:15:00Z,u_0118_s01,ins_u_0118_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003043,u_0118,onboarding_step_viewed,2026-06-20T19:19:00Z,u_0118_s01,ins_u_0118_005,{},v2.3.0-fixed +evt_003044,u_0057,signup_started,2026-06-20T19:21:00Z,u_0057_s01,ins_u_0057_001,{},v2.3.0-fixed +evt_003045,u_0057,signup_completed,2026-06-20T19:23:00Z,u_0057_s01,ins_u_0057_002,{},v2.3.0-fixed +evt_003046,u_0173,signup_started,2026-06-20T19:23:00Z,u_0173_s01,ins_u_0173_001,{},v2.3.0-fixed +evt_003047,u_0173,signup_completed,2026-06-20T19:26:00Z,u_0173_s01,ins_u_0173_002,{},v2.3.0-fixed +evt_003048,u_0502,onboarding_completed,2026-06-20T19:28:00Z,u_0502_s01,ins_u_0502_005,"{""completed_at"": ""2026-06-20T19:20:00Z""}",v2.3.0-fixed +evt_003049,u_0057,session_abandoned,2026-06-20T19:29:00Z,u_0057_s01,ins_u_0057_003,{},v2.3.0-fixed +evt_003050,u_0541,signup_started,2026-06-20T19:29:00Z,u_0541_s01,ins_u_0541_001,{},v2.3.0-fixed +evt_003051,u_0749,signup_started,2026-06-20T19:29:00Z,u_0749_s01,ins_u_0749_001,{},v2.3.0-fixed +evt_003052,u_0118,feature_used,2026-06-20T19:31:00Z,u_0118_s01,ins_u_0118_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_003053,u_0541,session_abandoned,2026-06-20T19:32:00Z,u_0541_s01,ins_u_0541_002,{},v2.3.0-fixed +evt_003054,u_0657,onboarding_completed,2026-06-20T19:32:00Z,u_0657_s01,ins_u_0657_005,"{""completed_at"": ""2026-06-20T19:23:00Z""}",v2.3.0-fixed +evt_003055,u_0749,signup_completed,2026-06-20T19:33:00Z,u_0749_s01,ins_u_0749_002,{},v2.3.0-fixed +evt_003056,u_0173,profile_saved,2026-06-20T19:35:00Z,u_0173_s01,ins_u_0173_003,{},v2.3.0-fixed +evt_003057,u_0548,activation_completed,2026-06-20T19:36:00Z,u_0548_s01,ins_u_0548_007,{},v2.3.0-fixed +evt_003058,u_0682,signup_started,2026-06-20T19:36:00Z,u_0682_s01,ins_u_0682_001,{},v2.3.0-fixed +evt_003059,u_0682,session_abandoned,2026-06-20T19:37:00Z,u_0682_s01,ins_u_0682_002,{},v2.3.0-fixed +evt_003060,u_0394,activation_completed,2026-06-20T19:38:00Z,u_0394_s01,ins_u_0394_005,{},v2.3.0-fixed +evt_003061,u_0173,onboarding_step_viewed,2026-06-20T19:41:00Z,u_0173_s01,ins_u_0173_004,{},v2.3.0-fixed +evt_003062,u_0749,profile_saved,2026-06-20T19:42:00Z,u_0749_s01,ins_u_0749_003,{},v2.3.0-fixed +evt_003063,u_0546,signup_started,2026-06-20T19:45:00Z,u_0546_s01,ins_u_0546_001,{},v2.3.0-fixed +evt_003064,u_0546,signup_completed,2026-06-20T19:46:00Z,u_0546_s01,ins_u_0546_002,{},v2.3.0-fixed +evt_003065,u_0035,activation_completed,2026-06-20T19:48:00Z,u_0035_s01,ins_u_0035_007,{},v2.3.0-fixed +evt_003066,u_0118,onboarding_completed,2026-06-20T19:48:00Z,u_0118_s01,ins_u_0118_007,"{""completed_at"": ""2026-06-20T19:48:00Z""}",v2.3.0-fixed +evt_003067,u_0502,activation_completed,2026-06-20T19:48:00Z,u_0502_s01,ins_u_0502_006,{},v2.3.0-fixed +evt_003068,u_0749,onboarding_step_viewed,2026-06-20T19:48:00Z,u_0749_s01,ins_u_0749_004,{},v2.3.0-fixed +evt_003069,u_0546,profile_saved,2026-06-20T19:49:00Z,u_0546_s01,ins_u_0546_003,{},v2.3.0-fixed +evt_003070,u_0546,onboarding_step_viewed,2026-06-20T19:53:00Z,u_0546_s01,ins_u_0546_004,{},v2.3.0-fixed +evt_003071,u_0173,feature_used,2026-06-20T19:54:00Z,u_0173_s01,ins_u_0173_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003072,u_0691,signup_started,2026-06-20T19:55:00Z,u_0691_s01,ins_u_0691_001,{},v2.3.0-fixed +evt_003073,u_0749,feature_used,2026-06-20T19:55:00Z,u_0749_s01,ins_u_0749_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003074,u_0657,activation_completed,2026-06-20T19:56:00Z,u_0657_s01,ins_u_0657_006,{},v2.3.0-fixed +evt_003075,u_0691,signup_completed,2026-06-20T19:56:00Z,u_0691_s01,ins_u_0691_002,{},v2.3.0-fixed +evt_003076,u_0546,feature_used,2026-06-20T19:57:00Z,u_0546_s01,ins_u_0546_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003077,u_0530,signup_started,2026-06-20T19:58:00Z,u_0530_s01,ins_u_0530_001,{},v2.3.0-fixed +evt_003078,u_0176,signup_started,2026-06-20T20:00:00Z,u_0176_s01,ins_u_0176_001,{},v2.3.0-fixed +evt_003079,u_0176,signup_completed,2026-06-20T20:02:00Z,u_0176_s01,ins_u_0176_002,{},v2.3.0-fixed +evt_003080,u_0530,signup_completed,2026-06-20T20:02:00Z,u_0530_s01,ins_u_0530_002,{},v2.3.0-fixed +evt_003081,u_0176,profile_saved,2026-06-20T20:04:00Z,u_0176_s01,ins_u_0176_003,{},v2.3.0-fixed +evt_003082,u_0173,onboarding_completed,2026-06-20T20:05:00Z,u_0173_s01,ins_u_0173_006,"{""completed_at"": ""2026-06-20T20:12:00Z""}",v2.3.0-fixed +evt_003083,u_0691,profile_saved,2026-06-20T20:05:00Z,u_0691_s01,ins_u_0691_003,{},v2.3.0-fixed +evt_003084,u_0430,activation_completed,2026-06-20T20:07:00Z,u_0430_s01,ins_u_0430_005,{},v2.3.0-fixed +evt_003085,u_0530,session_abandoned,2026-06-20T20:08:00Z,u_0530_s01,ins_u_0530_003,{},v2.3.0-fixed +evt_003086,u_0176,onboarding_step_viewed,2026-06-20T20:09:00Z,u_0176_s01,ins_u_0176_004,{},v2.3.0-fixed +evt_003087,u_0399,signup_started,2026-06-20T20:11:00Z,u_0399_s01,ins_u_0399_001,{},v2.3.0-fixed +evt_003088,u_0118,activation_completed,2026-06-20T20:13:00Z,u_0118_s01,ins_u_0118_008,{},v2.3.0-fixed +evt_003089,u_0323,signup_started,2026-06-20T20:14:00Z,u_0323_s01,ins_u_0323_001,{},v2.3.0-fixed +evt_003090,u_0323,signup_completed,2026-06-20T20:17:00Z,u_0323_s01,ins_u_0323_002,{},v2.3.0-fixed +evt_003091,u_0399,session_abandoned,2026-06-20T20:17:00Z,u_0399_s01,ins_u_0399_002,{},v2.3.0-fixed +evt_003092,u_0749,onboarding_completed,2026-06-20T20:17:00Z,u_0749_s01,ins_u_0749_006,"{""completed_at"": ""2026-06-20T20:17:00Z""}",v2.3.0-fixed +evt_003093,u_0598,signup_started,2026-06-20T20:18:00Z,u_0598_s01,ins_u_0598_001,{},v2.3.0-fixed +evt_003094,u_0546,onboarding_completed,2026-06-20T20:23:00Z,u_0546_s01,ins_u_0546_006,"{""completed_at"": ""2026-06-20T20:25:00Z""}",v2.3.0-fixed +evt_003095,u_0691,feature_used,2026-06-20T20:23:00Z,u_0691_s01,ins_u_0691_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003096,u_0323,profile_saved,2026-06-20T20:24:00Z,u_0323_s01,ins_u_0323_003,{},v2.3.0-fixed +evt_003097,u_0598,signup_completed,2026-06-20T20:26:00Z,u_0598_s01,ins_u_0598_002,{},v2.3.0-fixed +evt_003098,u_0323,onboarding_step_viewed,2026-06-20T20:28:00Z,u_0323_s01,ins_u_0323_004,{},v2.3.0-fixed +evt_003099,u_0162,signup_started,2026-06-20T20:30:00Z,u_0162_s01,ins_u_0162_001,{},v2.3.0-fixed +evt_003100,u_0162,signup_completed,2026-06-20T20:33:00Z,u_0162_s01,ins_u_0162_002,{},v2.3.0-fixed +evt_003101,u_0197,signup_started,2026-06-20T20:36:00Z,u_0197_s01,ins_u_0197_001,{},v2.3.0-fixed +evt_003102,u_0598,profile_saved,2026-06-20T20:36:00Z,u_0598_s01,ins_u_0598_003,{},v2.3.0-fixed +evt_003103,u_0692,signup_started,2026-06-20T20:36:00Z,u_0692_s01,ins_u_0692_001,{},v2.3.0-fixed +evt_003104,u_0197,signup_completed,2026-06-20T20:37:00Z,u_0197_s01,ins_u_0197_002,{},v2.3.0-fixed +evt_003105,u_0323,feature_used,2026-06-20T20:40:00Z,u_0323_s01,ins_u_0323_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003106,u_0692,signup_completed,2026-06-20T20:40:00Z,u_0692_s01,ins_u_0692_002,{},v2.3.0-fixed +evt_003107,u_0598,onboarding_step_viewed,2026-06-20T20:41:00Z,u_0598_s01,ins_u_0598_004,{},v2.3.0-fixed +evt_003108,u_0162,profile_saved,2026-06-20T20:43:00Z,u_0162_s01,ins_u_0162_003,{},v2.3.0-fixed +evt_003109,u_0197,session_abandoned,2026-06-20T20:44:00Z,u_0197_s01,ins_u_0197_003,{},v2.3.0-fixed +evt_003110,u_0162,onboarding_step_viewed,2026-06-20T20:46:00Z,u_0162_s01,ins_u_0162_004,{},v2.3.0-fixed +evt_003111,u_0692,session_abandoned,2026-06-20T20:49:00Z,u_0692_s01,ins_u_0692_003,{},v2.3.0-fixed +evt_003112,u_0176,activation_completed,2026-06-20T20:51:00Z,u_0176_s01,ins_u_0176_005,{},v2.3.0-fixed +evt_003113,u_0323,onboarding_completed,2026-06-20T20:52:00Z,u_0323_s01,ins_u_0323_006,"{""completed_at"": ""2026-06-20T21:04:00Z""}",v2.3.0-fixed +evt_003114,u_0784,signup_started,2026-06-20T20:53:00Z,u_0784_s01,ins_u_0784_001,{},v2.3.0-fixed +evt_003115,u_0546,activation_completed,2026-06-20T21:00:00Z,u_0546_s01,ins_u_0546_007,{},v2.3.0-fixed +evt_003116,u_0784,signup_completed,2026-06-20T21:00:00Z,u_0784_s01,ins_u_0784_002,{},v2.3.0-fixed +evt_003117,u_0691,activation_completed,2026-06-20T21:05:00Z,u_0691_s01,ins_u_0691_005,{},v2.3.0-fixed +evt_003118,u_0784,profile_saved,2026-06-20T21:08:00Z,u_0784_s01,ins_u_0784_003,{},v2.3.0-fixed +evt_003119,u_0784,onboarding_step_viewed,2026-06-20T21:13:00Z,u_0784_s01,ins_u_0784_004,{},v2.3.0-fixed +evt_003120,u_0162,onboarding_completed,2026-06-20T21:18:00Z,u_0162_s01,ins_u_0162_005,"{""completed_at"": ""2026-06-20T21:12:00Z""}",v2.3.0-fixed +evt_003121,u_0598,onboarding_completed,2026-06-20T21:21:00Z,u_0598_s01,ins_u_0598_005,"{""completed_at"": ""2026-06-20T21:09:00Z""}",v2.3.0-fixed +evt_003122,u_0222,return_visit,2026-06-20T21:23:00Z,u_0222_s02,ins_u_0222_007,{},v2.3.0-fixed +evt_003123,u_0784,onboarding_completed,2026-06-20T21:50:00Z,u_0784_s01,ins_u_0784_005,"{""completed_at"": ""2026-06-20T21:43:00Z""}",v2.3.0-fixed +evt_003124,u_0598,activation_completed,2026-06-20T21:52:00Z,u_0598_s01,ins_u_0598_006,{},v2.3.0-fixed +evt_003125,u_0784,activation_completed,2026-06-20T21:57:00Z,u_0784_s01,ins_u_0784_006,{},v2.3.0-fixed +evt_003126,u_0268,return_visit,2026-06-20T22:10:00Z,u_0268_s02,ins_u_0268_008,{},v2.3.0-fixed +evt_003127,u_0268,feature_used,2026-06-20T22:15:00Z,u_0268_s02,ins_u_0268_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003128,u_0614,return_visit,2026-06-20T22:20:00Z,u_0614_s02,ins_u_0614_005,{},v2.3.0-fixed +evt_003129,u_0614,feature_used,2026-06-20T22:25:00Z,u_0614_s02,ins_u_0614_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003130,u_0710,return_visit,2026-06-20T22:35:00Z,u_0710_s02,ins_u_0710_007,{},v2.3.0-fixed +evt_003131,u_0714,return_visit,2026-06-20T22:43:00Z,u_0714_s02,ins_u_0714_007,{},v2.3.0-fixed +evt_003132,u_0087,return_visit,2026-06-20T22:47:00Z,u_0087_s02,ins_u_0087_007,{},v2.3.0-fixed +evt_003133,u_0714,feature_used,2026-06-20T22:48:00Z,u_0714_s02,ins_u_0714_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003134,u_0087,feature_used,2026-06-20T22:52:00Z,u_0087_s02,ins_u_0087_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003135,u_0499,return_visit,2026-06-20T23:56:00Z,u_0499_s02,ins_u_0499_007,{},v2.3.0-fixed +evt_003136,u_0210,return_visit,2026-06-21T01:52:00Z,u_0210_s02,ins_u_0210_008,{},v2.3.0-fixed +evt_003137,u_0210,feature_used,2026-06-21T01:57:00Z,u_0210_s02,ins_u_0210_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003138,u_0551,return_visit,2026-06-21T03:27:00Z,u_0551_s02,ins_u_0551_005,{},v2.3.0-fixed +evt_003139,u_0674,return_visit,2026-06-21T04:21:00Z,u_0674_s02,ins_u_0674_008,{},v2.3.0-fixed +evt_003140,u_0246,return_visit,2026-06-21T04:49:00Z,u_0246_s02,ins_u_0246_007,{},v2.3.0-fixed +evt_003141,u_0246,feature_used,2026-06-21T04:54:00Z,u_0246_s02,ins_u_0246_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003142,u_0789,return_visit,2026-06-21T07:59:00Z,u_0789_s02,ins_u_0789_007,{},v2.3.0-fixed +evt_003143,u_0125,signup_started,2026-06-21T08:06:00Z,u_0125_s01,ins_u_0125_001,{},v2.3.0-fixed +evt_003144,u_0125,signup_completed,2026-06-21T08:10:00Z,u_0125_s01,ins_u_0125_002,{},v2.3.0-fixed +evt_003145,u_0125,profile_saved,2026-06-21T08:17:00Z,u_0125_s01,ins_u_0125_003,{},v2.3.0-fixed +evt_003146,u_0706,signup_started,2026-06-21T08:19:00Z,u_0706_s01,ins_u_0706_001,{},v2.3.0-fixed +evt_003147,u_0706,session_abandoned,2026-06-21T08:20:00Z,u_0706_s01,ins_u_0706_002,{},v2.3.0-fixed +evt_003148,u_0125,onboarding_step_viewed,2026-06-21T08:23:00Z,u_0125_s01,ins_u_0125_004,{},v2.3.0-fixed +evt_003149,u_0158,signup_started,2026-06-21T08:33:00Z,u_0158_s01,ins_u_0158_001,{},v2.3.0-fixed +evt_003150,u_0250,signup_started,2026-06-21T08:39:00Z,u_0250_s01,ins_u_0250_001,{},v2.3.0-fixed +evt_003151,u_0158,session_abandoned,2026-06-21T08:40:00Z,u_0158_s01,ins_u_0158_002,{},v2.3.0-fixed +evt_003152,u_0250,signup_completed,2026-06-21T08:44:00Z,u_0250_s01,ins_u_0250_002,{},v2.3.0-fixed +evt_003153,u_0473,return_visit,2026-06-21T08:44:00Z,u_0473_s02,ins_u_0473_008,{},v2.3.0-fixed +evt_003154,u_0125,onboarding_completed,2026-06-21T08:45:00Z,u_0125_s01,ins_u_0125_005,"{""completed_at"": ""2026-06-21T08:48:00Z""}",v2.3.0-fixed +evt_003155,u_0063,signup_started,2026-06-21T08:48:00Z,u_0063_s01,ins_u_0063_001,{},v2.3.0-fixed +evt_003156,u_0250,profile_saved,2026-06-21T08:49:00Z,u_0250_s01,ins_u_0250_003,{},v2.3.0-fixed +evt_003157,u_0063,signup_completed,2026-06-21T08:51:00Z,u_0063_s01,ins_u_0063_002,{},v2.3.0-fixed +evt_003158,u_0250,onboarding_step_viewed,2026-06-21T08:52:00Z,u_0250_s01,ins_u_0250_004,{},v2.3.0-fixed +evt_003159,u_0621,return_visit,2026-06-21T08:54:00Z,u_0621_s02,ins_u_0621_005,{},v2.3.0-fixed +evt_003160,u_0063,profile_saved,2026-06-21T08:55:00Z,u_0063_s01,ins_u_0063_003,{},v2.3.0-fixed +evt_003161,u_0063,error_shown,2026-06-21T08:56:00Z,u_0063_s01,ins_u_0063_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003162,u_0653,signup_started,2026-06-21T08:56:00Z,u_0653_s01,ins_u_0653_001,{},v2.3.0-fixed +evt_003163,u_0063,onboarding_step_viewed,2026-06-21T08:57:00Z,u_0063_s01,ins_u_0063_005,{},v2.3.0-fixed +evt_003164,u_0688,signup_started,2026-06-21T09:01:00Z,u_0688_s01,ins_u_0688_001,{},v2.3.0-fixed +evt_003165,u_0653,signup_completed,2026-06-21T09:03:00Z,u_0653_s01,ins_u_0653_002,{},v2.3.0-fixed +evt_003166,u_0527,signup_started,2026-06-21T09:04:00Z,u_0527_s01,ins_u_0527_001,{},v2.3.0-fixed +evt_003167,u_0063,feature_used,2026-06-21T09:08:00Z,u_0063_s01,ins_u_0063_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003168,u_0688,signup_completed,2026-06-21T09:08:00Z,u_0688_s01,ins_u_0688_002,{},v2.3.0-fixed +evt_003169,u_0186,signup_started,2026-06-21T09:11:00Z,u_0186_s01,ins_u_0186_001,{},v2.3.0-fixed +evt_003170,u_0653,profile_saved,2026-06-21T09:11:00Z,u_0653_s01,ins_u_0653_003,{},v2.3.0-fixed +evt_003171,u_0186,signup_completed,2026-06-21T09:12:00Z,u_0186_s01,ins_u_0186_002,{},v2.3.0-fixed +evt_003172,u_0527,session_abandoned,2026-06-21T09:12:00Z,u_0527_s01,ins_u_0527_002,{},v2.3.0-fixed +evt_003173,u_0653,onboarding_step_viewed,2026-06-21T09:14:00Z,u_0653_s01,ins_u_0653_004,{},v2.3.0-fixed +evt_003174,u_0125,activation_completed,2026-06-21T09:15:00Z,u_0125_s01,ins_u_0125_006,{},v2.3.0-fixed +evt_003175,u_0250,onboarding_completed,2026-06-21T09:17:00Z,u_0250_s01,ins_u_0250_005,"{""completed_at"": ""2026-06-21T09:26:00Z""}",v2.3.0-fixed +evt_003176,u_0688,profile_saved,2026-06-21T09:17:00Z,u_0688_s01,ins_u_0688_003,{},v2.3.0-fixed +evt_003177,u_0266,signup_started,2026-06-21T09:20:00Z,u_0266_s01,ins_u_0266_001,{},v2.3.0-fixed +evt_003178,u_0186,profile_saved,2026-06-21T09:21:00Z,u_0186_s01,ins_u_0186_003,{},v2.3.0-fixed +evt_003179,u_0266,signup_completed,2026-06-21T09:22:00Z,u_0266_s01,ins_u_0266_002,{},v2.3.0-fixed +evt_003180,u_0688,onboarding_step_viewed,2026-06-21T09:23:00Z,u_0688_s01,ins_u_0688_004,{},v2.3.0-fixed +evt_003181,u_0063,onboarding_completed,2026-06-21T09:24:00Z,u_0063_s01,ins_u_0063_007,"{""completed_at"": ""2026-06-21T09:31:00Z""}",v2.3.0-fixed +evt_003182,u_0186,onboarding_step_viewed,2026-06-21T09:24:00Z,u_0186_s01,ins_u_0186_004,{},v2.3.0-fixed +evt_003183,u_0306,signup_started,2026-06-21T09:28:00Z,u_0306_s01,ins_u_0306_001,{},v2.3.0-fixed +evt_003184,u_0266,session_abandoned,2026-06-21T09:31:00Z,u_0266_s01,ins_u_0266_003,{},v2.3.0-fixed +evt_003185,u_0306,signup_completed,2026-06-21T09:32:00Z,u_0306_s01,ins_u_0306_002,{},v2.3.0-fixed +evt_003186,u_0653,feature_used,2026-06-21T09:32:00Z,u_0653_s01,ins_u_0653_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003187,u_0794,signup_started,2026-06-21T09:32:00Z,u_0794_s01,ins_u_0794_001,{},v2.3.0-fixed +evt_003188,u_0794,signup_completed,2026-06-21T09:36:00Z,u_0794_s01,ins_u_0794_002,{},v2.3.0-fixed +evt_003189,u_0688,feature_used,2026-06-21T09:37:00Z,u_0688_s01,ins_u_0688_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003190,u_0794,profile_saved,2026-06-21T09:39:00Z,u_0794_s01,ins_u_0794_003,{},v2.3.0-fixed +evt_003191,u_0306,profile_saved,2026-06-21T09:41:00Z,u_0306_s01,ins_u_0306_003,{},v2.3.0-fixed +evt_003192,u_0715,signup_started,2026-06-21T09:41:00Z,u_0715_s01,ins_u_0715_001,{},v2.3.0-fixed +evt_003193,u_0306,onboarding_step_viewed,2026-06-21T09:46:00Z,u_0306_s01,ins_u_0306_004,{},v2.3.0-fixed +evt_003194,u_0794,feature_used,2026-06-21T09:46:00Z,u_0794_s01,ins_u_0794_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_003195,u_0715,signup_completed,2026-06-21T09:49:00Z,u_0715_s01,ins_u_0715_002,{},v2.3.0-fixed +evt_003196,u_0306,feature_used,2026-06-21T09:57:00Z,u_0306_s01,ins_u_0306_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003197,u_0324,signup_started,2026-06-21T09:57:00Z,u_0324_s01,ins_u_0324_001,{},v2.3.0-fixed +evt_003198,u_0601,signup_started,2026-06-21T09:57:00Z,u_0601_s01,ins_u_0601_001,{},v2.3.0-fixed +evt_003199,u_0715,session_abandoned,2026-06-21T09:58:00Z,u_0715_s01,ins_u_0715_003,{},v2.3.0-fixed +evt_003200,u_0186,onboarding_completed,2026-06-21T09:59:00Z,u_0186_s01,ins_u_0186_005,"{""completed_at"": ""2026-06-21T10:01:00Z""}",v2.3.0-fixed +evt_003201,u_0309,signup_started,2026-06-21T09:59:00Z,u_0309_s01,ins_u_0309_001,{},v2.3.0-fixed +evt_003202,u_0324,signup_completed,2026-06-21T10:01:00Z,u_0324_s01,ins_u_0324_002,{},v2.3.0-fixed +evt_003203,u_0601,signup_completed,2026-06-21T10:01:00Z,u_0601_s01,ins_u_0601_002,{},v2.3.0-fixed +evt_003204,u_0063,activation_completed,2026-06-21T10:03:00Z,u_0063_s01,ins_u_0063_008,{},v2.3.0-fixed +evt_003205,u_0309,session_abandoned,2026-06-21T10:03:00Z,u_0309_s01,ins_u_0309_002,{},v2.3.0-fixed +evt_003206,u_0419,signup_started,2026-06-21T10:07:00Z,u_0419_s01,ins_u_0419_001,{},v2.3.0-fixed +evt_003207,u_0324,profile_saved,2026-06-21T10:09:00Z,u_0324_s01,ins_u_0324_003,{},v2.3.0-fixed +evt_003208,u_0324,onboarding_step_viewed,2026-06-21T10:11:00Z,u_0324_s01,ins_u_0324_004,{},v2.3.0-fixed +evt_003209,u_0601,profile_saved,2026-06-21T10:11:00Z,u_0601_s01,ins_u_0601_003,{},v2.3.0-fixed +evt_003210,u_0419,signup_completed,2026-06-21T10:13:00Z,u_0419_s01,ins_u_0419_002,{},v2.3.0-fixed +evt_003211,u_0074,signup_started,2026-06-21T10:15:00Z,u_0074_s01,ins_u_0074_001,{},v2.3.0-fixed +evt_003212,u_0306,onboarding_completed,2026-06-21T10:15:00Z,u_0306_s01,ins_u_0306_006,"{""completed_at"": ""2026-06-21T10:16:00Z""}",v2.3.0-fixed +evt_003213,u_0419,profile_saved,2026-06-21T10:16:00Z,u_0419_s01,ins_u_0419_003,{},v2.3.0-fixed +evt_003214,u_0601,onboarding_step_viewed,2026-06-21T10:16:00Z,u_0601_s01,ins_u_0601_004,{},v2.3.0-fixed +evt_003215,u_0074,signup_completed,2026-06-21T10:20:00Z,u_0074_s01,ins_u_0074_002,{},v2.3.0-fixed +evt_003216,u_0419,onboarding_step_viewed,2026-06-21T10:22:00Z,u_0419_s01,ins_u_0419_004,{},v2.3.0-fixed +evt_003217,u_0074,session_abandoned,2026-06-21T10:27:00Z,u_0074_s01,ins_u_0074_003,{},v2.3.0-fixed +evt_003218,u_0269,signup_started,2026-06-21T10:27:00Z,u_0269_s01,ins_u_0269_001,{},v2.3.0-fixed +evt_003219,u_0186,activation_completed,2026-06-21T10:29:00Z,u_0186_s01,ins_u_0186_006,{},v2.3.0-fixed +evt_003220,u_0578,signup_started,2026-06-21T10:31:00Z,u_0578_s01,ins_u_0578_001,{},v2.3.0-fixed +evt_003221,u_0269,signup_completed,2026-06-21T10:34:00Z,u_0269_s01,ins_u_0269_002,{},v2.3.0-fixed +evt_003222,u_0140,signup_started,2026-06-21T10:36:00Z,u_0140_s01,ins_u_0140_001,{},v2.3.0-fixed +evt_003223,u_0578,signup_completed,2026-06-21T10:39:00Z,u_0578_s01,ins_u_0578_002,{},v2.3.0-fixed +evt_003224,u_0140,signup_completed,2026-06-21T10:41:00Z,u_0140_s01,ins_u_0140_002,{},v2.3.0-fixed +evt_003225,u_0269,session_abandoned,2026-06-21T10:43:00Z,u_0269_s01,ins_u_0269_003,{},v2.3.0-fixed +evt_003226,u_0278,signup_started,2026-06-21T10:43:00Z,u_0278_s01,ins_u_0278_001,{},v2.3.0-fixed +evt_003227,u_0140,profile_saved,2026-06-21T10:44:00Z,u_0140_s01,ins_u_0140_003,{},v2.3.0-fixed +evt_003228,u_0278,signup_completed,2026-06-21T10:45:00Z,u_0278_s01,ins_u_0278_002,{},v2.3.0-fixed +evt_003229,u_0306,activation_completed,2026-06-21T10:45:00Z,u_0306_s01,ins_u_0306_007,{},v2.3.0-fixed +evt_003230,u_0578,profile_saved,2026-06-21T10:45:00Z,u_0578_s01,ins_u_0578_003,{},v2.3.0-fixed +evt_003231,u_0578,error_shown,2026-06-21T10:46:00Z,u_0578_s01,ins_u_0578_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003232,u_0601,onboarding_completed,2026-06-21T10:46:00Z,u_0601_s01,ins_u_0601_005,"{""completed_at"": ""2026-06-21T10:45:00Z""}",v2.3.0-fixed +evt_003233,u_0278,profile_saved,2026-06-21T10:48:00Z,u_0278_s01,ins_u_0278_003,{},v2.3.0-fixed +evt_003234,u_0506,signup_started,2026-06-21T10:48:00Z,u_0506_s01,ins_u_0506_001,{},v2.3.0-fixed +evt_003235,u_0140,onboarding_step_viewed,2026-06-21T10:49:00Z,u_0140_s01,ins_u_0140_004,{},v2.3.0-fixed +evt_003236,u_0278,error_shown,2026-06-21T10:49:00Z,u_0278_s01,ins_u_0278_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003237,u_0578,onboarding_step_viewed,2026-06-21T10:50:00Z,u_0578_s01,ins_u_0578_005,{},v2.3.0-fixed +evt_003238,u_0662,signup_started,2026-06-21T10:50:00Z,u_0662_s01,ins_u_0662_001,{},v2.3.0-fixed +evt_003239,u_0578,feature_used,2026-06-21T10:52:00Z,u_0578_s01,ins_u_0578_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_003240,u_0324,onboarding_completed,2026-06-21T10:53:00Z,u_0324_s01,ins_u_0324_005,"{""completed_at"": ""2026-06-21T10:43:00Z""}",v2.3.0-fixed +evt_003241,u_0340,signup_started,2026-06-21T10:53:00Z,u_0340_s01,ins_u_0340_001,{},v2.3.0-fixed +evt_003242,u_0542,signup_started,2026-06-21T10:53:00Z,u_0542_s01,ins_u_0542_001,{},v2.3.0-fixed +evt_003243,u_0278,onboarding_step_viewed,2026-06-21T10:54:00Z,u_0278_s01,ins_u_0278_005,{},v2.3.0-fixed +evt_003244,u_0340,signup_completed,2026-06-21T10:54:00Z,u_0340_s01,ins_u_0340_002,{},v2.3.0-fixed +evt_003245,u_0506,signup_completed,2026-06-21T10:54:00Z,u_0506_s01,ins_u_0506_002,{},v2.3.0-fixed +evt_003246,u_0140,feature_used,2026-06-21T10:55:00Z,u_0140_s01,ins_u_0140_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003247,u_0419,onboarding_completed,2026-06-21T10:56:00Z,u_0419_s01,ins_u_0419_005,"{""completed_at"": ""2026-06-21T10:51:00Z""}",v2.3.0-fixed +evt_003248,u_0340,profile_saved,2026-06-21T10:58:00Z,u_0340_s01,ins_u_0340_003,{},v2.3.0-fixed +evt_003249,u_0662,signup_completed,2026-06-21T10:58:00Z,u_0662_s01,ins_u_0662_002,{},v2.3.0-fixed +evt_003250,u_0506,profile_saved,2026-06-21T10:59:00Z,u_0506_s01,ins_u_0506_003,{},v2.3.0-fixed +evt_003251,u_0542,signup_completed,2026-06-21T11:01:00Z,u_0542_s01,ins_u_0542_002,{},v2.3.0-fixed +evt_003252,u_0081,signup_started,2026-06-21T11:02:00Z,u_0081_s01,ins_u_0081_001,{},v2.3.0-fixed +evt_003253,u_0340,onboarding_step_viewed,2026-06-21T11:02:00Z,u_0340_s01,ins_u_0340_004,{},v2.3.0-fixed +evt_003254,u_0662,session_abandoned,2026-06-21T11:02:00Z,u_0662_s01,ins_u_0662_003,{},v2.3.0-fixed +evt_003255,u_0278,feature_used,2026-06-21T11:05:00Z,u_0278_s01,ins_u_0278_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_003256,u_0406,signup_started,2026-06-21T11:07:00Z,u_0406_s01,ins_u_0406_001,{},v2.3.0-fixed +evt_003257,u_0542,profile_saved,2026-06-21T11:07:00Z,u_0542_s01,ins_u_0542_003,{},v2.3.0-fixed +evt_003258,u_0081,signup_completed,2026-06-21T11:08:00Z,u_0081_s01,ins_u_0081_002,{},v2.3.0-fixed +evt_003259,u_0329,signup_started,2026-06-21T11:08:00Z,u_0329_s01,ins_u_0329_001,{},v2.3.0-fixed +evt_003260,u_0542,onboarding_step_viewed,2026-06-21T11:09:00Z,u_0542_s01,ins_u_0542_004,{},v2.3.0-fixed +evt_003261,u_0140,onboarding_completed,2026-06-21T11:10:00Z,u_0140_s01,ins_u_0140_006,"{""completed_at"": ""2026-06-21T11:12:00Z""}",v2.3.0-fixed +evt_003262,u_0329,signup_completed,2026-06-21T11:11:00Z,u_0329_s01,ins_u_0329_002,{},v2.3.0-fixed +evt_003263,u_0406,signup_completed,2026-06-21T11:11:00Z,u_0406_s01,ins_u_0406_002,{},v2.3.0-fixed +evt_003264,u_0506,feature_used,2026-06-21T11:11:00Z,u_0506_s01,ins_u_0506_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_003265,u_0081,profile_saved,2026-06-21T11:17:00Z,u_0081_s01,ins_u_0081_003,{},v2.3.0-fixed +evt_003266,u_0406,profile_saved,2026-06-21T11:17:00Z,u_0406_s01,ins_u_0406_003,{},v2.3.0-fixed +evt_003267,u_0054,signup_started,2026-06-21T11:19:00Z,u_0054_s01,ins_u_0054_001,{},v2.3.0-fixed +evt_003268,u_0329,profile_saved,2026-06-21T11:20:00Z,u_0329_s01,ins_u_0329_003,{},v2.3.0-fixed +evt_003269,u_0542,feature_used,2026-06-21T11:21:00Z,u_0542_s01,ins_u_0542_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003270,u_0054,session_abandoned,2026-06-21T11:22:00Z,u_0054_s01,ins_u_0054_002,{},v2.3.0-fixed +evt_003271,u_0329,onboarding_step_viewed,2026-06-21T11:23:00Z,u_0329_s01,ins_u_0329_004,{},v2.3.0-fixed +evt_003272,u_0278,onboarding_completed,2026-06-21T11:26:00Z,u_0278_s01,ins_u_0278_007,"{""completed_at"": ""2026-06-21T11:21:00Z""}",v2.3.0-fixed +evt_003273,u_0329,feature_used,2026-06-21T11:27:00Z,u_0329_s01,ins_u_0329_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003274,u_0340,onboarding_completed,2026-06-21T11:27:00Z,u_0340_s01,ins_u_0340_005,"{""completed_at"": ""2026-06-21T11:34:00Z""}",v2.3.0-fixed +evt_003275,u_0406,feature_used,2026-06-21T11:29:00Z,u_0406_s01,ins_u_0406_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_003276,u_0506,onboarding_completed,2026-06-21T11:29:00Z,u_0506_s01,ins_u_0506_005,"{""completed_at"": ""2026-06-21T11:37:00Z""}",v2.3.0-fixed +evt_003277,u_0419,activation_completed,2026-06-21T11:31:00Z,u_0419_s01,ins_u_0419_006,{},v2.3.0-fixed +evt_003278,u_0081,feature_used,2026-06-21T11:35:00Z,u_0081_s01,ins_u_0081_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003279,u_0403,signup_started,2026-06-21T11:37:00Z,u_0403_s01,ins_u_0403_001,{},v2.3.0-fixed +evt_003280,u_0542,onboarding_completed,2026-06-21T11:39:00Z,u_0542_s01,ins_u_0542_006,"{""completed_at"": ""2026-06-21T11:39:00Z""}",v2.3.0-fixed +evt_003281,u_0403,signup_completed,2026-06-21T11:41:00Z,u_0403_s01,ins_u_0403_002,{},v2.3.0-fixed +evt_003282,u_0667,signup_started,2026-06-21T11:42:00Z,u_0667_s01,ins_u_0667_001,{},v2.3.0-fixed +evt_003283,u_0403,profile_saved,2026-06-21T11:43:00Z,u_0403_s01,ins_u_0403_003,{},v2.3.0-fixed +evt_003284,u_0316,signup_started,2026-06-21T11:44:00Z,u_0316_s01,ins_u_0316_001,{},v2.3.0-fixed +evt_003285,u_0140,activation_completed,2026-06-21T11:46:00Z,u_0140_s01,ins_u_0140_007,{},v2.3.0-fixed +evt_003286,u_0403,onboarding_step_viewed,2026-06-21T11:46:00Z,u_0403_s01,ins_u_0403_004,{},v2.3.0-fixed +evt_003287,u_0667,signup_completed,2026-06-21T11:50:00Z,u_0667_s01,ins_u_0667_002,{},v2.3.0-fixed +evt_003288,u_0316,signup_completed,2026-06-21T11:52:00Z,u_0316_s01,ins_u_0316_002,{},v2.3.0-fixed +evt_003289,u_0578,activation_completed,2026-06-21T11:52:00Z,u_0578_s01,ins_u_0578_007,{},v2.3.0-fixed +evt_003290,u_0316,session_abandoned,2026-06-21T11:59:00Z,u_0316_s01,ins_u_0316_003,{},v2.3.0-fixed +evt_003291,u_0667,session_abandoned,2026-06-21T11:59:00Z,u_0667_s01,ins_u_0667_003,{},v2.3.0-fixed +evt_003292,u_0081,onboarding_completed,2026-06-21T12:00:00Z,u_0081_s01,ins_u_0081_005,"{""completed_at"": ""2026-06-21T11:56:00Z""}",v2.3.0-fixed +evt_003293,u_0329,onboarding_completed,2026-06-21T12:02:00Z,u_0329_s01,ins_u_0329_006,"{""completed_at"": ""2026-06-21T11:55:00Z""}",v2.3.0-fixed +evt_003294,u_0437,signup_started,2026-06-21T12:06:00Z,u_0437_s01,ins_u_0437_001,{},v2.3.0-fixed +evt_003295,u_0515,signup_started,2026-06-21T12:08:00Z,u_0515_s01,ins_u_0515_001,{},v2.3.0-fixed +evt_003296,u_0406,activation_completed,2026-06-21T12:09:00Z,u_0406_s01,ins_u_0406_005,{},v2.3.0-fixed +evt_003297,u_0437,signup_completed,2026-06-21T12:13:00Z,u_0437_s01,ins_u_0437_002,{},v2.3.0-fixed +evt_003298,u_0515,signup_completed,2026-06-21T12:16:00Z,u_0515_s01,ins_u_0515_002,{},v2.3.0-fixed +evt_003299,u_0542,activation_completed,2026-06-21T12:16:00Z,u_0542_s01,ins_u_0542_007,{},v2.3.0-fixed +evt_003300,u_0382,signup_started,2026-06-21T12:17:00Z,u_0382_s01,ins_u_0382_001,{},v2.3.0-fixed +evt_003301,u_0515,profile_saved,2026-06-21T12:18:00Z,u_0515_s01,ins_u_0515_003,{},v2.3.0-fixed +evt_003302,u_0673,signup_started,2026-06-21T12:19:00Z,u_0673_s01,ins_u_0673_001,{},v2.3.0-fixed +evt_003303,u_0354,signup_started,2026-06-21T12:20:00Z,u_0354_s01,ins_u_0354_001,{},v2.3.0-fixed +evt_003304,u_0403,onboarding_completed,2026-06-21T12:20:00Z,u_0403_s01,ins_u_0403_005,"{""completed_at"": ""2026-06-21T12:10:00Z""}",v2.3.0-fixed +evt_003305,u_0382,signup_completed,2026-06-21T12:21:00Z,u_0382_s01,ins_u_0382_002,{},v2.3.0-fixed +evt_003306,u_0437,session_abandoned,2026-06-21T12:21:00Z,u_0437_s01,ins_u_0437_003,{},v2.3.0-fixed +evt_003307,u_0515,onboarding_step_viewed,2026-06-21T12:21:00Z,u_0515_s01,ins_u_0515_004,{},v2.3.0-fixed +evt_003308,u_0673,signup_completed,2026-06-21T12:22:00Z,u_0673_s01,ins_u_0673_002,{},v2.3.0-fixed +evt_003309,u_0156,signup_started,2026-06-21T12:23:00Z,u_0156_s01,ins_u_0156_001,{},v2.3.0-fixed +evt_003310,u_0396,signup_started,2026-06-21T12:23:00Z,u_0396_s01,ins_u_0396_001,{},v2.3.0-fixed +evt_003311,u_0156,signup_completed,2026-06-21T12:24:00Z,u_0156_s01,ins_u_0156_002,{},v2.3.0-fixed +evt_003312,u_0363,return_visit,2026-06-21T12:24:00Z,u_0363_s02,ins_u_0363_008,{},v2.3.0-fixed +evt_003313,u_0325,signup_started,2026-06-21T12:25:00Z,u_0325_s01,ins_u_0325_001,{},v2.3.0-fixed +evt_003314,u_0396,signup_completed,2026-06-21T12:25:00Z,u_0396_s01,ins_u_0396_002,{},v2.3.0-fixed +evt_003315,u_0605,signup_started,2026-06-21T12:25:00Z,u_0605_s01,ins_u_0605_001,{},v2.3.0-fixed +evt_003316,u_0156,profile_saved,2026-06-21T12:26:00Z,u_0156_s01,ins_u_0156_003,{},v2.3.0-fixed +evt_003317,u_0354,signup_completed,2026-06-21T12:28:00Z,u_0354_s01,ins_u_0354_002,{},v2.3.0-fixed +evt_003318,u_0363,feature_used,2026-06-21T12:29:00Z,u_0363_s02,ins_u_0363_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003319,u_0382,profile_saved,2026-06-21T12:29:00Z,u_0382_s01,ins_u_0382_003,{},v2.3.0-fixed +evt_003320,u_0605,signup_completed,2026-06-21T12:29:00Z,u_0605_s01,ins_u_0605_002,{},v2.3.0-fixed +evt_003321,u_0354,profile_saved,2026-06-21T12:30:00Z,u_0354_s01,ins_u_0354_003,{},v2.3.0-fixed +evt_003322,u_0673,session_abandoned,2026-06-21T12:30:00Z,u_0673_s01,ins_u_0673_003,{},v2.3.0-fixed +evt_003323,u_0156,onboarding_step_viewed,2026-06-21T12:31:00Z,u_0156_s01,ins_u_0156_004,{},v2.3.0-fixed +evt_003324,u_0325,session_abandoned,2026-06-21T12:32:00Z,u_0325_s01,ins_u_0325_002,{},v2.3.0-fixed +evt_003325,u_0354,onboarding_step_viewed,2026-06-21T12:32:00Z,u_0354_s01,ins_u_0354_004,{},v2.3.0-fixed +evt_003326,u_0382,onboarding_step_viewed,2026-06-21T12:33:00Z,u_0382_s01,ins_u_0382_004,{},v2.3.0-fixed +evt_003327,u_0396,session_abandoned,2026-06-21T12:33:00Z,u_0396_s01,ins_u_0396_003,{},v2.3.0-fixed +evt_003328,u_0417,signup_started,2026-06-21T12:34:00Z,u_0417_s01,ins_u_0417_001,{},v2.3.0-fixed +evt_003329,u_0417,signup_completed,2026-06-21T12:37:00Z,u_0417_s01,ins_u_0417_002,{},v2.3.0-fixed +evt_003330,u_0605,session_abandoned,2026-06-21T12:37:00Z,u_0605_s01,ins_u_0605_003,{},v2.3.0-fixed +evt_003331,u_0007,signup_started,2026-06-21T12:38:00Z,u_0007_s01,ins_u_0007_001,{},v2.3.0-fixed +evt_003332,u_0417,profile_saved,2026-06-21T12:41:00Z,u_0417_s01,ins_u_0417_003,{},v2.3.0-fixed +evt_003333,u_0515,feature_used,2026-06-21T12:42:00Z,u_0515_s01,ins_u_0515_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003334,u_0417,onboarding_step_viewed,2026-06-21T12:44:00Z,u_0417_s01,ins_u_0417_004,{},v2.3.0-fixed +evt_003335,u_0007,session_abandoned,2026-06-21T12:46:00Z,u_0007_s01,ins_u_0007_002,{},v2.3.0-fixed +evt_003336,u_0417,feature_used,2026-06-21T12:48:00Z,u_0417_s01,ins_u_0417_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003337,u_0515,onboarding_completed,2026-06-21T12:49:00Z,u_0515_s01,ins_u_0515_006,"{""completed_at"": ""2026-06-21T12:48:00Z""}",v2.3.0-fixed +evt_003338,u_0156,feature_used,2026-06-21T12:50:00Z,u_0156_s01,ins_u_0156_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003339,u_0382,onboarding_completed,2026-06-21T12:58:00Z,u_0382_s01,ins_u_0382_005,"{""completed_at"": ""2026-06-21T13:02:00Z""}",v2.3.0-fixed +evt_003340,u_0156,onboarding_completed,2026-06-21T13:06:00Z,u_0156_s01,ins_u_0156_006,"{""completed_at"": ""2026-06-21T13:04:00Z""}",v2.3.0-fixed +evt_003341,u_0354,onboarding_completed,2026-06-21T13:14:00Z,u_0354_s01,ins_u_0354_005,"{""completed_at"": ""2026-06-21T13:04:00Z""}",v2.3.0-fixed +evt_003342,u_0790,signup_started,2026-06-21T13:16:00Z,u_0790_s01,ins_u_0790_001,{},v2.3.0-fixed +evt_003343,u_0426,signup_started,2026-06-21T13:19:00Z,u_0426_s01,ins_u_0426_001,{},v2.3.0-fixed +evt_003344,u_0790,session_abandoned,2026-06-21T13:22:00Z,u_0790_s01,ins_u_0790_002,{},v2.3.0-fixed +evt_003345,u_0354,activation_completed,2026-06-21T13:23:00Z,u_0354_s01,ins_u_0354_006,{},v2.3.0-fixed +evt_003346,u_0417,onboarding_completed,2026-06-21T13:24:00Z,u_0417_s01,ins_u_0417_006,"{""completed_at"": ""2026-06-21T13:13:00Z""}",v2.3.0-fixed +evt_003347,u_0426,signup_completed,2026-06-21T13:25:00Z,u_0426_s01,ins_u_0426_002,{},v2.3.0-fixed +evt_003348,u_0762,signup_started,2026-06-21T13:25:00Z,u_0762_s01,ins_u_0762_001,{},v2.3.0-fixed +evt_003349,u_0116,signup_started,2026-06-21T13:28:00Z,u_0116_s01,ins_u_0116_001,{},v2.3.0-fixed +evt_003350,u_0426,profile_saved,2026-06-21T13:29:00Z,u_0426_s01,ins_u_0426_003,{},v2.3.0-fixed +evt_003351,u_0762,signup_completed,2026-06-21T13:30:00Z,u_0762_s01,ins_u_0762_002,{},v2.3.0-fixed +evt_003352,u_0747,signup_started,2026-06-21T13:33:00Z,u_0747_s01,ins_u_0747_001,{},v2.3.0-fixed +evt_003353,u_0382,activation_completed,2026-06-21T13:34:00Z,u_0382_s01,ins_u_0382_006,{},v2.3.0-fixed +evt_003354,u_0116,signup_completed,2026-06-21T13:35:00Z,u_0116_s01,ins_u_0116_002,{},v2.3.0-fixed +evt_003355,u_0747,signup_completed,2026-06-21T13:36:00Z,u_0747_s01,ins_u_0747_002,{},v2.3.0-fixed +evt_003356,u_0762,session_abandoned,2026-06-21T13:39:00Z,u_0762_s01,ins_u_0762_003,{},v2.3.0-fixed +evt_003357,u_0116,profile_saved,2026-06-21T13:43:00Z,u_0116_s01,ins_u_0116_003,{},v2.3.0-fixed +evt_003358,u_0116,error_shown,2026-06-21T13:44:00Z,u_0116_s01,ins_u_0116_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003359,u_0577,signup_started,2026-06-21T13:45:00Z,u_0577_s01,ins_u_0577_001,{},v2.3.0-fixed +evt_003360,u_0747,profile_saved,2026-06-21T13:45:00Z,u_0747_s01,ins_u_0747_003,{},v2.3.0-fixed +evt_003361,u_0116,onboarding_step_viewed,2026-06-21T13:46:00Z,u_0116_s01,ins_u_0116_005,{},v2.3.0-fixed +evt_003362,u_0254,signup_started,2026-06-21T13:46:00Z,u_0254_s01,ins_u_0254_001,{},v2.3.0-fixed +evt_003363,u_0747,onboarding_step_viewed,2026-06-21T13:49:00Z,u_0747_s01,ins_u_0747_004,{},v2.3.0-fixed +evt_003364,u_0577,signup_completed,2026-06-21T13:50:00Z,u_0577_s01,ins_u_0577_002,{},v2.3.0-fixed +evt_003365,u_0254,signup_completed,2026-06-21T13:53:00Z,u_0254_s01,ins_u_0254_002,{},v2.3.0-fixed +evt_003366,u_0577,profile_saved,2026-06-21T13:53:00Z,u_0577_s01,ins_u_0577_003,{},v2.3.0-fixed +evt_003367,u_0577,error_shown,2026-06-21T13:54:00Z,u_0577_s01,ins_u_0577_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003368,u_0577,onboarding_step_viewed,2026-06-21T13:56:00Z,u_0577_s01,ins_u_0577_005,{},v2.3.0-fixed +evt_003369,u_0426,onboarding_completed,2026-06-21T13:57:00Z,u_0426_s01,ins_u_0426_004,"{""completed_at"": ""2026-06-21T14:06:00Z""}",v2.3.0-fixed +evt_003370,u_0276,signup_started,2026-06-21T14:01:00Z,u_0276_s01,ins_u_0276_001,{},v2.3.0-fixed +evt_003371,u_0116,feature_used,2026-06-21T14:02:00Z,u_0116_s01,ins_u_0116_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_003372,u_0254,session_abandoned,2026-06-21T14:02:00Z,u_0254_s01,ins_u_0254_003,{},v2.3.0-fixed +evt_003373,u_0276,signup_completed,2026-06-21T14:05:00Z,u_0276_s01,ins_u_0276_002,{},v2.3.0-fixed +evt_003374,u_0577,feature_used,2026-06-21T14:05:00Z,u_0577_s01,ins_u_0577_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003375,u_0276,profile_saved,2026-06-21T14:07:00Z,u_0276_s01,ins_u_0276_003,{},v2.3.0-fixed +evt_003376,u_0116,onboarding_completed,2026-06-21T14:11:00Z,u_0116_s01,ins_u_0116_007,"{""completed_at"": ""2026-06-21T14:09:00Z""}",v2.3.0-fixed +evt_003377,u_0747,onboarding_completed,2026-06-21T14:15:00Z,u_0747_s01,ins_u_0747_005,"{""completed_at"": ""2026-06-21T14:23:00Z""}",v2.3.0-fixed +evt_003378,u_0444,signup_started,2026-06-21T14:23:00Z,u_0444_s01,ins_u_0444_001,{},v2.3.0-fixed +evt_003379,u_0040,signup_started,2026-06-21T14:24:00Z,u_0040_s01,ins_u_0040_001,{},v2.3.0-fixed +evt_003380,u_0101,signup_started,2026-06-21T14:25:00Z,u_0101_s01,ins_u_0101_001,{},v2.3.0-fixed +evt_003381,u_0101,signup_completed,2026-06-21T14:26:00Z,u_0101_s01,ins_u_0101_002,{},v2.3.0-fixed +evt_003382,u_0247,signup_started,2026-06-21T14:27:00Z,u_0247_s01,ins_u_0247_001,{},v2.3.0-fixed +evt_003383,u_0067,signup_started,2026-06-21T14:29:00Z,u_0067_s01,ins_u_0067_001,{},v2.3.0-fixed +evt_003384,u_0040,signup_completed,2026-06-21T14:30:00Z,u_0040_s01,ins_u_0040_002,{},v2.3.0-fixed +evt_003385,u_0577,onboarding_completed,2026-06-21T14:30:00Z,u_0577_s01,ins_u_0577_007,"{""completed_at"": ""2026-06-21T14:31:00Z""}",v2.3.0-fixed +evt_003386,u_0444,signup_completed,2026-06-21T14:31:00Z,u_0444_s01,ins_u_0444_002,{},v2.3.0-fixed +evt_003387,u_0444,profile_saved,2026-06-21T14:33:00Z,u_0444_s01,ins_u_0444_003,{},v2.3.0-fixed +evt_003388,u_0067,signup_completed,2026-06-21T14:34:00Z,u_0067_s01,ins_u_0067_002,{},v2.3.0-fixed +evt_003389,u_0101,profile_saved,2026-06-21T14:34:00Z,u_0101_s01,ins_u_0101_003,{},v2.3.0-fixed +evt_003390,u_0040,profile_saved,2026-06-21T14:35:00Z,u_0040_s01,ins_u_0040_003,{},v2.3.0-fixed +evt_003391,u_0247,signup_completed,2026-06-21T14:35:00Z,u_0247_s01,ins_u_0247_002,{},v2.3.0-fixed +evt_003392,u_0040,error_shown,2026-06-21T14:36:00Z,u_0040_s01,ins_u_0040_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003393,u_0101,onboarding_step_viewed,2026-06-21T14:36:00Z,u_0101_s01,ins_u_0101_004,{},v2.3.0-fixed +evt_003394,u_0426,activation_completed,2026-06-21T14:36:00Z,u_0426_s01,ins_u_0426_005,{},v2.3.0-fixed +evt_003395,u_0040,onboarding_step_viewed,2026-06-21T14:39:00Z,u_0040_s01,ins_u_0040_005,{},v2.3.0-fixed +evt_003396,u_0444,onboarding_step_viewed,2026-06-21T14:39:00Z,u_0444_s01,ins_u_0444_004,{},v2.3.0-fixed +evt_003397,u_0247,profile_saved,2026-06-21T14:41:00Z,u_0247_s01,ins_u_0247_003,{},v2.3.0-fixed +evt_003398,u_0791,signup_started,2026-06-21T14:42:00Z,u_0791_s01,ins_u_0791_001,{},v2.3.0-fixed +evt_003399,u_0272,signup_started,2026-06-21T14:43:00Z,u_0272_s01,ins_u_0272_001,{},v2.3.0-fixed +evt_003400,u_0067,profile_saved,2026-06-21T14:44:00Z,u_0067_s01,ins_u_0067_003,{},v2.3.0-fixed +evt_003401,u_0247,onboarding_step_viewed,2026-06-21T14:44:00Z,u_0247_s01,ins_u_0247_004,{},v2.3.0-fixed +evt_003402,u_0739,signup_started,2026-06-21T14:45:00Z,u_0739_s01,ins_u_0739_001,{},v2.3.0-fixed +evt_003403,u_0067,onboarding_step_viewed,2026-06-21T14:46:00Z,u_0067_s01,ins_u_0067_004,{},v2.3.0-fixed +evt_003404,u_0272,signup_completed,2026-06-21T14:46:00Z,u_0272_s01,ins_u_0272_002,{},v2.3.0-fixed +evt_003405,u_0444,feature_used,2026-06-21T14:46:00Z,u_0444_s01,ins_u_0444_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003406,u_0739,signup_completed,2026-06-21T14:47:00Z,u_0739_s01,ins_u_0739_002,{},v2.3.0-fixed +evt_003407,u_0101,feature_used,2026-06-21T14:48:00Z,u_0101_s01,ins_u_0101_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003408,u_0276,onboarding_completed,2026-06-21T14:50:00Z,u_0276_s01,ins_u_0276_004,"{""completed_at"": ""2026-06-21T14:39:00Z""}",v2.3.0-fixed +evt_003409,u_0791,signup_completed,2026-06-21T14:50:00Z,u_0791_s01,ins_u_0791_002,{},v2.3.0-fixed +evt_003410,u_0005,signup_started,2026-06-21T14:51:00Z,u_0005_s01,ins_u_0005_001,{},v2.3.0-fixed +evt_003411,u_0747,activation_completed,2026-06-21T14:51:00Z,u_0747_s01,ins_u_0747_006,{},v2.3.0-fixed +evt_003412,u_0005,session_abandoned,2026-06-21T14:53:00Z,u_0005_s01,ins_u_0005_002,{},v2.3.0-fixed +evt_003413,u_0040,feature_used,2026-06-21T14:53:00Z,u_0040_s01,ins_u_0040_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_003414,u_0739,session_abandoned,2026-06-21T14:53:00Z,u_0739_s01,ins_u_0739_003,{},v2.3.0-fixed +evt_003415,u_0272,profile_saved,2026-06-21T14:54:00Z,u_0272_s01,ins_u_0272_003,{},v2.3.0-fixed +evt_003416,u_0272,onboarding_step_viewed,2026-06-21T14:57:00Z,u_0272_s01,ins_u_0272_004,{},v2.3.0-fixed +evt_003417,u_0791,session_abandoned,2026-06-21T14:57:00Z,u_0791_s01,ins_u_0791_003,{},v2.3.0-fixed +evt_003418,u_0583,signup_started,2026-06-21T15:01:00Z,u_0583_s01,ins_u_0583_001,{},v2.3.0-fixed +evt_003419,u_0649,signup_started,2026-06-21T15:02:00Z,u_0649_s01,ins_u_0649_001,{},v2.3.0-fixed +evt_003420,u_0635,signup_started,2026-06-21T15:04:00Z,u_0635_s01,ins_u_0635_001,{},v2.3.0-fixed +evt_003421,u_0649,signup_completed,2026-06-21T15:04:00Z,u_0649_s01,ins_u_0649_002,{},v2.3.0-fixed +evt_003422,u_0583,session_abandoned,2026-06-21T15:05:00Z,u_0583_s01,ins_u_0583_002,{},v2.3.0-fixed +evt_003423,u_0067,feature_used,2026-06-21T15:06:00Z,u_0067_s01,ins_u_0067_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003424,u_0635,session_abandoned,2026-06-21T15:07:00Z,u_0635_s01,ins_u_0635_002,{},v2.3.0-fixed +evt_003425,u_0040,onboarding_completed,2026-06-21T15:09:00Z,u_0040_s01,ins_u_0040_007,"{""completed_at"": ""2026-06-21T15:08:00Z""}",v2.3.0-fixed +evt_003426,u_0649,profile_saved,2026-06-21T15:09:00Z,u_0649_s01,ins_u_0649_003,{},v2.3.0-fixed +evt_003427,u_0270,signup_started,2026-06-21T15:11:00Z,u_0270_s01,ins_u_0270_001,{},v2.3.0-fixed +evt_003428,u_0370,signup_started,2026-06-21T15:11:00Z,u_0370_s01,ins_u_0370_001,{},v2.3.0-fixed +evt_003429,u_0067,onboarding_completed,2026-06-21T15:13:00Z,u_0067_s01,ins_u_0067_006,"{""completed_at"": ""2026-06-21T15:15:00Z""}",v2.3.0-fixed +evt_003430,u_0444,onboarding_completed,2026-06-21T15:13:00Z,u_0444_s01,ins_u_0444_006,"{""completed_at"": ""2026-06-21T15:08:00Z""}",v2.3.0-fixed +evt_003431,u_0370,signup_completed,2026-06-21T15:14:00Z,u_0370_s01,ins_u_0370_002,{},v2.3.0-fixed +evt_003432,u_0270,signup_completed,2026-06-21T15:16:00Z,u_0270_s01,ins_u_0270_002,{},v2.3.0-fixed +evt_003433,u_0295,signup_started,2026-06-21T15:16:00Z,u_0295_s01,ins_u_0295_001,{},v2.3.0-fixed +evt_003434,u_0029,signup_started,2026-06-21T15:17:00Z,u_0029_s01,ins_u_0029_001,{},v2.3.0-fixed +evt_003435,u_0237,signup_started,2026-06-21T15:18:00Z,u_0237_s01,ins_u_0237_001,{},v2.3.0-fixed +evt_003436,u_0101,onboarding_completed,2026-06-21T15:19:00Z,u_0101_s01,ins_u_0101_006,"{""completed_at"": ""2026-06-21T15:13:00Z""}",v2.3.0-fixed +evt_003437,u_0295,session_abandoned,2026-06-21T15:19:00Z,u_0295_s01,ins_u_0295_002,{},v2.3.0-fixed +evt_003438,u_0237,signup_completed,2026-06-21T15:21:00Z,u_0237_s01,ins_u_0237_002,{},v2.3.0-fixed +evt_003439,u_0370,profile_saved,2026-06-21T15:22:00Z,u_0370_s01,ins_u_0370_003,{},v2.3.0-fixed +evt_003440,u_0370,error_shown,2026-06-21T15:23:00Z,u_0370_s01,ins_u_0370_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003441,u_0270,session_abandoned,2026-06-21T15:24:00Z,u_0270_s01,ins_u_0270_003,{},v2.3.0-fixed +evt_003442,u_0029,session_abandoned,2026-06-21T15:25:00Z,u_0029_s01,ins_u_0029_002,{},v2.3.0-fixed +evt_003443,u_0370,onboarding_step_viewed,2026-06-21T15:25:00Z,u_0370_s01,ins_u_0370_005,{},v2.3.0-fixed +evt_003444,u_0237,session_abandoned,2026-06-21T15:27:00Z,u_0237_s01,ins_u_0237_003,{},v2.3.0-fixed +evt_003445,u_0272,onboarding_completed,2026-06-21T15:29:00Z,u_0272_s01,ins_u_0272_005,"{""completed_at"": ""2026-06-21T15:33:00Z""}",v2.3.0-fixed +evt_003446,u_0451,signup_started,2026-06-21T15:30:00Z,u_0451_s01,ins_u_0451_001,{},v2.3.0-fixed +evt_003447,u_0030,signup_started,2026-06-21T15:35:00Z,u_0030_s01,ins_u_0030_001,{},v2.3.0-fixed +evt_003448,u_0649,onboarding_completed,2026-06-21T15:36:00Z,u_0649_s01,ins_u_0649_004,"{""completed_at"": ""2026-06-21T15:40:00Z""}",v2.3.0-fixed +evt_003449,u_0101,activation_completed,2026-06-21T15:38:00Z,u_0101_s01,ins_u_0101_007,{},v2.3.0-fixed +evt_003450,u_0451,signup_completed,2026-06-21T15:38:00Z,u_0451_s01,ins_u_0451_002,{},v2.3.0-fixed +evt_003451,u_0030,signup_completed,2026-06-21T15:39:00Z,u_0030_s01,ins_u_0030_002,{},v2.3.0-fixed +evt_003452,u_0716,signup_started,2026-06-21T15:40:00Z,u_0716_s01,ins_u_0716_001,{},v2.3.0-fixed +evt_003453,u_0030,profile_saved,2026-06-21T15:41:00Z,u_0030_s01,ins_u_0030_003,{},v2.3.0-fixed +evt_003454,u_0716,signup_completed,2026-06-21T15:41:00Z,u_0716_s01,ins_u_0716_002,{},v2.3.0-fixed +evt_003455,u_0030,onboarding_step_viewed,2026-06-21T15:46:00Z,u_0030_s01,ins_u_0030_004,{},v2.3.0-fixed +evt_003456,u_0120,signup_started,2026-06-21T15:46:00Z,u_0120_s01,ins_u_0120_001,{},v2.3.0-fixed +evt_003457,u_0716,profile_saved,2026-06-21T15:46:00Z,u_0716_s01,ins_u_0716_003,{},v2.3.0-fixed +evt_003458,u_0451,profile_saved,2026-06-21T15:48:00Z,u_0451_s01,ins_u_0451_003,{},v2.3.0-fixed +evt_003459,u_0370,onboarding_completed,2026-06-21T15:49:00Z,u_0370_s01,ins_u_0370_006,"{""completed_at"": ""2026-06-21T15:51:00Z""}",v2.3.0-fixed +evt_003460,u_0716,onboarding_step_viewed,2026-06-21T15:50:00Z,u_0716_s01,ins_u_0716_004,{},v2.3.0-fixed +evt_003461,u_0030,feature_used,2026-06-21T15:53:00Z,u_0030_s01,ins_u_0030_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003462,u_0451,onboarding_step_viewed,2026-06-21T15:53:00Z,u_0451_s01,ins_u_0451_004,{},v2.3.0-fixed +evt_003463,u_0120,signup_completed,2026-06-21T15:54:00Z,u_0120_s01,ins_u_0120_002,{},v2.3.0-fixed +evt_003464,u_0272,activation_completed,2026-06-21T16:00:00Z,u_0272_s01,ins_u_0272_006,{},v2.3.0-fixed +evt_003465,u_0120,profile_saved,2026-06-21T16:02:00Z,u_0120_s01,ins_u_0120_003,{},v2.3.0-fixed +evt_003466,u_0427,signup_started,2026-06-21T16:05:00Z,u_0427_s01,ins_u_0427_001,{},v2.3.0-fixed +evt_003467,u_0427,session_abandoned,2026-06-21T16:07:00Z,u_0427_s01,ins_u_0427_002,{},v2.3.0-fixed +evt_003468,u_0120,onboarding_step_viewed,2026-06-21T16:08:00Z,u_0120_s01,ins_u_0120_004,{},v2.3.0-fixed +evt_003469,u_0716,feature_used,2026-06-21T16:08:00Z,u_0716_s01,ins_u_0716_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003470,u_0451,onboarding_completed,2026-06-21T16:14:00Z,u_0451_s01,ins_u_0451_005,"{""completed_at"": ""2026-06-21T16:20:00Z""}",v2.3.0-fixed +evt_003471,u_0370,activation_completed,2026-06-21T16:15:00Z,u_0370_s01,ins_u_0370_007,{},v2.3.0-fixed +evt_003472,u_0683,signup_started,2026-06-21T16:15:00Z,u_0683_s01,ins_u_0683_001,{},v2.3.0-fixed +evt_003473,u_0716,onboarding_completed,2026-06-21T16:15:00Z,u_0716_s01,ins_u_0716_006,"{""completed_at"": ""2026-06-21T16:17:00Z""}",v2.3.0-fixed +evt_003474,u_0649,activation_completed,2026-06-21T16:17:00Z,u_0649_s01,ins_u_0649_005,{},v2.3.0-fixed +evt_003475,u_0020,signup_started,2026-06-21T16:20:00Z,u_0020_s01,ins_u_0020_001,{},v2.3.0-fixed +evt_003476,u_0245,signup_started,2026-06-21T16:22:00Z,u_0245_s01,ins_u_0245_001,{},v2.3.0-fixed +evt_003477,u_0683,signup_completed,2026-06-21T16:22:00Z,u_0683_s01,ins_u_0683_002,{},v2.3.0-fixed +evt_003478,u_0030,onboarding_completed,2026-06-21T16:24:00Z,u_0030_s01,ins_u_0030_006,"{""completed_at"": ""2026-06-21T16:07:00Z""}",v2.3.0-fixed +evt_003479,u_0683,profile_saved,2026-06-21T16:25:00Z,u_0683_s01,ins_u_0683_003,{},v2.3.0-fixed +evt_003480,u_0683,error_shown,2026-06-21T16:26:00Z,u_0683_s01,ins_u_0683_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003481,u_0120,feature_used,2026-06-21T16:27:00Z,u_0120_s01,ins_u_0120_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003482,u_0020,signup_completed,2026-06-21T16:28:00Z,u_0020_s01,ins_u_0020_002,{},v2.3.0-fixed +evt_003483,u_0147,signup_started,2026-06-21T16:28:00Z,u_0147_s01,ins_u_0147_001,{},v2.3.0-fixed +evt_003484,u_0245,signup_completed,2026-06-21T16:28:00Z,u_0245_s01,ins_u_0245_002,{},v2.3.0-fixed +evt_003485,u_0418,signup_started,2026-06-21T16:29:00Z,u_0418_s01,ins_u_0418_001,{},v2.3.0-fixed +evt_003486,u_0683,onboarding_step_viewed,2026-06-21T16:30:00Z,u_0683_s01,ins_u_0683_005,{},v2.3.0-fixed +evt_003487,u_0020,profile_saved,2026-06-21T16:31:00Z,u_0020_s01,ins_u_0020_003,{},v2.3.0-fixed +evt_003488,u_0030,activation_completed,2026-06-21T16:31:00Z,u_0030_s01,ins_u_0030_007,{},v2.3.0-fixed +evt_003489,u_0245,profile_saved,2026-06-21T16:31:00Z,u_0245_s01,ins_u_0245_003,{},v2.3.0-fixed +evt_003490,u_0020,onboarding_step_viewed,2026-06-21T16:33:00Z,u_0020_s01,ins_u_0020_004,{},v2.3.0-fixed +evt_003491,u_0147,session_abandoned,2026-06-21T16:35:00Z,u_0147_s01,ins_u_0147_002,{},v2.3.0-fixed +evt_003492,u_0418,signup_completed,2026-06-21T16:35:00Z,u_0418_s01,ins_u_0418_002,{},v2.3.0-fixed +evt_003493,u_0613,signup_started,2026-06-21T16:36:00Z,u_0613_s01,ins_u_0613_001,{},v2.3.0-fixed +evt_003494,u_0091,signup_started,2026-06-21T16:40:00Z,u_0091_s01,ins_u_0091_001,{},v2.3.0-fixed +evt_003495,u_0716,activation_completed,2026-06-21T16:40:00Z,u_0716_s01,ins_u_0716_007,{},v2.3.0-fixed +evt_003496,u_0120,onboarding_completed,2026-06-21T16:41:00Z,u_0120_s01,ins_u_0120_006,"{""completed_at"": ""2026-06-21T16:33:00Z""}",v2.3.0-fixed +evt_003497,u_0613,signup_completed,2026-06-21T16:41:00Z,u_0613_s01,ins_u_0613_002,{},v2.3.0-fixed +evt_003498,u_0418,profile_saved,2026-06-21T16:44:00Z,u_0418_s01,ins_u_0418_003,{},v2.3.0-fixed +evt_003499,u_0459,signup_started,2026-06-21T16:44:00Z,u_0459_s01,ins_u_0459_001,{},v2.3.0-fixed +evt_003500,u_0091,signup_completed,2026-06-21T16:45:00Z,u_0091_s01,ins_u_0091_002,{},v2.3.0-fixed +evt_003501,u_0364,signup_started,2026-06-21T16:46:00Z,u_0364_s01,ins_u_0364_001,{},v2.3.0-fixed +evt_003502,u_0683,feature_used,2026-06-21T16:47:00Z,u_0683_s01,ins_u_0683_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003503,u_0459,signup_completed,2026-06-21T16:48:00Z,u_0459_s01,ins_u_0459_002,{},v2.3.0-fixed +evt_003504,u_0613,session_abandoned,2026-06-21T16:48:00Z,u_0613_s01,ins_u_0613_003,{},v2.3.0-fixed +evt_003505,u_0364,session_abandoned,2026-06-21T16:50:00Z,u_0364_s01,ins_u_0364_002,{},v2.3.0-fixed +evt_003506,u_0418,onboarding_step_viewed,2026-06-21T16:50:00Z,u_0418_s01,ins_u_0418_004,{},v2.3.0-fixed +evt_003507,u_0451,activation_completed,2026-06-21T16:50:00Z,u_0451_s01,ins_u_0451_006,{},v2.3.0-fixed +evt_003508,u_0459,profile_saved,2026-06-21T16:52:00Z,u_0459_s01,ins_u_0459_003,{},v2.3.0-fixed +evt_003509,u_0091,profile_saved,2026-06-21T16:55:00Z,u_0091_s01,ins_u_0091_003,{},v2.3.0-fixed +evt_003510,u_0459,onboarding_step_viewed,2026-06-21T16:57:00Z,u_0459_s01,ins_u_0459_004,{},v2.3.0-fixed +evt_003511,u_0091,onboarding_step_viewed,2026-06-21T16:59:00Z,u_0091_s01,ins_u_0091_004,{},v2.3.0-fixed +evt_003512,u_0020,onboarding_completed,2026-06-21T17:04:00Z,u_0020_s01,ins_u_0020_005,"{""completed_at"": ""2026-06-21T17:03:00Z""}",v2.3.0-fixed +evt_003513,u_0493,signup_started,2026-06-21T17:05:00Z,u_0493_s01,ins_u_0493_001,{},v2.3.0-fixed +evt_003514,u_0484,signup_started,2026-06-21T17:07:00Z,u_0484_s01,ins_u_0484_001,{},v2.3.0-fixed +evt_003515,u_0409,signup_started,2026-06-21T17:11:00Z,u_0409_s01,ins_u_0409_001,{},v2.3.0-fixed +evt_003516,u_0493,signup_completed,2026-06-21T17:11:00Z,u_0493_s01,ins_u_0493_002,{},v2.3.0-fixed +evt_003517,u_0245,onboarding_completed,2026-06-21T17:12:00Z,u_0245_s01,ins_u_0245_004,"{""completed_at"": ""2026-06-21T17:05:00Z""}",v2.3.0-fixed +evt_003518,u_0484,signup_completed,2026-06-21T17:12:00Z,u_0484_s01,ins_u_0484_002,{},v2.3.0-fixed +evt_003519,u_0418,onboarding_completed,2026-06-21T17:13:00Z,u_0418_s01,ins_u_0418_005,"{""completed_at"": ""2026-06-21T17:10:00Z""}",v2.3.0-fixed +evt_003520,u_0766,signup_started,2026-06-21T17:13:00Z,u_0766_s01,ins_u_0766_001,{},v2.3.0-fixed +evt_003521,u_0409,signup_completed,2026-06-21T17:14:00Z,u_0409_s01,ins_u_0409_002,{},v2.3.0-fixed +evt_003522,u_0632,signup_started,2026-06-21T17:15:00Z,u_0632_s01,ins_u_0632_001,{},v2.3.0-fixed +evt_003523,u_0198,signup_started,2026-06-21T17:17:00Z,u_0198_s01,ins_u_0198_001,{},v2.3.0-fixed +evt_003524,u_0091,feature_used,2026-06-21T17:18:00Z,u_0091_s01,ins_u_0091_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003525,u_0766,signup_completed,2026-06-21T17:18:00Z,u_0766_s01,ins_u_0766_002,{},v2.3.0-fixed +evt_003526,u_0409,session_abandoned,2026-06-21T17:19:00Z,u_0409_s01,ins_u_0409_003,{},v2.3.0-fixed +evt_003527,u_0493,profile_saved,2026-06-21T17:19:00Z,u_0493_s01,ins_u_0493_003,{},v2.3.0-fixed +evt_003528,u_0632,signup_completed,2026-06-21T17:20:00Z,u_0632_s01,ins_u_0632_002,{},v2.3.0-fixed +evt_003529,u_0484,profile_saved,2026-06-21T17:21:00Z,u_0484_s01,ins_u_0484_003,{},v2.3.0-fixed +evt_003530,u_0198,signup_completed,2026-06-21T17:22:00Z,u_0198_s01,ins_u_0198_002,{},v2.3.0-fixed +evt_003531,u_0484,onboarding_step_viewed,2026-06-21T17:23:00Z,u_0484_s01,ins_u_0484_004,{},v2.3.0-fixed +evt_003532,u_0766,session_abandoned,2026-06-21T17:23:00Z,u_0766_s01,ins_u_0766_003,{},v2.3.0-fixed +evt_003533,u_0746,signup_started,2026-06-21T17:24:00Z,u_0746_s01,ins_u_0746_001,{},v2.3.0-fixed +evt_003534,u_0459,onboarding_completed,2026-06-21T17:28:00Z,u_0459_s01,ins_u_0459_005,"{""completed_at"": ""2026-06-21T17:21:00Z""}",v2.3.0-fixed +evt_003535,u_0632,session_abandoned,2026-06-21T17:28:00Z,u_0632_s01,ins_u_0632_003,{},v2.3.0-fixed +evt_003536,u_0198,session_abandoned,2026-06-21T17:29:00Z,u_0198_s01,ins_u_0198_003,{},v2.3.0-fixed +evt_003537,u_0493,feature_used,2026-06-21T17:30:00Z,u_0493_s01,ins_u_0493_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003538,u_0683,activation_completed,2026-06-21T17:30:00Z,u_0683_s01,ins_u_0683_007,{},v2.3.0-fixed +evt_003539,u_0746,signup_completed,2026-06-21T17:30:00Z,u_0746_s01,ins_u_0746_002,{},v2.3.0-fixed +evt_003540,u_0746,profile_saved,2026-06-21T17:32:00Z,u_0746_s01,ins_u_0746_003,{},v2.3.0-fixed +evt_003541,u_0746,error_shown,2026-06-21T17:33:00Z,u_0746_s01,ins_u_0746_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003542,u_0746,onboarding_step_viewed,2026-06-21T17:35:00Z,u_0746_s01,ins_u_0746_005,{},v2.3.0-fixed +evt_003543,u_0453,signup_started,2026-06-21T17:37:00Z,u_0453_s01,ins_u_0453_001,{},v2.3.0-fixed +evt_003544,u_0459,activation_completed,2026-06-21T17:39:00Z,u_0459_s01,ins_u_0459_006,{},v2.3.0-fixed +evt_003545,u_0513,return_visit,2026-06-21T17:39:00Z,u_0513_s02,ins_u_0513_008,{},v2.3.0-fixed +evt_003546,u_0293,signup_started,2026-06-21T17:43:00Z,u_0293_s01,ins_u_0293_001,{},v2.3.0-fixed +evt_003547,u_0453,signup_completed,2026-06-21T17:44:00Z,u_0453_s01,ins_u_0453_002,{},v2.3.0-fixed +evt_003548,u_0513,feature_used,2026-06-21T17:44:00Z,u_0513_s02,ins_u_0513_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003549,u_0293,signup_completed,2026-06-21T17:45:00Z,u_0293_s01,ins_u_0293_002,{},v2.3.0-fixed +evt_003550,u_0453,profile_saved,2026-06-21T17:46:00Z,u_0453_s01,ins_u_0453_003,{},v2.3.0-fixed +evt_003551,u_0484,feature_used,2026-06-21T17:46:00Z,u_0484_s01,ins_u_0484_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003552,u_0493,onboarding_completed,2026-06-21T17:47:00Z,u_0493_s01,ins_u_0493_005,"{""completed_at"": ""2026-06-21T17:47:00Z""}",v2.3.0-fixed +evt_003553,u_0615,signup_started,2026-06-21T17:48:00Z,u_0615_s01,ins_u_0615_001,{},v2.3.0-fixed +evt_003554,u_0701,signup_started,2026-06-21T17:48:00Z,u_0701_s01,ins_u_0701_001,{},v2.3.0-fixed +evt_003555,u_0293,session_abandoned,2026-06-21T17:49:00Z,u_0293_s01,ins_u_0293_003,{},v2.3.0-fixed +evt_003556,u_0453,onboarding_step_viewed,2026-06-21T17:49:00Z,u_0453_s01,ins_u_0453_004,{},v2.3.0-fixed +evt_003557,u_0422,signup_started,2026-06-21T17:51:00Z,u_0422_s01,ins_u_0422_001,{},v2.3.0-fixed +evt_003558,u_0484,onboarding_completed,2026-06-21T17:51:00Z,u_0484_s01,ins_u_0484_006,"{""completed_at"": ""2026-06-21T18:01:00Z""}",v2.3.0-fixed +evt_003559,u_0701,session_abandoned,2026-06-21T17:53:00Z,u_0701_s01,ins_u_0701_002,{},v2.3.0-fixed +evt_003560,u_0746,feature_used,2026-06-21T17:55:00Z,u_0746_s01,ins_u_0746_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_003561,u_0615,signup_completed,2026-06-21T17:56:00Z,u_0615_s01,ins_u_0615_002,{},v2.3.0-fixed +evt_003562,u_0422,signup_completed,2026-06-21T17:57:00Z,u_0422_s01,ins_u_0422_002,{},v2.3.0-fixed +evt_003563,u_0727,signup_started,2026-06-21T17:57:00Z,u_0727_s01,ins_u_0727_001,{},v2.3.0-fixed +evt_003564,u_0615,profile_saved,2026-06-21T17:58:00Z,u_0615_s01,ins_u_0615_003,{},v2.3.0-fixed +evt_003565,u_0091,activation_completed,2026-06-21T17:59:00Z,u_0091_s01,ins_u_0091_006,{},v2.3.0-fixed +evt_003566,u_0422,profile_saved,2026-06-21T17:59:00Z,u_0422_s01,ins_u_0422_003,{},v2.3.0-fixed +evt_003567,u_0727,signup_completed,2026-06-21T17:59:00Z,u_0727_s01,ins_u_0727_002,{},v2.3.0-fixed +evt_003568,u_0729,signup_started,2026-06-21T17:59:00Z,u_0729_s01,ins_u_0729_001,{},v2.3.0-fixed +evt_003569,u_0422,error_shown,2026-06-21T18:00:00Z,u_0422_s01,ins_u_0422_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003570,u_0615,onboarding_step_viewed,2026-06-21T18:01:00Z,u_0615_s01,ins_u_0615_004,{},v2.3.0-fixed +evt_003571,u_0727,profile_saved,2026-06-21T18:02:00Z,u_0727_s01,ins_u_0727_003,{},v2.3.0-fixed +evt_003572,u_0729,session_abandoned,2026-06-21T18:03:00Z,u_0729_s01,ins_u_0729_002,{},v2.3.0-fixed +evt_003573,u_0404,signup_started,2026-06-21T18:04:00Z,u_0404_s01,ins_u_0404_001,{},v2.3.0-fixed +evt_003574,u_0422,onboarding_step_viewed,2026-06-21T18:04:00Z,u_0422_s01,ins_u_0422_005,{},v2.3.0-fixed +evt_003575,u_0746,onboarding_completed,2026-06-21T18:04:00Z,u_0746_s01,ins_u_0746_007,"{""completed_at"": ""2026-06-21T18:08:00Z""}",v2.3.0-fixed +evt_003576,u_0727,onboarding_step_viewed,2026-06-21T18:07:00Z,u_0727_s01,ins_u_0727_004,{},v2.3.0-fixed +evt_003577,u_0404,signup_completed,2026-06-21T18:09:00Z,u_0404_s01,ins_u_0404_002,{},v2.3.0-fixed +evt_003578,u_0533,signup_started,2026-06-21T18:10:00Z,u_0533_s01,ins_u_0533_001,{},v2.3.0-fixed +evt_003579,u_0393,signup_started,2026-06-21T18:11:00Z,u_0393_s01,ins_u_0393_001,{},v2.3.0-fixed +evt_003580,u_0615,feature_used,2026-06-21T18:11:00Z,u_0615_s01,ins_u_0615_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003581,u_0727,feature_used,2026-06-21T18:13:00Z,u_0727_s01,ins_u_0727_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003582,u_0533,signup_completed,2026-06-21T18:14:00Z,u_0533_s01,ins_u_0533_002,{},v2.3.0-fixed +evt_003583,u_0404,profile_saved,2026-06-21T18:15:00Z,u_0404_s01,ins_u_0404_003,{},v2.3.0-fixed +evt_003584,u_0393,signup_completed,2026-06-21T18:19:00Z,u_0393_s01,ins_u_0393_002,{},v2.3.0-fixed +evt_003585,u_0404,onboarding_step_viewed,2026-06-21T18:20:00Z,u_0404_s01,ins_u_0404_004,{},v2.3.0-fixed +evt_003586,u_0453,onboarding_completed,2026-06-21T18:23:00Z,u_0453_s01,ins_u_0453_005,"{""completed_at"": ""2026-06-21T18:21:00Z""}",v2.3.0-fixed +evt_003587,u_0533,session_abandoned,2026-06-21T18:23:00Z,u_0533_s01,ins_u_0533_003,{},v2.3.0-fixed +evt_003588,u_0493,activation_completed,2026-06-21T18:24:00Z,u_0493_s01,ins_u_0493_006,{},v2.3.0-fixed +evt_003589,u_0393,profile_saved,2026-06-21T18:26:00Z,u_0393_s01,ins_u_0393_003,{},v2.3.0-fixed +evt_003590,u_0656,signup_started,2026-06-21T18:29:00Z,u_0656_s01,ins_u_0656_001,{},v2.3.0-fixed +evt_003591,u_0141,signup_started,2026-06-21T18:30:00Z,u_0141_s01,ins_u_0141_001,{},v2.3.0-fixed +evt_003592,u_0722,signup_started,2026-06-21T18:34:00Z,u_0722_s01,ins_u_0722_001,{},v2.3.0-fixed +evt_003593,u_0615,onboarding_completed,2026-06-21T18:35:00Z,u_0615_s01,ins_u_0615_006,"{""completed_at"": ""2026-06-21T18:33:00Z""}",v2.3.0-fixed +evt_003594,u_0141,signup_completed,2026-06-21T18:36:00Z,u_0141_s01,ins_u_0141_002,{},v2.3.0-fixed +evt_003595,u_0656,signup_completed,2026-06-21T18:36:00Z,u_0656_s01,ins_u_0656_002,{},v2.3.0-fixed +evt_003596,u_0393,feature_used,2026-06-21T18:37:00Z,u_0393_s01,ins_u_0393_004,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003597,u_0422,onboarding_completed,2026-06-21T18:37:00Z,u_0422_s01,ins_u_0422_006,"{""completed_at"": ""2026-06-21T18:32:00Z""}",v2.3.0-fixed +evt_003598,u_0656,profile_saved,2026-06-21T18:38:00Z,u_0656_s01,ins_u_0656_003,{},v2.3.0-fixed +evt_003599,u_0722,signup_completed,2026-06-21T18:38:00Z,u_0722_s01,ins_u_0722_002,{},v2.3.0-fixed +evt_003600,u_0023,signup_started,2026-06-21T18:40:00Z,u_0023_s01,ins_u_0023_001,{},v2.3.0-fixed +evt_003601,u_0656,onboarding_step_viewed,2026-06-21T18:40:00Z,u_0656_s01,ins_u_0656_004,{},v2.3.0-fixed +evt_003602,u_0727,onboarding_completed,2026-06-21T18:40:00Z,u_0727_s01,ins_u_0727_006,"{""completed_at"": ""2026-06-21T18:41:00Z""}",v2.3.0-fixed +evt_003603,u_0141,profile_saved,2026-06-21T18:41:00Z,u_0141_s01,ins_u_0141_003,{},v2.3.0-fixed +evt_003604,u_0023,signup_completed,2026-06-21T18:42:00Z,u_0023_s01,ins_u_0023_002,{},v2.3.0-fixed +evt_003605,u_0453,activation_completed,2026-06-21T18:43:00Z,u_0453_s01,ins_u_0453_006,{},v2.3.0-fixed +evt_003606,u_0141,onboarding_step_viewed,2026-06-21T18:44:00Z,u_0141_s01,ins_u_0141_004,{},v2.3.0-fixed +evt_003607,u_0722,session_abandoned,2026-06-21T18:44:00Z,u_0722_s01,ins_u_0722_003,{},v2.3.0-fixed +evt_003608,u_0023,profile_saved,2026-06-21T18:45:00Z,u_0023_s01,ins_u_0023_003,{},v2.3.0-fixed +evt_003609,u_0023,onboarding_step_viewed,2026-06-21T18:47:00Z,u_0023_s01,ins_u_0023_004,{},v2.3.0-fixed +evt_003610,u_0404,onboarding_completed,2026-06-21T18:52:00Z,u_0404_s01,ins_u_0404_005,"{""completed_at"": ""2026-06-21T18:41:00Z""}",v2.3.0-fixed +evt_003611,u_0023,feature_used,2026-06-21T18:54:00Z,u_0023_s01,ins_u_0023_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003612,u_0656,feature_used,2026-06-21T19:01:00Z,u_0656_s01,ins_u_0656_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003613,u_0141,feature_used,2026-06-21T19:02:00Z,u_0141_s01,ins_u_0141_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003614,u_0393,onboarding_completed,2026-06-21T19:02:00Z,u_0393_s01,ins_u_0393_005,"{""completed_at"": ""2026-06-21T19:04:00Z""}",v2.3.0-fixed +evt_003615,u_0777,signup_started,2026-06-21T19:06:00Z,u_0777_s01,ins_u_0777_001,{},v2.3.0-fixed +evt_003616,u_0777,signup_completed,2026-06-21T19:07:00Z,u_0777_s01,ins_u_0777_002,{},v2.3.0-fixed +evt_003617,u_0460,signup_started,2026-06-21T19:10:00Z,u_0460_s01,ins_u_0460_001,{},v2.3.0-fixed +evt_003618,u_0777,profile_saved,2026-06-21T19:10:00Z,u_0777_s01,ins_u_0777_003,{},v2.3.0-fixed +evt_003619,u_0393,activation_completed,2026-06-21T19:13:00Z,u_0393_s01,ins_u_0393_006,{},v2.3.0-fixed +evt_003620,u_0656,onboarding_completed,2026-06-21T19:13:00Z,u_0656_s01,ins_u_0656_006,"{""completed_at"": ""2026-06-21T19:18:00Z""}",v2.3.0-fixed +evt_003621,u_0777,onboarding_step_viewed,2026-06-21T19:13:00Z,u_0777_s01,ins_u_0777_004,{},v2.3.0-fixed +evt_003622,u_0141,onboarding_completed,2026-06-21T19:16:00Z,u_0141_s01,ins_u_0141_006,"{""completed_at"": ""2026-06-21T19:16:00Z""}",v2.3.0-fixed +evt_003623,u_0460,signup_completed,2026-06-21T19:16:00Z,u_0460_s01,ins_u_0460_002,{},v2.3.0-fixed +evt_003624,u_0460,profile_saved,2026-06-21T19:19:00Z,u_0460_s01,ins_u_0460_003,{},v2.3.0-fixed +evt_003625,u_0568,signup_started,2026-06-21T19:19:00Z,u_0568_s01,ins_u_0568_001,{},v2.3.0-fixed +evt_003626,u_0460,error_shown,2026-06-21T19:20:00Z,u_0460_s01,ins_u_0460_004,"{""code"": ""onboarding_timeout""}",v2.3.0-fixed +evt_003627,u_0460,onboarding_step_viewed,2026-06-21T19:23:00Z,u_0460_s01,ins_u_0460_005,{},v2.3.0-fixed +evt_003628,u_0244,signup_started,2026-06-21T19:26:00Z,u_0244_s01,ins_u_0244_001,{},v2.3.0-fixed +evt_003629,u_0568,signup_completed,2026-06-21T19:26:00Z,u_0568_s01,ins_u_0568_002,{},v2.3.0-fixed +evt_003630,u_0023,onboarding_completed,2026-06-21T19:28:00Z,u_0023_s01,ins_u_0023_006,"{""completed_at"": ""2026-06-21T19:24:00Z""}",v2.3.0-fixed +evt_003631,u_0568,profile_saved,2026-06-21T19:29:00Z,u_0568_s01,ins_u_0568_003,{},v2.3.0-fixed +evt_003632,u_0244,signup_completed,2026-06-21T19:30:00Z,u_0244_s01,ins_u_0244_002,{},v2.3.0-fixed +evt_003633,u_0517,signup_started,2026-06-21T19:32:00Z,u_0517_s01,ins_u_0517_001,{},v2.3.0-fixed +evt_003634,u_0568,onboarding_step_viewed,2026-06-21T19:33:00Z,u_0568_s01,ins_u_0568_004,{},v2.3.0-fixed +evt_003635,u_0517,signup_completed,2026-06-21T19:37:00Z,u_0517_s01,ins_u_0517_002,{},v2.3.0-fixed +evt_003636,u_0244,profile_saved,2026-06-21T19:38:00Z,u_0244_s01,ins_u_0244_003,{},v2.3.0-fixed +evt_003637,u_0244,onboarding_step_viewed,2026-06-21T19:41:00Z,u_0244_s01,ins_u_0244_004,{},v2.3.0-fixed +evt_003638,u_0517,session_abandoned,2026-06-21T19:43:00Z,u_0517_s01,ins_u_0517_003,{},v2.3.0-fixed +evt_003639,u_0460,feature_used,2026-06-21T19:44:00Z,u_0460_s01,ins_u_0460_006,"{""feature"": ""board""}",v2.3.0-fixed +evt_003640,u_0568,feature_used,2026-06-21T19:44:00Z,u_0568_s01,ins_u_0568_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003641,u_0777,onboarding_completed,2026-06-21T19:44:00Z,u_0777_s01,ins_u_0777_005,"{""completed_at"": ""2026-06-21T19:47:00Z""}",v2.3.0-fixed +evt_003642,u_0460,onboarding_completed,2026-06-21T19:52:00Z,u_0460_s01,ins_u_0460_007,"{""completed_at"": ""2026-06-21T19:55:00Z""}",v2.3.0-fixed +evt_003643,u_0528,signup_started,2026-06-21T19:55:00Z,u_0528_s01,ins_u_0528_001,{},v2.3.0-fixed +evt_003644,u_0037,signup_started,2026-06-21T19:57:00Z,u_0037_s01,ins_u_0037_001,{},v2.3.0-fixed +evt_003645,u_0528,session_abandoned,2026-06-21T20:03:00Z,u_0528_s01,ins_u_0528_002,{},v2.3.0-fixed +evt_003646,u_0151,signup_started,2026-06-21T20:04:00Z,u_0151_s01,ins_u_0151_001,{},v2.3.0-fixed +evt_003647,u_0037,signup_completed,2026-06-21T20:05:00Z,u_0037_s01,ins_u_0037_002,{},v2.3.0-fixed +evt_003648,u_0151,session_abandoned,2026-06-21T20:10:00Z,u_0151_s01,ins_u_0151_002,{},v2.3.0-fixed +evt_003649,u_0244,onboarding_completed,2026-06-21T20:10:00Z,u_0244_s01,ins_u_0244_005,"{""completed_at"": ""2026-06-21T20:12:00Z""}",v2.3.0-fixed +evt_003650,u_0037,profile_saved,2026-06-21T20:14:00Z,u_0037_s01,ins_u_0037_003,{},v2.3.0-fixed +evt_003651,u_0568,onboarding_completed,2026-06-21T20:14:00Z,u_0568_s01,ins_u_0568_006,"{""completed_at"": ""2026-06-21T20:08:00Z""}",v2.3.0-fixed +evt_003652,u_0259,signup_started,2026-06-21T20:16:00Z,u_0259_s01,ins_u_0259_001,{},v2.3.0-fixed +evt_003653,u_0037,onboarding_step_viewed,2026-06-21T20:18:00Z,u_0037_s01,ins_u_0037_004,{},v2.3.0-fixed +evt_003654,u_0259,signup_completed,2026-06-21T20:20:00Z,u_0259_s01,ins_u_0259_002,{},v2.3.0-fixed +evt_003655,u_0777,activation_completed,2026-06-21T20:21:00Z,u_0777_s01,ins_u_0777_006,{},v2.3.0-fixed +evt_003656,u_0292,signup_started,2026-06-21T20:22:00Z,u_0292_s01,ins_u_0292_001,{},v2.3.0-fixed +evt_003657,u_0568,activation_completed,2026-06-21T20:22:00Z,u_0568_s01,ins_u_0568_007,{},v2.3.0-fixed +evt_003658,u_0037,feature_used,2026-06-21T20:24:00Z,u_0037_s01,ins_u_0037_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003659,u_0292,signup_completed,2026-06-21T20:25:00Z,u_0292_s01,ins_u_0292_002,{},v2.3.0-fixed +evt_003660,u_0259,profile_saved,2026-06-21T20:28:00Z,u_0259_s01,ins_u_0259_003,{},v2.3.0-fixed +evt_003661,u_0487,signup_started,2026-06-21T20:31:00Z,u_0487_s01,ins_u_0487_001,{},v2.3.0-fixed +evt_003662,u_0292,session_abandoned,2026-06-21T20:32:00Z,u_0292_s01,ins_u_0292_003,{},v2.3.0-fixed +evt_003663,u_0721,signup_started,2026-06-21T20:32:00Z,u_0721_s01,ins_u_0721_001,{},v2.3.0-fixed +evt_003664,u_0487,signup_completed,2026-06-21T20:37:00Z,u_0487_s01,ins_u_0487_002,{},v2.3.0-fixed +evt_003665,u_0721,signup_completed,2026-06-21T20:38:00Z,u_0721_s01,ins_u_0721_002,{},v2.3.0-fixed +evt_003666,u_0721,profile_saved,2026-06-21T20:41:00Z,u_0721_s01,ins_u_0721_003,{},v2.3.0-fixed +evt_003667,u_0037,onboarding_completed,2026-06-21T20:42:00Z,u_0037_s01,ins_u_0037_006,"{""completed_at"": ""2026-06-21T20:50:00Z""}",v2.3.0-fixed +evt_003668,u_0487,session_abandoned,2026-06-21T20:44:00Z,u_0487_s01,ins_u_0487_003,{},v2.3.0-fixed +evt_003669,u_0721,onboarding_step_viewed,2026-06-21T20:45:00Z,u_0721_s01,ins_u_0721_004,{},v2.3.0-fixed +evt_003670,u_0655,signup_started,2026-06-21T20:46:00Z,u_0655_s01,ins_u_0655_001,{},v2.3.0-fixed +evt_003671,u_0655,signup_completed,2026-06-21T20:48:00Z,u_0655_s01,ins_u_0655_002,{},v2.3.0-fixed +evt_003672,u_0432,signup_started,2026-06-21T20:49:00Z,u_0432_s01,ins_u_0432_001,{},v2.3.0-fixed +evt_003673,u_0655,session_abandoned,2026-06-21T20:52:00Z,u_0655_s01,ins_u_0655_003,{},v2.3.0-fixed +evt_003674,u_0280,signup_started,2026-06-21T20:55:00Z,u_0280_s01,ins_u_0280_001,{},v2.3.0-fixed +evt_003675,u_0490,signup_started,2026-06-21T20:55:00Z,u_0490_s01,ins_u_0490_001,{},v2.3.0-fixed +evt_003676,u_0721,feature_used,2026-06-21T20:55:00Z,u_0721_s01,ins_u_0721_005,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003677,u_0432,signup_completed,2026-06-21T20:56:00Z,u_0432_s01,ins_u_0432_002,{},v2.3.0-fixed +evt_003678,u_0518,signup_started,2026-06-21T20:59:00Z,u_0518_s01,ins_u_0518_001,{},v2.3.0-fixed +evt_003679,u_0490,signup_completed,2026-06-21T21:02:00Z,u_0490_s01,ins_u_0490_002,{},v2.3.0-fixed +evt_003680,u_0280,signup_completed,2026-06-21T21:03:00Z,u_0280_s01,ins_u_0280_002,{},v2.3.0-fixed +evt_003681,u_0518,signup_completed,2026-06-21T21:04:00Z,u_0518_s01,ins_u_0518_002,{},v2.3.0-fixed +evt_003682,u_0432,profile_saved,2026-06-21T21:05:00Z,u_0432_s01,ins_u_0432_003,{},v2.3.0-fixed +evt_003683,u_0721,onboarding_completed,2026-06-21T21:07:00Z,u_0721_s01,ins_u_0721_006,"{""completed_at"": ""2026-06-21T21:10:00Z""}",v2.3.0-fixed +evt_003684,u_0432,onboarding_step_viewed,2026-06-21T21:08:00Z,u_0432_s01,ins_u_0432_004,{},v2.3.0-fixed +evt_003685,u_0490,profile_saved,2026-06-21T21:08:00Z,u_0490_s01,ins_u_0490_003,{},v2.3.0-fixed +evt_003686,u_0280,profile_saved,2026-06-21T21:09:00Z,u_0280_s01,ins_u_0280_003,{},v2.3.0-fixed +evt_003687,u_0259,onboarding_completed,2026-06-21T21:10:00Z,u_0259_s01,ins_u_0259_004,"{""completed_at"": ""2026-06-21T20:55:00Z""}",v2.3.0-fixed +evt_003688,u_0518,profile_saved,2026-06-21T21:13:00Z,u_0518_s01,ins_u_0518_003,{},v2.3.0-fixed +evt_003689,u_0280,onboarding_step_viewed,2026-06-21T21:15:00Z,u_0280_s01,ins_u_0280_004,{},v2.3.0-fixed +evt_003690,u_0518,onboarding_step_viewed,2026-06-21T21:18:00Z,u_0518_s01,ins_u_0518_004,{},v2.3.0-fixed +evt_003691,u_0432,feature_used,2026-06-21T21:21:00Z,u_0432_s01,ins_u_0432_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003692,u_0280,feature_used,2026-06-21T21:26:00Z,u_0280_s01,ins_u_0280_005,"{""feature"": ""board""}",v2.3.0-fixed +evt_003693,u_0037,activation_completed,2026-06-21T21:28:00Z,u_0037_s01,ins_u_0037_007,{},v2.3.0-fixed +evt_003694,u_0490,feature_used,2026-06-21T21:29:00Z,u_0490_s01,ins_u_0490_004,"{""feature"": ""board""}",v2.3.0-fixed +evt_003695,u_0259,activation_completed,2026-06-21T21:30:00Z,u_0259_s01,ins_u_0259_005,{},v2.3.0-fixed +evt_003696,u_0432,onboarding_completed,2026-06-21T21:44:00Z,u_0432_s01,ins_u_0432_006,"{""completed_at"": ""2026-06-21T21:37:00Z""}",v2.3.0-fixed +evt_003697,u_0490,onboarding_completed,2026-06-21T21:47:00Z,u_0490_s01,ins_u_0490_005,"{""completed_at"": ""2026-06-21T21:48:00Z""}",v2.3.0-fixed +evt_003698,u_0518,onboarding_completed,2026-06-21T21:54:00Z,u_0518_s01,ins_u_0518_005,"{""completed_at"": ""2026-06-21T21:45:00Z""}",v2.3.0-fixed +evt_003699,u_0280,activation_completed,2026-06-21T22:02:00Z,u_0280_s01,ins_u_0280_006,{},v2.3.0-fixed +evt_003700,u_0545,return_visit,2026-06-22T01:45:00Z,u_0545_s02,ins_u_0545_006,{},v2.3.0-fixed +evt_003701,u_0538,return_visit,2026-06-22T02:01:00Z,u_0538_s02,ins_u_0538_008,{},v2.3.0-fixed +evt_003702,u_0538,feature_used,2026-06-22T02:06:00Z,u_0538_s02,ins_u_0538_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003703,u_0623,return_visit,2026-06-22T02:30:00Z,u_0623_s02,ins_u_0623_008,{},v2.3.0-fixed +evt_003704,u_0080,return_visit,2026-06-22T04:14:00Z,u_0080_s02,ins_u_0080_007,{},v2.3.0-fixed +evt_003705,u_0456,return_visit,2026-06-22T04:27:00Z,u_0456_s02,ins_u_0456_006,{},v2.3.0-fixed +evt_003706,u_0456,feature_used,2026-06-22T04:32:00Z,u_0456_s02,ins_u_0456_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003707,u_0249,return_visit,2026-06-22T06:46:00Z,u_0249_s02,ins_u_0249_008,{},v2.3.0-fixed +evt_003708,u_0236,return_visit,2026-06-22T07:02:00Z,u_0236_s02,ins_u_0236_007,{},v2.3.0-fixed +evt_003709,u_0461,return_visit,2026-06-22T07:40:00Z,u_0461_s02,ins_u_0461_008,{},v2.3.0-fixed +evt_003710,u_0763,return_visit,2026-06-22T08:15:00Z,u_0763_s02,ins_u_0763_008,{},v2.3.0-fixed +evt_003711,u_0738,return_visit,2026-06-22T08:34:00Z,u_0738_s02,ins_u_0738_009,{},v2.3.0-fixed +evt_003712,u_0333,return_visit,2026-06-22T09:41:00Z,u_0333_s02,ins_u_0333_008,{},v2.3.0-fixed +evt_003713,u_0401,return_visit,2026-06-22T10:08:00Z,u_0401_s02,ins_u_0401_009,{},v2.3.0-fixed +evt_003714,u_0669,return_visit,2026-06-22T10:10:00Z,u_0669_s02,ins_u_0669_008,{},v2.3.0-fixed +evt_003715,u_0089,return_visit,2026-06-22T10:13:00Z,u_0089_s02,ins_u_0089_008,{},v2.3.0-fixed +evt_003716,u_0401,feature_used,2026-06-22T10:13:00Z,u_0401_s02,ins_u_0401_010,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003717,u_0669,feature_used,2026-06-22T10:15:00Z,u_0669_s02,ins_u_0669_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003718,u_0373,return_visit,2026-06-22T11:02:00Z,u_0373_s02,ins_u_0373_007,{},v2.3.0-fixed +evt_003719,u_0439,return_visit,2026-06-22T13:03:00Z,u_0439_s02,ins_u_0439_007,{},v2.3.0-fixed +evt_003720,u_0639,return_visit,2026-06-22T22:55:00Z,u_0639_s02,ins_u_0639_007,{},v2.3.0-fixed +evt_003721,u_0594,return_visit,2026-06-22T23:04:00Z,u_0594_s02,ins_u_0594_006,{},v2.3.0-fixed +evt_003722,u_0248,return_visit,2026-06-23T00:40:00Z,u_0248_s02,ins_u_0248_007,{},v2.3.0-fixed +evt_003723,u_0248,feature_used,2026-06-23T00:45:00Z,u_0248_s02,ins_u_0248_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003724,u_0481,return_visit,2026-06-23T00:49:00Z,u_0481_s02,ins_u_0481_007,{},v2.3.0-fixed +evt_003725,u_0044,return_visit,2026-06-23T00:55:00Z,u_0044_s02,ins_u_0044_008,{},v2.3.0-fixed +evt_003726,u_0686,return_visit,2026-06-23T00:58:00Z,u_0686_s02,ins_u_0686_006,{},v2.3.0-fixed +evt_003727,u_0508,return_visit,2026-06-23T02:02:00Z,u_0508_s02,ins_u_0508_008,{},v2.3.0-fixed +evt_003728,u_0787,return_visit,2026-06-23T02:04:00Z,u_0787_s02,ins_u_0787_006,{},v2.3.0-fixed +evt_003729,u_0508,feature_used,2026-06-23T02:07:00Z,u_0508_s02,ins_u_0508_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003730,u_0550,return_visit,2026-06-23T02:23:00Z,u_0550_s02,ins_u_0550_006,{},v2.3.0-fixed +evt_003731,u_0550,feature_used,2026-06-23T02:28:00Z,u_0550_s02,ins_u_0550_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003732,u_0765,return_visit,2026-06-23T04:37:00Z,u_0765_s02,ins_u_0765_009,{},v2.3.0-fixed +evt_003733,u_0169,return_visit,2026-06-23T07:08:00Z,u_0169_s02,ins_u_0169_009,{},v2.3.0-fixed +evt_003734,u_0169,feature_used,2026-06-23T07:13:00Z,u_0169_s02,ins_u_0169_010,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003735,u_0448,return_visit,2026-06-23T07:34:00Z,u_0448_s02,ins_u_0448_009,{},v2.3.0-fixed +evt_003736,u_0500,return_visit,2026-06-23T08:07:00Z,u_0500_s02,ins_u_0500_006,{},v2.3.0-fixed +evt_003737,u_0345,return_visit,2026-06-23T08:26:00Z,u_0345_s02,ins_u_0345_008,{},v2.3.0-fixed +evt_003738,u_0345,feature_used,2026-06-23T08:31:00Z,u_0345_s02,ins_u_0345_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003739,u_0723,return_visit,2026-06-23T09:53:00Z,u_0723_s02,ins_u_0723_007,{},v2.3.0-fixed +evt_003740,u_0173,return_visit,2026-06-23T11:23:00Z,u_0173_s02,ins_u_0173_007,{},v2.3.0-fixed +evt_003741,u_0173,feature_used,2026-06-23T11:28:00Z,u_0173_s02,ins_u_0173_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003742,u_0162,return_visit,2026-06-23T14:30:00Z,u_0162_s02,ins_u_0162_006,{},v2.3.0-fixed +evt_003743,u_0062,return_visit,2026-06-23T19:11:00Z,u_0062_s02,ins_u_0062_007,{},v2.3.0-fixed +evt_003744,u_0279,return_visit,2026-06-23T19:24:00Z,u_0279_s02,ins_u_0279_008,{},v2.3.0-fixed +evt_003745,u_0192,return_visit,2026-06-23T22:12:00Z,u_0192_s02,ins_u_0192_008,{},v2.3.0-fixed +evt_003746,u_0192,feature_used,2026-06-23T22:17:00Z,u_0192_s02,ins_u_0192_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003747,u_0107,return_visit,2026-06-23T22:28:00Z,u_0107_s02,ins_u_0107_006,{},v2.3.0-fixed +evt_003748,u_0107,feature_used,2026-06-23T22:33:00Z,u_0107_s02,ins_u_0107_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003749,u_0265,return_visit,2026-06-23T23:46:00Z,u_0265_s02,ins_u_0265_008,{},v2.3.0-fixed +evt_003750,u_0265,feature_used,2026-06-23T23:51:00Z,u_0265_s02,ins_u_0265_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003751,u_0665,return_visit,2026-06-24T00:03:00Z,u_0665_s02,ins_u_0665_006,{},v2.3.0-fixed +evt_003752,u_0665,feature_used,2026-06-24T00:08:00Z,u_0665_s02,ins_u_0665_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003753,u_0238,return_visit,2026-06-24T00:43:00Z,u_0238_s02,ins_u_0238_007,{},v2.3.0-fixed +evt_003754,u_0542,return_visit,2026-06-24T01:53:00Z,u_0542_s02,ins_u_0542_008,{},v2.3.0-fixed +evt_003755,u_0082,return_visit,2026-06-24T02:32:00Z,u_0082_s02,ins_u_0082_007,{},v2.3.0-fixed +evt_003756,u_0091,return_visit,2026-06-24T02:40:00Z,u_0091_s02,ins_u_0091_007,{},v2.3.0-fixed +evt_003757,u_0590,return_visit,2026-06-24T02:56:00Z,u_0590_s02,ins_u_0590_008,{},v2.3.0-fixed +evt_003758,u_0713,return_visit,2026-06-24T03:22:00Z,u_0713_s02,ins_u_0713_008,{},v2.3.0-fixed +evt_003759,u_0196,return_visit,2026-06-24T03:24:00Z,u_0196_s02,ins_u_0196_007,{},v2.3.0-fixed +evt_003760,u_0713,feature_used,2026-06-24T03:27:00Z,u_0713_s02,ins_u_0713_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003761,u_0196,feature_used,2026-06-24T03:29:00Z,u_0196_s02,ins_u_0196_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003762,u_0422,return_visit,2026-06-24T04:51:00Z,u_0422_s02,ins_u_0422_007,{},v2.3.0-fixed +evt_003763,u_0422,feature_used,2026-06-24T04:56:00Z,u_0422_s02,ins_u_0422_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003764,u_0774,return_visit,2026-06-24T05:34:00Z,u_0774_s02,ins_u_0774_006,{},v2.3.0-fixed +evt_003765,u_0128,return_visit,2026-06-24T05:40:00Z,u_0128_s02,ins_u_0128_007,{},v2.3.0-fixed +evt_003766,u_0778,return_visit,2026-06-24T05:57:00Z,u_0778_s02,ins_u_0778_007,{},v2.3.0-fixed +evt_003767,u_0018,return_visit,2026-06-24T06:03:00Z,u_0018_s02,ins_u_0018_009,{},v2.3.0-fixed +evt_003768,u_0018,feature_used,2026-06-24T06:08:00Z,u_0018_s02,ins_u_0018_010,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003769,u_0691,return_visit,2026-06-24T06:55:00Z,u_0691_s02,ins_u_0691_006,{},v2.3.0-fixed +evt_003770,u_0435,return_visit,2026-06-24T07:05:00Z,u_0435_s02,ins_u_0435_008,{},v2.3.0-fixed +evt_003771,u_0505,return_visit,2026-06-24T07:35:00Z,u_0505_s02,ins_u_0505_007,{},v2.3.0-fixed +evt_003772,u_0020,return_visit,2026-06-24T08:20:00Z,u_0020_s02,ins_u_0020_006,{},v2.3.0-fixed +evt_003773,u_0020,feature_used,2026-06-24T08:25:00Z,u_0020_s02,ins_u_0020_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003774,u_0493,return_visit,2026-06-24T09:05:00Z,u_0493_s02,ins_u_0493_007,{},v2.3.0-fixed +evt_003775,u_0493,feature_used,2026-06-24T09:10:00Z,u_0493_s02,ins_u_0493_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003776,u_0777,return_visit,2026-06-24T11:06:00Z,u_0777_s02,ins_u_0777_007,{},v2.3.0-fixed +evt_003777,u_0777,feature_used,2026-06-24T11:11:00Z,u_0777_s02,ins_u_0777_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003778,u_0661,return_visit,2026-06-24T11:59:00Z,u_0661_s02,ins_u_0661_007,{},v2.3.0-fixed +evt_003779,u_0305,return_visit,2026-06-24T12:40:00Z,u_0305_s02,ins_u_0305_007,{},v2.3.0-fixed +evt_003780,u_0615,return_visit,2026-06-24T12:48:00Z,u_0615_s02,ins_u_0615_007,{},v2.3.0-fixed +evt_003781,u_0615,feature_used,2026-06-24T12:53:00Z,u_0615_s02,ins_u_0615_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003782,u_0127,return_visit,2026-06-24T17:43:00Z,u_0127_s02,ins_u_0127_005,{},v2.3.0-fixed +evt_003783,u_0127,feature_used,2026-06-24T17:48:00Z,u_0127_s02,ins_u_0127_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003784,u_0050,return_visit,2026-06-24T19:02:00Z,u_0050_s02,ins_u_0050_007,{},v2.3.0-fixed +evt_003785,u_0050,feature_used,2026-06-24T19:07:00Z,u_0050_s02,ins_u_0050_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003786,u_0053,return_visit,2026-06-24T21:35:00Z,u_0053_s02,ins_u_0053_008,{},v2.3.0-fixed +evt_003787,u_0053,feature_used,2026-06-24T21:40:00Z,u_0053_s02,ins_u_0053_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003788,u_0506,return_visit,2026-06-24T23:48:00Z,u_0506_s02,ins_u_0506_006,{},v2.3.0-fixed +evt_003789,u_0058,return_visit,2026-06-24T23:59:00Z,u_0058_s02,ins_u_0058_005,{},v2.3.0-fixed +evt_003790,u_0058,feature_used,2026-06-25T00:04:00Z,u_0058_s02,ins_u_0058_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003791,u_0742,return_visit,2026-06-25T00:59:00Z,u_0742_s02,ins_u_0742_008,{},v2.3.0-fixed +evt_003792,u_0449,return_visit,2026-06-25T02:10:00Z,u_0449_s02,ins_u_0449_008,{},v2.3.0-fixed +evt_003793,u_0449,feature_used,2026-06-25T02:15:00Z,u_0449_s02,ins_u_0449_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003794,u_0683,return_visit,2026-06-25T02:15:00Z,u_0683_s02,ins_u_0683_008,{},v2.3.0-fixed +evt_003795,u_0033,return_visit,2026-06-25T02:23:00Z,u_0033_s02,ins_u_0033_007,{},v2.3.0-fixed +evt_003796,u_0357,return_visit,2026-06-25T03:18:00Z,u_0357_s02,ins_u_0357_006,{},v2.3.0-fixed +evt_003797,u_0300,return_visit,2026-06-25T04:32:00Z,u_0300_s02,ins_u_0300_006,{},v2.3.0-fixed +evt_003798,u_0300,feature_used,2026-06-25T04:37:00Z,u_0300_s02,ins_u_0300_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003799,u_0458,return_visit,2026-06-25T04:41:00Z,u_0458_s02,ins_u_0458_006,{},v2.3.0-fixed +evt_003800,u_0458,feature_used,2026-06-25T04:46:00Z,u_0458_s02,ins_u_0458_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003801,u_0751,return_visit,2026-06-25T04:47:00Z,u_0751_s02,ins_u_0751_007,{},v2.3.0-fixed +evt_003802,u_0751,feature_used,2026-06-25T04:52:00Z,u_0751_s02,ins_u_0751_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003803,u_0479,return_visit,2026-06-25T04:53:00Z,u_0479_s02,ins_u_0479_006,{},v2.3.0-fixed +evt_003804,u_0353,return_visit,2026-06-25T05:12:00Z,u_0353_s02,ins_u_0353_007,{},v2.3.0-fixed +evt_003805,u_0353,feature_used,2026-06-25T05:17:00Z,u_0353_s02,ins_u_0353_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003806,u_0704,return_visit,2026-06-25T05:50:00Z,u_0704_s02,ins_u_0704_008,{},v2.3.0-fixed +evt_003807,u_0006,return_visit,2026-06-25T06:20:00Z,u_0006_s02,ins_u_0006_007,{},v2.3.0-fixed +evt_003808,u_0444,return_visit,2026-06-25T06:23:00Z,u_0444_s02,ins_u_0444_007,{},v2.3.0-fixed +evt_003809,u_0006,feature_used,2026-06-25T06:25:00Z,u_0006_s02,ins_u_0006_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003810,u_0525,return_visit,2026-06-25T06:25:00Z,u_0525_s02,ins_u_0525_007,{},v2.3.0-fixed +evt_003811,u_0525,feature_used,2026-06-25T06:30:00Z,u_0525_s02,ins_u_0525_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003812,u_0374,return_visit,2026-06-25T06:42:00Z,u_0374_s02,ins_u_0374_008,{},v2.3.0-fixed +evt_003813,u_0381,return_visit,2026-06-25T07:25:00Z,u_0381_s02,ins_u_0381_006,{},v2.3.0-fixed +evt_003814,u_0244,return_visit,2026-06-25T09:26:00Z,u_0244_s02,ins_u_0244_006,{},v2.3.0-fixed +evt_003815,u_0328,return_visit,2026-06-25T09:30:00Z,u_0328_s02,ins_u_0328_006,{},v2.3.0-fixed +evt_003816,u_0328,feature_used,2026-06-25T09:35:00Z,u_0328_s02,ins_u_0328_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003817,u_0096,return_visit,2026-06-25T09:58:00Z,u_0096_s02,ins_u_0096_006,{},v2.3.0-fixed +evt_003818,u_0432,return_visit,2026-06-25T10:49:00Z,u_0432_s02,ins_u_0432_007,{},v2.3.0-fixed +evt_003819,u_0783,return_visit,2026-06-25T11:52:00Z,u_0783_s02,ins_u_0783_006,{},v2.3.0-fixed +evt_003820,u_0783,feature_used,2026-06-25T11:57:00Z,u_0783_s02,ins_u_0783_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003821,u_0452,return_visit,2026-06-25T13:01:00Z,u_0452_s02,ins_u_0452_008,{},v2.3.0-fixed +evt_003822,u_0452,feature_used,2026-06-25T13:06:00Z,u_0452_s02,ins_u_0452_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003823,u_0100,return_visit,2026-06-25T19:11:00Z,u_0100_s02,ins_u_0100_006,{},v2.3.0-fixed +evt_003824,u_0100,feature_used,2026-06-25T19:16:00Z,u_0100_s02,ins_u_0100_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003825,u_0174,return_visit,2026-06-25T19:39:00Z,u_0174_s02,ins_u_0174_006,{},v2.3.0-fixed +evt_003826,u_0174,feature_used,2026-06-25T19:44:00Z,u_0174_s02,ins_u_0174_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003827,u_0027,return_visit,2026-06-26T01:23:00Z,u_0027_s02,ins_u_0027_007,{},v2.3.0-fixed +evt_003828,u_0336,return_visit,2026-06-26T02:05:00Z,u_0336_s02,ins_u_0336_006,{},v2.3.0-fixed +evt_003829,u_0559,return_visit,2026-06-26T02:27:00Z,u_0559_s02,ins_u_0559_007,{},v2.3.0-fixed +evt_003830,u_0559,feature_used,2026-06-26T02:32:00Z,u_0559_s02,ins_u_0559_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003831,u_0568,return_visit,2026-06-26T04:19:00Z,u_0568_s02,ins_u_0568_008,{},v2.3.0-fixed +evt_003832,u_0139,return_visit,2026-06-26T05:37:00Z,u_0139_s02,ins_u_0139_008,{},v2.3.0-fixed +evt_003833,u_0193,return_visit,2026-06-26T05:55:00Z,u_0193_s02,ins_u_0193_008,{},v2.3.0-fixed +evt_003834,u_0193,feature_used,2026-06-26T06:00:00Z,u_0193_s02,ins_u_0193_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003835,u_0281,return_visit,2026-06-26T06:54:00Z,u_0281_s02,ins_u_0281_006,{},v2.3.0-fixed +evt_003836,u_0281,feature_used,2026-06-26T06:59:00Z,u_0281_s02,ins_u_0281_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003837,u_0758,return_visit,2026-06-26T06:59:00Z,u_0758_s02,ins_u_0758_006,{},v2.3.0-fixed +evt_003838,u_0585,return_visit,2026-06-26T08:34:00Z,u_0585_s02,ins_u_0585_006,{},v2.3.0-fixed +evt_003839,u_0088,return_visit,2026-06-26T22:43:00Z,u_0088_s02,ins_u_0088_007,{},v2.3.0-fixed +evt_003840,u_0385,return_visit,2026-06-26T23:41:00Z,u_0385_s02,ins_u_0385_008,{},v2.3.0-fixed +evt_003841,u_0040,return_visit,2026-06-27T01:24:00Z,u_0040_s02,ins_u_0040_008,{},v2.3.0-fixed +evt_003842,u_0601,return_visit,2026-06-27T03:57:00Z,u_0601_s02,ins_u_0601_006,{},v2.3.0-fixed +evt_003843,u_0601,feature_used,2026-06-27T04:02:00Z,u_0601_s02,ins_u_0601_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003844,u_0386,return_visit,2026-06-27T04:20:00Z,u_0386_s02,ins_u_0386_008,{},v2.3.0-fixed +evt_003845,u_0135,return_visit,2026-06-27T04:23:00Z,u_0135_s02,ins_u_0135_007,{},v2.3.0-fixed +evt_003846,u_0386,feature_used,2026-06-27T04:25:00Z,u_0386_s02,ins_u_0386_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003847,u_0182,return_visit,2026-06-27T04:30:00Z,u_0182_s02,ins_u_0182_007,{},v2.3.0-fixed +evt_003848,u_0182,feature_used,2026-06-27T04:35:00Z,u_0182_s02,ins_u_0182_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003849,u_0204,return_visit,2026-06-27T04:50:00Z,u_0204_s02,ins_u_0204_006,{},v2.3.0-fixed +evt_003850,u_0391,return_visit,2026-06-27T05:00:00Z,u_0391_s02,ins_u_0391_007,{},v2.3.0-fixed +evt_003851,u_0440,return_visit,2026-06-27T05:21:00Z,u_0440_s02,ins_u_0440_005,{},v2.3.0-fixed +evt_003852,u_0440,feature_used,2026-06-27T05:26:00Z,u_0440_s02,ins_u_0440_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003853,u_0023,return_visit,2026-06-27T05:40:00Z,u_0023_s02,ins_u_0023_007,{},v2.3.0-fixed +evt_003854,u_0795,return_visit,2026-06-27T06:36:00Z,u_0795_s02,ins_u_0795_008,{},v2.3.0-fixed +evt_003855,u_0795,feature_used,2026-06-27T06:41:00Z,u_0795_s02,ins_u_0795_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003856,u_0110,return_visit,2026-06-27T08:26:00Z,u_0110_s02,ins_u_0110_006,{},v2.3.0-fixed +evt_003857,u_0451,return_visit,2026-06-27T08:30:00Z,u_0451_s02,ins_u_0451_007,{},v2.3.0-fixed +evt_003858,u_0451,feature_used,2026-06-27T08:35:00Z,u_0451_s02,ins_u_0451_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003859,u_0129,return_visit,2026-06-27T08:58:00Z,u_0129_s02,ins_u_0129_009,{},v2.3.0-fixed +evt_003860,u_0129,feature_used,2026-06-27T09:03:00Z,u_0129_s02,ins_u_0129_010,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003861,u_0111,return_visit,2026-06-27T09:32:00Z,u_0111_s02,ins_u_0111_006,{},v2.3.0-fixed +evt_003862,u_0111,feature_used,2026-06-27T09:37:00Z,u_0111_s02,ins_u_0111_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003863,u_0502,return_visit,2026-06-27T09:43:00Z,u_0502_s02,ins_u_0502_007,{},v2.3.0-fixed +evt_003864,u_0306,return_visit,2026-06-27T21:28:00Z,u_0306_s02,ins_u_0306_008,{},v2.3.0-fixed +evt_003865,u_0306,feature_used,2026-06-27T21:33:00Z,u_0306_s02,ins_u_0306_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003866,u_0521,return_visit,2026-06-27T22:48:00Z,u_0521_s02,ins_u_0521_007,{},v2.3.0-fixed +evt_003867,u_0156,return_visit,2026-06-27T23:23:00Z,u_0156_s02,ins_u_0156_007,{},v2.3.0-fixed +evt_003868,u_0677,return_visit,2026-06-27T23:52:00Z,u_0677_s02,ins_u_0677_006,{},v2.3.0-fixed +evt_003869,u_0677,feature_used,2026-06-27T23:57:00Z,u_0677_s02,ins_u_0677_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003870,u_0338,return_visit,2026-06-28T00:39:00Z,u_0338_s02,ins_u_0338_008,{},v2.3.0-fixed +evt_003871,u_0604,return_visit,2026-06-28T01:10:00Z,u_0604_s02,ins_u_0604_007,{},v2.3.0-fixed +evt_003872,u_0245,return_visit,2026-06-28T01:22:00Z,u_0245_s02,ins_u_0245_005,{},v2.3.0-fixed +evt_003873,u_0240,return_visit,2026-06-28T02:20:00Z,u_0240_s02,ins_u_0240_006,{},v2.3.0-fixed +evt_003874,u_0240,feature_used,2026-06-28T02:25:00Z,u_0240_s02,ins_u_0240_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003875,u_0003,return_visit,2026-06-28T03:40:00Z,u_0003_s02,ins_u_0003_006,{},v2.3.0-fixed +evt_003876,u_0003,feature_used,2026-06-28T03:45:00Z,u_0003_s02,ins_u_0003_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003877,u_0459,return_visit,2026-06-28T04:44:00Z,u_0459_s02,ins_u_0459_007,{},v2.3.0-fixed +evt_003878,u_0459,feature_used,2026-06-28T04:49:00Z,u_0459_s02,ins_u_0459_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003879,u_0234,return_visit,2026-06-28T07:14:00Z,u_0234_s02,ins_u_0234_006,{},v2.3.0-fixed +evt_003880,u_0263,return_visit,2026-06-28T08:01:00Z,u_0263_s02,ins_u_0263_007,{},v2.3.0-fixed +evt_003881,u_0263,feature_used,2026-06-28T08:06:00Z,u_0263_s02,ins_u_0263_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003882,u_0178,return_visit,2026-06-28T08:50:00Z,u_0178_s02,ins_u_0178_008,{},v2.3.0-fixed +evt_003883,u_0178,feature_used,2026-06-28T08:55:00Z,u_0178_s02,ins_u_0178_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003884,u_0176,return_visit,2026-06-28T09:00:00Z,u_0176_s02,ins_u_0176_006,{},v2.3.0-fixed +evt_003885,u_0404,return_visit,2026-06-28T11:04:00Z,u_0404_s02,ins_u_0404_006,{},v2.3.0-fixed +evt_003886,u_0404,feature_used,2026-06-28T11:09:00Z,u_0404_s02,ins_u_0404_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003887,u_0280,return_visit,2026-06-28T11:55:00Z,u_0280_s02,ins_u_0280_007,{},v2.3.0-fixed +evt_003888,u_0280,feature_used,2026-06-28T12:00:00Z,u_0280_s02,ins_u_0280_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003889,u_0598,return_visit,2026-06-28T13:18:00Z,u_0598_s02,ins_u_0598_007,{},v2.3.0-fixed +evt_003890,u_0598,feature_used,2026-06-28T13:23:00Z,u_0598_s02,ins_u_0598_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003891,u_0155,return_visit,2026-06-28T13:30:00Z,u_0155_s02,ins_u_0155_005,{},v2.3.0-fixed +evt_003892,u_0155,feature_used,2026-06-28T13:35:00Z,u_0155_s02,ins_u_0155_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003893,u_0509,return_visit,2026-06-28T19:17:00Z,u_0509_s02,ins_u_0509_007,{},v2.3.0-fixed +evt_003894,u_0509,feature_used,2026-06-28T19:22:00Z,u_0509_s02,ins_u_0509_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003895,u_0116,return_visit,2026-06-28T22:28:00Z,u_0116_s02,ins_u_0116_008,{},v2.3.0-fixed +evt_003896,u_0116,feature_used,2026-06-28T22:33:00Z,u_0116_s02,ins_u_0116_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003897,u_0709,return_visit,2026-06-28T23:30:00Z,u_0709_s02,ins_u_0709_008,{},v2.3.0-fixed +evt_003898,u_0640,return_visit,2026-06-29T01:12:00Z,u_0640_s02,ins_u_0640_006,{},v2.3.0-fixed +evt_003899,u_0640,feature_used,2026-06-29T01:17:00Z,u_0640_s02,ins_u_0640_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003900,u_0666,return_visit,2026-06-29T02:18:00Z,u_0666_s02,ins_u_0666_006,{},v2.3.0-fixed +evt_003901,u_0666,feature_used,2026-06-29T02:23:00Z,u_0666_s02,ins_u_0666_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003902,u_0340,return_visit,2026-06-29T02:53:00Z,u_0340_s02,ins_u_0340_006,{},v2.3.0-fixed +evt_003903,u_0693,return_visit,2026-06-29T02:55:00Z,u_0693_s02,ins_u_0693_006,{},v2.3.0-fixed +evt_003904,u_0340,feature_used,2026-06-29T02:58:00Z,u_0340_s02,ins_u_0340_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003905,u_0693,feature_used,2026-06-29T03:00:00Z,u_0693_s02,ins_u_0693_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003906,u_0565,return_visit,2026-06-29T03:19:00Z,u_0565_s02,ins_u_0565_006,{},v2.3.0-fixed +evt_003907,u_0565,feature_used,2026-06-29T03:24:00Z,u_0565_s02,ins_u_0565_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003908,u_0190,return_visit,2026-06-29T20:20:00Z,u_0190_s03,ins_u_0190_006,{},v2.3.0-fixed +evt_003909,u_0190,feature_used,2026-06-29T20:24:00Z,u_0190_s03,ins_u_0190_007,"{""feature"": ""board""}",v2.3.0-fixed +evt_003910,u_0616,return_visit,2026-06-29T23:21:00Z,u_0616_s02,ins_u_0616_008,{},v2.3.0-fixed +evt_003911,u_0616,feature_used,2026-06-29T23:26:00Z,u_0616_s02,ins_u_0616_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003912,u_0081,return_visit,2026-06-30T00:02:00Z,u_0081_s02,ins_u_0081_006,{},v2.3.0-fixed +evt_003913,u_0794,return_visit,2026-06-30T00:32:00Z,u_0794_s02,ins_u_0794_005,{},v2.3.0-fixed +evt_003914,u_0448,return_visit,2026-06-30T00:34:00Z,u_0448_s03,ins_u_0448_010,{},v2.3.0-fixed +evt_003915,u_0794,feature_used,2026-06-30T00:37:00Z,u_0794_s02,ins_u_0794_006,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003916,u_0448,feature_used,2026-06-30T00:38:00Z,u_0448_s03,ins_u_0448_011,"{""feature"": ""board""}",v2.3.0-fixed +evt_003917,u_0326,return_visit,2026-06-30T06:48:00Z,u_0326_s02,ins_u_0326_008,{},v2.3.0-fixed +evt_003918,u_0326,feature_used,2026-06-30T06:53:00Z,u_0326_s02,ins_u_0326_009,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003919,u_0067,return_visit,2026-06-30T08:29:00Z,u_0067_s02,ins_u_0067_007,{},v2.3.0-fixed +evt_003920,u_0067,feature_used,2026-06-30T08:34:00Z,u_0067_s02,ins_u_0067_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003921,u_0101,return_visit,2026-06-30T09:25:00Z,u_0101_s02,ins_u_0101_008,{},v2.3.0-fixed +evt_003922,u_0546,return_visit,2026-06-30T10:45:00Z,u_0546_s02,ins_u_0546_008,{},v2.3.0-fixed +evt_003923,u_0507,return_visit,2026-06-30T10:52:00Z,u_0507_s02,ins_u_0507_006,{},v2.3.0-fixed +evt_003924,u_0507,feature_used,2026-06-30T10:57:00Z,u_0507_s02,ins_u_0507_007,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003925,u_0141,return_visit,2026-06-30T13:30:00Z,u_0141_s02,ins_u_0141_007,{},v2.3.0-fixed +evt_003926,u_0406,return_visit,2026-07-01T00:07:00Z,u_0406_s02,ins_u_0406_006,{},v2.3.0-fixed +evt_003927,u_0403,return_visit,2026-07-01T01:37:00Z,u_0403_s02,ins_u_0403_006,{},v2.3.0-fixed +evt_003928,u_0727,return_visit,2026-07-01T02:57:00Z,u_0727_s02,ins_u_0727_007,{},v2.3.0-fixed +evt_003929,u_0276,return_visit,2026-07-01T03:01:00Z,u_0276_s02,ins_u_0276_005,{},v2.3.0-fixed +evt_003930,u_0727,feature_used,2026-07-01T03:02:00Z,u_0727_s02,ins_u_0727_008,"{""feature"": ""insights""}",v2.3.0-fixed +evt_003931,u_0490,return_visit,2026-07-01T07:55:00Z,u_0490_s02,ins_u_0490_006,{},v2.3.0-fixed +evt_003932,u_0439,return_visit,2026-07-02T12:03:00Z,u_0439_s03,ins_u_0439_008,{},v2.3.0-fixed +evt_003933,u_0439,feature_used,2026-07-02T12:07:00Z,u_0439_s03,ins_u_0439_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003934,u_0174,return_visit,2026-07-02T19:39:00Z,u_0174_s03,ins_u_0174_008,{},v2.3.0-fixed +evt_003935,u_0174,feature_used,2026-07-02T19:43:00Z,u_0174_s03,ins_u_0174_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003936,u_0153,return_visit,2026-07-03T00:17:00Z,u_0153_s03,ins_u_0153_007,{},v2.3.0-fixed +evt_003937,u_0153,feature_used,2026-07-03T00:21:00Z,u_0153_s03,ins_u_0153_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_003938,u_0248,return_visit,2026-07-03T00:40:00Z,u_0248_s03,ins_u_0248_009,{},v2.3.0-fixed +evt_003939,u_0248,feature_used,2026-07-03T00:44:00Z,u_0248_s03,ins_u_0248_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_003940,u_0595,return_visit,2026-07-03T00:53:00Z,u_0595_s03,ins_u_0595_007,{},v2.3.0-fixed +evt_003941,u_0595,feature_used,2026-07-03T00:57:00Z,u_0595_s03,ins_u_0595_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_003942,u_0122,return_visit,2026-07-03T01:27:00Z,u_0122_s03,ins_u_0122_008,{},v2.3.0-fixed +evt_003943,u_0122,feature_used,2026-07-03T01:31:00Z,u_0122_s03,ins_u_0122_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003944,u_0608,return_visit,2026-07-03T03:36:00Z,u_0608_s03,ins_u_0608_007,{},v2.3.0-fixed +evt_003945,u_0608,feature_used,2026-07-03T03:40:00Z,u_0608_s03,ins_u_0608_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_003946,u_0357,return_visit,2026-07-03T04:18:00Z,u_0357_s03,ins_u_0357_007,{},v2.3.0-fixed +evt_003947,u_0357,feature_used,2026-07-03T04:22:00Z,u_0357_s03,ins_u_0357_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_003948,u_0711,return_visit,2026-07-03T13:05:00Z,u_0711_s03,ins_u_0711_009,{},v2.3.0-fixed +evt_003949,u_0711,feature_used,2026-07-03T13:09:00Z,u_0711_s03,ins_u_0711_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_003950,u_0018,return_visit,2026-07-03T22:03:00Z,u_0018_s03,ins_u_0018_011,{},v2.3.0-fixed +evt_003951,u_0018,feature_used,2026-07-03T22:07:00Z,u_0018_s03,ins_u_0018_012,"{""feature"": ""board""}",v2.3.0-fixed +evt_003952,u_0222,return_visit,2026-07-03T23:23:00Z,u_0222_s03,ins_u_0222_008,{},v2.3.0-fixed +evt_003953,u_0222,feature_used,2026-07-03T23:27:00Z,u_0222_s03,ins_u_0222_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003954,u_0513,return_visit,2026-07-03T23:39:00Z,u_0513_s03,ins_u_0513_010,{},v2.3.0-fixed +evt_003955,u_0513,feature_used,2026-07-03T23:43:00Z,u_0513_s03,ins_u_0513_011,"{""feature"": ""board""}",v2.3.0-fixed +evt_003956,u_0265,return_visit,2026-07-03T23:46:00Z,u_0265_s03,ins_u_0265_010,{},v2.3.0-fixed +evt_003957,u_0265,feature_used,2026-07-03T23:50:00Z,u_0265_s03,ins_u_0265_011,"{""feature"": ""board""}",v2.3.0-fixed +evt_003958,u_0139,return_visit,2026-07-04T01:37:00Z,u_0139_s03,ins_u_0139_009,{},v2.3.0-fixed +evt_003959,u_0139,feature_used,2026-07-04T01:41:00Z,u_0139_s03,ins_u_0139_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_003960,u_0024,return_visit,2026-07-04T02:40:00Z,u_0024_s03,ins_u_0024_009,{},v2.3.0-fixed +evt_003961,u_0024,feature_used,2026-07-04T02:44:00Z,u_0024_s03,ins_u_0024_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_003962,u_0004,return_visit,2026-07-04T06:09:00Z,u_0004_s03,ins_u_0004_008,{},v2.3.0-fixed +evt_003963,u_0004,feature_used,2026-07-04T06:13:00Z,u_0004_s03,ins_u_0004_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003964,u_0680,return_visit,2026-07-04T06:25:00Z,u_0680_s03,ins_u_0680_008,{},v2.3.0-fixed +evt_003965,u_0680,feature_used,2026-07-04T06:29:00Z,u_0680_s03,ins_u_0680_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003966,u_0170,return_visit,2026-07-04T06:42:00Z,u_0170_s03,ins_u_0170_007,{},v2.3.0-fixed +evt_003967,u_0170,feature_used,2026-07-04T06:46:00Z,u_0170_s03,ins_u_0170_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_003968,u_0433,return_visit,2026-07-04T11:01:00Z,u_0433_s03,ins_u_0433_007,{},v2.3.0-fixed +evt_003969,u_0433,feature_used,2026-07-04T11:05:00Z,u_0433_s03,ins_u_0433_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_003970,u_0526,return_visit,2026-07-04T21:49:00Z,u_0526_s03,ins_u_0526_009,{},v2.3.0-fixed +evt_003971,u_0526,feature_used,2026-07-04T21:53:00Z,u_0526_s03,ins_u_0526_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_003972,u_0046,return_visit,2026-07-05T06:44:00Z,u_0046_s03,ins_u_0046_007,{},v2.3.0-fixed +evt_003973,u_0046,feature_used,2026-07-05T06:48:00Z,u_0046_s03,ins_u_0046_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_003974,u_0182,return_visit,2026-07-05T10:30:00Z,u_0182_s03,ins_u_0182_009,{},v2.3.0-fixed +evt_003975,u_0182,feature_used,2026-07-05T10:34:00Z,u_0182_s03,ins_u_0182_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_003976,u_0100,return_visit,2026-07-05T18:11:00Z,u_0100_s03,ins_u_0100_008,{},v2.3.0-fixed +evt_003977,u_0100,feature_used,2026-07-05T18:15:00Z,u_0100_s03,ins_u_0100_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003978,u_0639,return_visit,2026-07-05T20:55:00Z,u_0639_s03,ins_u_0639_008,{},v2.3.0-fixed +evt_003979,u_0639,feature_used,2026-07-05T20:59:00Z,u_0639_s03,ins_u_0639_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003980,u_0446,return_visit,2026-07-05T21:54:00Z,u_0446_s03,ins_u_0446_008,{},v2.3.0-fixed +evt_003981,u_0446,feature_used,2026-07-05T21:58:00Z,u_0446_s03,ins_u_0446_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003982,u_0161,return_visit,2026-07-06T01:41:00Z,u_0161_s03,ins_u_0161_007,{},v2.3.0-fixed +evt_003983,u_0161,feature_used,2026-07-06T01:45:00Z,u_0161_s03,ins_u_0161_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_003984,u_0274,return_visit,2026-07-06T03:23:00Z,u_0274_s03,ins_u_0274_008,{},v2.3.0-fixed +evt_003985,u_0274,feature_used,2026-07-06T03:27:00Z,u_0274_s03,ins_u_0274_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003986,u_0035,return_visit,2026-07-06T04:27:00Z,u_0035_s03,ins_u_0035_008,{},v2.3.0-fixed +evt_003987,u_0035,feature_used,2026-07-06T04:31:00Z,u_0035_s03,ins_u_0035_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003988,u_0008,return_visit,2026-07-06T05:31:00Z,u_0008_s03,ins_u_0008_010,{},v2.3.0-fixed +evt_003989,u_0008,feature_used,2026-07-06T05:35:00Z,u_0008_s03,ins_u_0008_011,"{""feature"": ""board""}",v2.3.0-fixed +evt_003990,u_0180,return_visit,2026-07-06T06:36:00Z,u_0180_s03,ins_u_0180_008,{},v2.3.0-fixed +evt_003991,u_0180,feature_used,2026-07-06T06:40:00Z,u_0180_s03,ins_u_0180_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_003992,u_0568,return_visit,2026-07-06T07:19:00Z,u_0568_s03,ins_u_0568_009,{},v2.3.0-fixed +evt_003993,u_0568,feature_used,2026-07-06T07:23:00Z,u_0568_s03,ins_u_0568_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_003994,u_0333,return_visit,2026-07-06T08:41:00Z,u_0333_s03,ins_u_0333_009,{},v2.3.0-fixed +evt_003995,u_0333,feature_used,2026-07-06T08:45:00Z,u_0333_s03,ins_u_0333_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_003996,u_0683,return_visit,2026-07-06T09:15:00Z,u_0683_s03,ins_u_0683_009,{},v2.3.0-fixed +evt_003997,u_0683,feature_used,2026-07-06T09:19:00Z,u_0683_s03,ins_u_0683_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_003998,u_0386,return_visit,2026-07-06T09:20:00Z,u_0386_s03,ins_u_0386_010,{},v2.3.0-fixed +evt_003999,u_0386,feature_used,2026-07-06T09:24:00Z,u_0386_s03,ins_u_0386_011,"{""feature"": ""board""}",v2.3.0-fixed +evt_004000,u_0394,return_visit,2026-07-06T10:04:00Z,u_0394_s03,ins_u_0394_006,{},v2.3.0-fixed +evt_004001,u_0394,feature_used,2026-07-06T10:08:00Z,u_0394_s03,ins_u_0394_007,"{""feature"": ""board""}",v2.3.0-fixed +evt_004002,u_0777,return_visit,2026-07-06T11:06:00Z,u_0777_s03,ins_u_0777_009,{},v2.3.0-fixed +evt_004003,u_0777,feature_used,2026-07-06T11:10:00Z,u_0777_s03,ins_u_0777_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_004004,u_0598,return_visit,2026-07-06T11:18:00Z,u_0598_s03,ins_u_0598_009,{},v2.3.0-fixed +evt_004005,u_0598,feature_used,2026-07-06T11:22:00Z,u_0598_s03,ins_u_0598_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_004006,u_0542,return_visit,2026-07-07T00:53:00Z,u_0542_s03,ins_u_0542_009,{},v2.3.0-fixed +evt_004007,u_0542,feature_used,2026-07-07T00:57:00Z,u_0542_s03,ins_u_0542_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_004008,u_0753,return_visit,2026-07-07T02:24:00Z,u_0753_s03,ins_u_0753_008,{},v2.3.0-fixed +evt_004009,u_0753,feature_used,2026-07-07T02:28:00Z,u_0753_s03,ins_u_0753_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004010,u_0716,return_visit,2026-07-07T03:40:00Z,u_0716_s03,ins_u_0716_008,{},v2.3.0-fixed +evt_004011,u_0716,feature_used,2026-07-07T03:44:00Z,u_0716_s03,ins_u_0716_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004012,u_0593,return_visit,2026-07-07T06:03:00Z,u_0593_s03,ins_u_0593_008,{},v2.3.0-fixed +evt_004013,u_0593,feature_used,2026-07-07T06:07:00Z,u_0593_s03,ins_u_0593_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004014,u_0091,return_visit,2026-07-07T08:40:00Z,u_0091_s03,ins_u_0091_008,{},v2.3.0-fixed +evt_004015,u_0430,return_visit,2026-07-07T08:40:00Z,u_0430_s03,ins_u_0430_006,{},v2.3.0-fixed +evt_004016,u_0091,feature_used,2026-07-07T08:44:00Z,u_0091_s03,ins_u_0091_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004017,u_0430,feature_used,2026-07-07T08:44:00Z,u_0430_s03,ins_u_0430_007,"{""feature"": ""board""}",v2.3.0-fixed +evt_004018,u_0125,return_visit,2026-07-08T00:06:00Z,u_0125_s03,ins_u_0125_007,{},v2.3.0-fixed +evt_004019,u_0125,feature_used,2026-07-08T00:10:00Z,u_0125_s03,ins_u_0125_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_004020,u_0113,return_visit,2026-07-08T01:24:00Z,u_0113_s03,ins_u_0113_008,{},v2.3.0-fixed +evt_004021,u_0113,feature_used,2026-07-08T01:28:00Z,u_0113_s03,ins_u_0113_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004022,u_0451,return_visit,2026-07-08T01:30:00Z,u_0451_s03,ins_u_0451_009,{},v2.3.0-fixed +evt_004023,u_0451,feature_used,2026-07-08T01:34:00Z,u_0451_s03,ins_u_0451_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_004024,u_0178,return_visit,2026-07-08T03:50:00Z,u_0178_s03,ins_u_0178_010,{},v2.3.0-fixed +evt_004025,u_0178,feature_used,2026-07-08T03:54:00Z,u_0178_s03,ins_u_0178_011,"{""feature"": ""board""}",v2.3.0-fixed +evt_004026,u_0034,return_visit,2026-07-08T04:31:00Z,u_0034_s03,ins_u_0034_007,{},v2.3.0-fixed +evt_004027,u_0034,feature_used,2026-07-08T04:35:00Z,u_0034_s03,ins_u_0034_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_004028,u_0661,return_visit,2026-07-08T06:59:00Z,u_0661_s03,ins_u_0661_008,{},v2.3.0-fixed +evt_004029,u_0661,feature_used,2026-07-08T07:03:00Z,u_0661_s03,ins_u_0661_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004030,u_0063,return_visit,2026-07-08T20:48:00Z,u_0063_s03,ins_u_0063_009,{},v2.3.0-fixed +evt_004031,u_0063,feature_used,2026-07-08T20:52:00Z,u_0063_s03,ins_u_0063_010,"{""feature"": ""board""}",v2.3.0-fixed +evt_004032,u_0306,return_visit,2026-07-08T21:28:00Z,u_0306_s03,ins_u_0306_010,{},v2.3.0-fixed +evt_004033,u_0306,feature_used,2026-07-08T21:32:00Z,u_0306_s03,ins_u_0306_011,"{""feature"": ""board""}",v2.3.0-fixed +evt_004034,u_0135,return_visit,2026-07-09T00:23:00Z,u_0135_s03,ins_u_0135_008,{},v2.3.0-fixed +evt_004035,u_0135,feature_used,2026-07-09T00:27:00Z,u_0135_s03,ins_u_0135_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004036,u_0010,return_visit,2026-07-09T01:08:00Z,u_0010_s03,ins_u_0010_008,{},v2.3.0-fixed +evt_004037,u_0010,feature_used,2026-07-09T01:12:00Z,u_0010_s03,ins_u_0010_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004038,u_0795,return_visit,2026-07-09T03:36:00Z,u_0795_s03,ins_u_0795_010,{},v2.3.0-fixed +evt_004039,u_0795,feature_used,2026-07-09T03:40:00Z,u_0795_s03,ins_u_0795_011,"{""feature"": ""board""}",v2.3.0-fixed +evt_004040,u_0591,return_visit,2026-07-09T05:00:00Z,u_0591_s03,ins_u_0591_007,{},v2.3.0-fixed +evt_004041,u_0591,feature_used,2026-07-09T05:04:00Z,u_0591_s03,ins_u_0591_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_004042,u_0302,return_visit,2026-07-09T06:28:00Z,u_0302_s03,ins_u_0302_006,{},v2.3.0-fixed +evt_004043,u_0302,feature_used,2026-07-09T06:32:00Z,u_0302_s03,ins_u_0302_007,"{""feature"": ""board""}",v2.3.0-fixed +evt_004044,u_0657,return_visit,2026-07-09T09:45:00Z,u_0657_s03,ins_u_0657_007,{},v2.3.0-fixed +evt_004045,u_0657,feature_used,2026-07-09T09:49:00Z,u_0657_s03,ins_u_0657_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_004046,u_0088,return_visit,2026-07-09T20:43:00Z,u_0088_s03,ins_u_0088_008,{},v2.3.0-fixed +evt_004047,u_0088,feature_used,2026-07-09T20:47:00Z,u_0088_s03,ins_u_0088_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004048,u_0511,return_visit,2026-07-09T21:18:00Z,u_0511_s03,ins_u_0511_008,{},v2.3.0-fixed +evt_004049,u_0511,feature_used,2026-07-09T21:22:00Z,u_0511_s03,ins_u_0511_009,"{""feature"": ""board""}",v2.3.0-fixed +evt_004050,u_0406,return_visit,2026-07-10T01:07:00Z,u_0406_s03,ins_u_0406_007,{},v2.3.0-fixed +evt_004051,u_0406,feature_used,2026-07-10T01:11:00Z,u_0406_s03,ins_u_0406_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_004052,u_0393,return_visit,2026-07-10T11:11:00Z,u_0393_s03,ins_u_0393_007,{},v2.3.0-fixed +evt_004053,u_0393,feature_used,2026-07-10T11:15:00Z,u_0393_s03,ins_u_0393_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_004054,u_0252,return_visit,2026-07-11T01:09:00Z,u_0252_s03,ins_u_0252_007,{},v2.3.0-fixed +evt_004055,u_0252,feature_used,2026-07-11T01:13:00Z,u_0252_s03,ins_u_0252_008,"{""feature"": ""board""}",v2.3.0-fixed +evt_004056,u_0326,return_visit,2026-07-11T01:48:00Z,u_0326_s03,ins_u_0326_010,{},v2.3.0-fixed +evt_004057,u_0326,feature_used,2026-07-11T01:52:00Z,u_0326_s03,ins_u_0326_011,"{""feature"": ""board""}",v2.3.0-fixed +evt_004058,u_0280,return_visit,2026-07-11T10:55:00Z,u_0280_s03,ins_u_0280_009,{},v2.3.0-fixed +evt_004059,u_0280,feature_used,2026-07-11T10:59:00Z,u_0280_s03,ins_u_0280_010,"{""feature"": ""board""}",v2.3.0-fixed diff --git a/data/seed/releases/v2.3.0-fixed/manifest.json b/data/seed/releases/v2.3.0-fixed/manifest.json new file mode 100644 index 0000000..1ba3f93 --- /dev/null +++ b/data/seed/releases/v2.3.0-fixed/manifest.json @@ -0,0 +1,9 @@ +{ + "ended_at": "2026-06-21T23:59:59Z", + "events": 4059, + "experiment": false, + "generator_seed": 2401, + "release": "v2.3.0-fixed", + "started_at": "2026-06-15T00:00:00Z", + "users": 800 +} diff --git a/docs/DEPLOYMENT.md b/docs/DEPLOYMENT.md index 67671c8..affba78 100644 --- a/docs/DEPLOYMENT.md +++ b/docs/DEPLOYMENT.md @@ -8,6 +8,9 @@ GitHub Pages serves the static Next export from branch `gh-pages` with `basePath ### Rebuild Pages payload ```bash +# 1) regenerate the release-intelligence snapshot from backend services +python scripts/generate_release_snapshot.py + cd apps/web set GITHUB_PAGES=true # Windows PowerShell: $env:GITHUB_PAGES="true" npm run build diff --git a/docs/IMPLEMENTATION_BASELINE.md b/docs/IMPLEMENTATION_BASELINE.md new file mode 100644 index 0000000..6210b69 --- /dev/null +++ b/docs/IMPLEMENTATION_BASELINE.md @@ -0,0 +1,75 @@ +# Implementation Baseline — Release Intelligence + +> Data: 2026-08-22 · Branch base: `main @ 5f8dd3c` (merge do PR #1 `chore/portfolio-quality-pass`) +> Context pack: `PROJECT_CONTEXT_PACK.zip` (HEAD observado na coleta: `e814b9d`) + +## 1. Arquitetura atual (verificada no código, não no pack) + +```text +data/seed/events_demo.csv (~970 eventos sintéticos; colunas: + event_id,user_id,event_name,ts,session_id,properties) + │ + ▼ +apps/api/app/services/analytics.py (loader com lru_cache, funil aninhado + │ unique-user, cohorts semanais W0–W4, + │ journey graph NetworkX, segments, + │ friction, opportunity memo) + ▼ +apps/api/app/api/*.py → FastAPI + schemas Pydantic (app/models/schemas.py) + │ + ├─► apps/web/lib/demo-snapshot.json (snapshot estático, lab.ts) + │ └─► Next.js App Router (page.tsx, Recharts) + └─► CI: .github/workflows/ci.yml (pytest+ruff / lint+typecheck+build) + +Deploy: GitHub Pages (branch gh-pages, legacy) + Vercel-ready web app. +``` + +## 2. O que será reutilizado (reuse-first) + +| Ativo | Uso no Release Intelligence | +|---|---| +| `analytics.py::_events()` | Padrão de loader estendido para fixtures por release | +| Funil nested-unique-users | Método canônico reusado em `release_compare.py` (raw vs trusted) | +| Journey graph (Counter de transições por sessão) | Base para `journey_diff.py` | +| `models/schemas.py` (Pydantic v2) | Padrão para `schemas/release.py` | +| `tests/test_api.py` (TestClient) | Padrão para novos testes | +| Componentes web (`KpiCard`, `FunnelChart`, `CohortMatrix`) | Reuso nas telas de release | +| CI existente (2 jobs) | Estendido com golden scenarios + secret scan | + +## 3. O que será criado (não existe em nenhum estado do repo) + +- `data/contracts/events.yml` — contratos versionados de tracking +- `scripts/generate_release_fixture.py` — fixtures determinísticas por release +- `data/seed/releases/` — v2.2.0-healthy, v2.3.0-buggy, v2.3.0-fixed +- `apps/api/app/services/instrumentation.py` — validador de instrumentação +- `apps/api/app/services/release_compare.py` — comparação raw vs trusted +- `apps/api/app/services/journey_diff.py` — diff de grafos de jornada +- `apps/api/app/schemas/release.py` — modelos Pydantic de release +- `apps/api/tests/test_instrumentation.py`, `test_release_compare.py` +- `apps/web/app/releases/` + `apps/web/components/release/` +- `apps/web/public/data/release-intelligence.json` +- `docs/RELEASE_INTELLIGENCE_METHOD.md` + +## 4. Divergências repo vs PROJECT_CONTEXT_PACK + +1. **Colunas ausentes:** o CSV atual não tem `release` nem `insert_id`. O gerador novo emite essas colunas; o loader legado permanece intacto (compatibilidade). +2. **Pack interno inconsistente:** Task 6 ("Uncertainty") aponta `journey_diff.py` como arquivo primário e Task 7 aponta `schemas/release.py`. Resolução: ICs (Wilson) vivem em `release_compare.py`; diff de grafos em `journey_diff.py`. Contratos semânticos do design spec preservados. +3. **CI já existe** no pós-merge (o pack presumia ausência) → estender, não criar. +4. **README do main citava DuckDB** sem dependência real em `requirements.txt` — claim falso removido durante a resolução do merge do PR #1. + +## 5. Riscos + +| Nível | Risco | Mitigação | +|---|---|---| +| P0 | Golden scenario mal calibrado (buggy release não detectada) | Fixtures com counts esperados asseridos byte-a-byte + mutation sanity | +| P0 | Claim causal indevido em UI/docs | Flag `experiment:false`; testes bloqueiam linguagem causal | +| P1 | Snapshot estático divergir do backend | JSON gerado pelos mesmos services do backend (fonte única) | +| P1 | Regressão no pipeline legado ao tocar loader | Loader novo isolado; suite existente deve continuar verde | +| P2 | Pages desatualizado após merge | Script de regeração documentado + smoke pós-merge | + +## 6. Trabalho prévio recuperado + +PR #1 (`chore/portfolio-quality-pass`) continha CI, ruff.toml, schemas Pydantic, +componentes web e docs de arquitetura — **mergeado em `5f8dd3c`** após resolução +de conflito de README (mantido template bilíngue PT-BR/EN do main + conteúdo do PR). +Nenhum trabalho foi descartado. diff --git a/docs/RELEASE_INTELLIGENCE_METHOD.md b/docs/RELEASE_INTELLIGENCE_METHOD.md new file mode 100644 index 0000000..dcc8a48 --- /dev/null +++ b/docs/RELEASE_INTELLIGENCE_METHOD.md @@ -0,0 +1,73 @@ +# Release Intelligence — Method + +> How BehaviorGraph decides whether a release actually improved behavior or just broke instrumentation. + +## Problem + +After a release, dashboards compare funnels and cohorts across versions. If a client bug makes an event fire early (or fire twice), conversion **looks** different and teams ship wrong conclusions. Dashboards count events; they rarely validate what events mean first. + +## Approach: contracts gate comparisons + +Every comparison runs against a versioned tracking contract (`data/contracts/events.yml`). The contract declares, per event: + +| Field | Meaning | +|---|---| +| `owner` | Accountable team | +| `required_properties` | Props that must be present on every occurrence | +| `must_follow` | Events that must occur earlier in the same session | +| `max_per_user_session` | Cardinality ceiling per session | +| `introduced_in` | Release that introduced the event | + +## Violation codes + +| Code | Severity | Meaning | +|---|---|---| +| `missing_required_property` | block | Occurrence lacks a required prop | +| `order_violation` | block | `must_follow` prerequisite not seen earlier in-session | +| `duplicate_insert_id` | block | Client retry reused an insert_id (dedup keeps first) | +| `cardinality_breach` | block | More than `max_per_user_session` occurrences in one session | +| `event_drift` | warning | Per-user rate >1.25× baseline release (heuristic) | +| `unknown_event` | warning | Event not declared in the contract — reported, never silently dropped | + +**Trusted view** = raw stream minus rows failing any block-level check. Unknown events stay in raw data; they are excluded only from contract-gated metrics. + +## Raw vs trusted funnels + +Both funnels count **unique users per step**, relative to signup starters: + +- **Raw**: every ingested event counts — exactly what a naive dashboard shows. +- **Trusted**: same counting after removing contract-invalid rows. + +The deliberate looseness of the raw view is the point: it is the view that gets fooled. When buggy release v2.3 fires `onboarding_completed` before `profile_saved`, raw metrics inflate while trusted metrics do not move. + +## Verdicts + +For each release vs baseline (`v2.2.0-healthy`), find the step with the largest raw user gain: + +- gain ≤ threshold → `baseline`/`no_change` +- raw gain present AND trusted gain survives (>+5%) → **`real_improvement`** +- raw gain present AND trusted gain vanishes → **`instrumentation_artifact`** + +## Uncertainty + +Activation rates carry **Wilson score intervals** (95%). All statements are observational; causal language requires an explicit experiment flag (`experiment: false` in every fixture manifest). + +## Golden scenarios (fixtures are deterministic, seeds fixed) + +| ID | Scenario | Expected | +|---|---|---| +| G1 | v2.2 healthy contracts | status `pass`, zero violations | +| G2 | v2.3 buggy order bug | `order_violation` BLOCK, ≥20 users with evidence | +| G3 | Raw looks better, trusted removes it | buggy raw `onboarding_completed` +24.3% → trusted −0.9%, classification `instrumentation_artifact` | +| G4 | Duplicate insert_id | `duplicate_insert_id` violation + dedup shrinks trusted stream | +| G5 | Real improvement survives filter | fixed activation +9.1% raw AND +9.1% trusted, classification `real_improvement` | +| G6 | Unknown event | `upsell_modal_shown` warning; rows kept in raw | + +All six are asserted in `apps/api/tests/test_instrumentation.py` and `test_release_compare.py`. Mutation sanity was performed locally: disabling order detection breaks G2; disabling dedup breaks G4 (mutations never committed). + +## Limitations + +- Synthetic fixtures only — no real users, no PII. +- Drift detection is a heuristic rate comparison, not anomaly modeling. +- Journey diff is descriptive evidence, not attribution. +- Session scope: sequence constraints apply within sessions. diff --git a/scripts/generate_release_fixture.py b/scripts/generate_release_fixture.py new file mode 100644 index 0000000..3c21401 --- /dev/null +++ b/scripts/generate_release_fixture.py @@ -0,0 +1,48 @@ +"""Generate deterministic release fixtures into data/seed/releases/. + +Usage: + python scripts/generate_release_fixture.py # all releases + python scripts/generate_release_fixture.py v2.3.0-buggy +""" + +from __future__ import annotations + +import json +import sys +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] +sys.path.insert(0, str(ROOT / "apps" / "api")) + +from app.services.release_fixture import ( # noqa: E402 + RELEASE_PROFILES, + RELEASES, + build_release_frame, + release_manifest, +) + +OUT_DIR = ROOT / "data" / "seed" / "releases" + + +def write_release(release: str) -> None: + target = OUT_DIR / release + target.mkdir(parents=True, exist_ok=True) + frame = build_release_frame(release) + csv_path = target / "events.csv" + frame.to_csv(csv_path, index=False, lineterminator="\n") + manifest_path = target / "manifest.json" + manifest_path.write_text( + json.dumps(release_manifest(release), indent=2, sort_keys=True) + "\n", + encoding="utf-8", + ) + print(f"{release}: {len(frame)} events -> {csv_path.relative_to(ROOT)}") + + +if __name__ == "__main__": + requested = sys.argv[1:] + selected = [r for r in RELEASES if not requested or r in requested] + unknown = [r for r in requested if r not in RELEASE_PROFILES] + if unknown: + raise SystemExit(f"unknown releases: {', '.join(unknown)}") + for release in selected: + write_release(release) diff --git a/scripts/generate_release_snapshot.py b/scripts/generate_release_snapshot.py new file mode 100644 index 0000000..702e66d --- /dev/null +++ b/scripts/generate_release_snapshot.py @@ -0,0 +1,83 @@ +"""Pre-compute the release-intelligence demo snapshot for the static web lab. + +Writes one payload to two destinations: +* apps/web/public/data/release-intelligence.json (public artifact / download) +* apps/web/lib/release-intelligence.json (bundled import, Pages-safe) + +Backend services remain the single source of truth. +""" + +from __future__ import annotations + +import json +import sys +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] +sys.path.insert(0, str(ROOT / "apps" / "api")) + +from app.services.instrumentation import validate_release # noqa: E402 +from app.services.journey_diff import diff_journeys # noqa: E402 +from app.services.release_compare import BASELINE_RELEASE, build_overview # noqa: E402 +from app.services.release_fixture import RELEASES # noqa: E402 + + +def build_payload() -> dict: + overview = build_overview() + instrumentation = {} + for release in RELEASES: + report = validate_release(release) + instrumentation[release] = { + "release": release, + "total_events": report.total_events, + "trusted_events": report.trusted_events, + "status": report.status, + "unknown_events": list(report.unknown_events), + "violations": [ + { + "event_name": v.event_name, + "code": v.code, + "severity": v.severity, + "user_count": v.user_count, + "evidence_count": v.evidence_count, + } + for v in report.violations + ], + } + journey_diffs = {} + for release in RELEASES: + if release == BASELINE_RELEASE: + continue + journey_diffs[release] = diff_journeys( + BASELINE_RELEASE, release, min_support=20 + ) + return { + **overview, + "instrumentation": instrumentation, + "journey_diffs": journey_diffs, + "limitations": [ + "Synthetic fixtures only — no real user tracking, no PII.", + "Rates are observational; no causal effect without an experiment flag.", + "Trusted funnel drops contract-invalid rows; unknown events are reported, never silently dropped.", + "Event drift compares per-user rates against the baseline release (heuristic threshold).", + ], + } + + +def main() -> None: + payload = build_payload() + public_dir = ROOT / "apps" / "web" / "public" / "data" + lib_dir = ROOT / "apps" / "web" / "lib" + public_dir.mkdir(parents=True, exist_ok=True) + + text = json.dumps(payload, indent=2, sort_keys=True) + "\n" + public_path = public_dir / "release-intelligence.json" + lib_path = lib_dir / "release-intelligence.json" + public_path.write_text(text, encoding="utf-8") + lib_path.write_text(text, encoding="utf-8") + print(f"snapshot -> {public_path.relative_to(ROOT)} ({len(text)} bytes)") + print(f"snapshot -> {lib_path.relative_to(ROOT)}") + + +if __name__ == "__main__": + main()