diff --git a/.github/workflows/collect-play.yml b/.github/workflows/collect-play.yml index 26a49d72..85ea8b0d 100644 --- a/.github/workflows/collect-play.yml +++ b/.github/workflows/collect-play.yml @@ -31,17 +31,17 @@ jobs: printf '%s' "$PLAY_SA_JSON" > "$GOOGLE_APPLICATION_CREDENTIALS" uv run vitals.py crash-rate --days 30 --update data/android-crash-rate.csv uv run vitals.py anr-rate --days 30 --update data/android-anr-rate.csv - # installs/installed.csv is intentionally disabled pending the metric - # decision (Installed audience vs Active Device Installs) — see #17. - # The SA can now read the bucket, so re-enable once decided: - # uv run android_installs.py --bucket "$PLAY_BUCKET" update + # installed.csv = Active Device Installs from the bulk reports (#17). + if [ -n "$PLAY_BUCKET" ]; then + uv run android_installs.py --bucket "$PLAY_BUCKET" update + fi rm -f "$GOOGLE_APPLICATION_CREDENTIALS" - name: Commit if: env.HAS_SA == 'true' run: | git config --local user.email "noreply@github.com" git config --local user.name "GitHub Action" - git add data/android-crash-rate.csv data/android-anr-rate.csv + git add data/android-crash-rate.csv data/android-anr-rate.csv data/android/installed.csv git diff --cached --quiet || git commit -m "chore: update Play Console stats" - name: Push changes if: env.HAS_SA == 'true' diff --git a/README.md b/README.md index baf735be..d1ddb997 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,13 @@ These data are updated automatically in CI: - `stats.csv` - Downloads & GitHub stars - `releases.csv` - Release dates of past releases - `stats-assets.csv` - Per-asset download counts (source for per-platform / per-version breakdowns) + - `android/installed.csv` - Android install base (Active Device Installs, Play Console bulk reports) + - `android-crash-rate.csv` / `android-anr-rate.csv` - Android vitals (Play Developer Reporting API) The following is manually updated: - `chrome-weekly-users.csv` - Chrome extension weekly active users - `firefox-daily-users.csv` - Firefox extension daily active users - - `android/installed.csv` - Android installed devices (Play Console export) - `notes.csv` - Manual entries of major/interesting events diff --git a/android_installs.py b/android_installs.py index 1110a6b0..f12afabb 100644 --- a/android_installs.py +++ b/android_installs.py @@ -48,11 +48,7 @@ # Consistent key location shared by local runs, agents, and CI. DEFAULT_CREDENTIALS = os.path.expanduser("~/.config/activitywatch/play-sa.json") DEFAULT_METRIC_COLUMN = "Active Device Installs" -INSTALLED_HEADER = [ - "Date", - "Installed audience (All users, Unique users, Per interval, Daily): All app versions", - "Notes", -] +INSTALLED_HEADER = ["Date", "Active Device Installs", "Notes"] def _token(credentials: str | None) -> str: @@ -114,7 +110,9 @@ def parse_report(raw: bytes, metric_column: str) -> dict[str, str]: for row in csv.DictReader(io.StringIO(text)): date = (row.get("Date") or "").strip() value = (row.get(metric_column) or "").strip().replace(",", "") - if date and value: + # Skip "0": Play leaves not-yet-finalized recent days as 0, which would + # otherwise be a spurious dip in the install base. + if date and value and value != "0": out[date] = value return out diff --git a/data/android/installed.csv b/data/android/installed.csv index 9b5253aa..de7fb5f0 100644 --- a/data/android/installed.csv +++ b/data/android/installed.csv @@ -1,2541 +1,2761 @@ -Date,"Installed audience (All users, Unique users, Per interval, Daily): All app versions",Notes +Date,Active Device Installs,Notes +2018-12-17,1, +2018-12-18,5, +2018-12-19,4, +2018-12-20,4, +2018-12-21,5, +2018-12-22,4, +2018-12-23,5, +2018-12-24,4, +2018-12-25,4, +2018-12-26,4, +2018-12-27,4, +2018-12-28,4, +2018-12-29,4, +2018-12-30,4, +2018-12-31,4, +2019-01-01,4, +2019-01-02,4, +2019-01-03,5, +2019-01-04,4, +2019-01-05,4, +2019-01-06,4, +2019-01-07,5, +2019-01-08,5, +2019-01-09,4, +2019-01-10,4, +2019-01-11,4, +2019-01-12,5, +2019-01-13,4, +2019-01-14,5, +2019-01-15,6, +2019-01-16,5, +2019-01-17,5, +2019-01-18,5, +2019-01-19,5, +2019-01-20,6, +2019-01-21,6, +2019-01-22,6, +2019-01-23,6, +2019-01-24,6, +2019-01-25,6, +2019-01-26,7, +2019-01-27,6, +2019-01-28,6, +2019-01-29,7, +2019-01-30,5, +2019-01-31,5, +2019-02-01,5, +2019-02-02,6, +2019-02-03,5, +2019-02-04,5, +2019-02-05,5, +2019-02-06,5, +2019-02-07,6, +2019-02-08,8, +2019-02-09,8, +2019-02-10,7, +2019-02-11,7, +2019-02-12,7, +2019-02-13,8, +2019-02-14,9, +2019-02-15,9, +2019-02-16,11, +2019-02-17,9, +2019-02-18,12, +2019-02-19,10, +2019-02-20,10, +2019-02-21,10, +2019-02-22,11, +2019-02-23,11, +2019-02-24,12, +2019-02-25,14, +2019-02-26,12, +2019-02-27,13, +2019-02-28,13, +2019-03-01,12, +2019-03-02,12, +2019-03-03,14, +2019-03-04,13, +2019-03-05,13, +2019-03-06,16, +2019-03-07,14, +2019-03-08,15, +2019-03-09,14, +2019-03-10,16, +2019-03-11,18, +2019-03-12,24, +2019-03-13,27, +2019-03-14,30, +2019-03-15,29, +2019-03-16,28, +2019-03-17,26, +2019-03-18,28, +2019-03-19,29, +2019-03-20,29, +2019-03-21,31, +2019-03-22,32, +2019-03-23,30, +2019-03-24,34, +2019-03-25,32, +2019-03-26,33, +2019-03-27,33, +2019-03-28,36, +2019-03-29,37, +2019-03-30,37, +2019-03-31,35, +2019-04-01,36, +2019-04-02,34, +2019-04-03,35, +2019-04-04,37, +2019-04-05,37, +2019-04-06,34, +2019-04-07,38, +2019-04-08,36, +2019-04-09,38, +2019-04-10,36, +2019-04-11,36, +2019-04-12,35, +2019-04-13,38, +2019-04-14,40, +2019-04-15,42, +2019-04-16,38, +2019-04-17,42, +2019-04-18,41, +2019-04-19,41, +2019-04-20,40, +2019-04-21,39, +2019-04-22,41, +2019-04-23,44, +2019-04-24,39, +2019-04-25,39, +2019-04-26,41, +2019-04-27,39, +2019-04-28,39, +2019-04-29,39, +2019-04-30,43, +2019-05-01,41, +2019-05-02,43, +2019-05-03,42, +2019-05-04,42, +2019-05-05,43, +2019-05-06,42, +2019-05-07,45, +2019-05-08,46, +2019-05-09,45, +2019-05-10,44, +2019-05-11,46, +2019-05-12,45, +2019-05-13,46, +2019-05-14,47, +2019-05-15,47, +2019-05-16,44, +2019-05-17,46, +2019-05-18,45, +2019-05-19,48, +2019-05-20,50, +2019-05-21,52, +2019-05-22,51, +2019-05-23,52, +2019-05-24,54, +2019-05-25,55, +2019-05-26,54, +2019-05-27,56, +2019-05-28,54, +2019-05-29,54, +2019-05-30,60, +2019-05-31,58, +2019-06-01,58, +2019-06-02,56, +2019-06-03,56, +2019-06-04,57, +2019-06-05,55, +2019-06-06,56, +2019-06-07,57, +2019-06-08,60, +2019-06-09,65, +2019-06-10,63, +2019-06-11,60, +2019-06-12,59, +2019-06-13,57, +2019-06-14,62, +2019-06-15,56, +2019-06-16,58, +2019-06-17,55, +2019-06-18,56, +2019-06-19,53, +2019-06-20,58, +2019-06-21,56, +2019-06-22,60, +2019-06-23,56, +2019-06-24,57, +2019-06-25,58, +2019-06-26,58, +2019-06-27,56, +2019-06-28,59, +2019-06-29,58, +2019-06-30,54, +2019-07-01,55, +2019-07-02,55, +2019-07-03,54, +2019-07-04,55, +2019-07-05,53, +2019-07-06,54, +2019-07-07,61, +2019-07-08,67, +2019-07-09,61, +2019-07-10,64, +2019-07-11,65, +2019-07-12,67, +2019-07-13,64, +2019-07-14,67, +2019-07-15,64, +2019-07-16,68, +2019-07-17,65, +2019-07-18,68, +2019-07-19,65, +2019-07-20,71, +2019-07-21,72, +2019-07-22,74, +2019-07-23,76, +2019-07-24,76, 2019-07-25,73, -2019-07-26,71, -2019-07-27,74, -2019-07-28,74, -2019-07-29,72, -2019-07-30,74, -2019-07-31,75, -2019-08-01,79, +2019-07-26,72, +2019-07-27,73, +2019-07-28,71, +2019-07-29,73, +2019-07-30,77, +2019-07-31,77, +2019-08-01,73, 2019-08-02,77, -2019-08-03,76, -2019-08-04,74, -2019-08-05,74, -2019-08-06,76, -2019-08-07,75, -2019-08-08,77, -2019-08-09,73, +2019-08-03,79, +2019-08-04,77, +2019-08-05,77, +2019-08-06,77, +2019-08-07,74, +2019-08-08,78, +2019-08-09,74, 2019-08-10,76, 2019-08-11,70, -2019-08-12,71,Rollout of release: Started rollout of 0.4.11 at 100%. -2019-08-13,73,Rollout of release: Started rollout of 0.4.12 at 100%. -2019-08-14,69,Rollout of release: Started rollout of 0.4.13 at 100%. -2019-08-15,69, -2019-08-16,69, +2019-08-12,70,Rollout of release: Started rollout of 0.4.11 at 100%. +2019-08-13,74,Rollout of release: Started rollout of 0.4.12 at 100%. +2019-08-14,73,Rollout of release: Started rollout of 0.4.13 at 100%. +2019-08-15,70, +2019-08-16,71, 2019-08-17,70, -2019-08-18,73, -2019-08-19,68, -2019-08-20,70, -2019-08-21,70, +2019-08-18,72, +2019-08-19,75, +2019-08-20,76, +2019-08-21,71, 2019-08-22,72, -2019-08-23,73, -2019-08-24,73, -2019-08-25,72, -2019-08-26,72, -2019-08-27,77, -2019-08-28,74, -2019-08-29,73, +2019-08-23,72, +2019-08-24,72, +2019-08-25,70, +2019-08-26,73, +2019-08-27,71, +2019-08-28,72, +2019-08-29,74, 2019-08-30,72, -2019-08-31,74, -2019-09-01,75, -2019-09-02,72, -2019-09-03,78, -2019-09-04,75, -2019-09-05,74, -2019-09-06,78, -2019-09-07,75, -2019-09-08,72, -2019-09-09,74, -2019-09-10,74, -2019-09-11,73, +2019-08-31,76, +2019-09-01,74, +2019-09-02,76, +2019-09-03,76, +2019-09-04,76, +2019-09-05,76, +2019-09-06,79, +2019-09-07,76, +2019-09-08,74, +2019-09-09,72, +2019-09-10,77, +2019-09-11,75, 2019-09-12,75, -2019-09-13,73, +2019-09-13,78, 2019-09-14,78, -2019-09-15,78, -2019-09-16,81, -2019-09-17,80, -2019-09-18,81, -2019-09-19,82, -2019-09-20,80, -2019-09-21,80, -2019-09-22,78, -2019-09-23,78, -2019-09-24,79, -2019-09-25,78, -2019-09-26,78, -2019-09-27,83, -2019-09-28,86, +2019-09-15,82, +2019-09-16,79, +2019-09-17,82, +2019-09-18,82, +2019-09-19,80, +2019-09-20,84, +2019-09-21,83, +2019-09-22,79, +2019-09-23,77, +2019-09-24,80, +2019-09-25,80, +2019-09-26,81, +2019-09-27,82, +2019-09-28,83, 2019-09-29,80, -2019-09-30,82, -2019-10-01,79, -2019-10-02,78, -2019-10-03,85, -2019-10-04,83, -2019-10-05,85, -2019-10-06,85, -2019-10-07,81, -2019-10-08,80, -2019-10-09,85, -2019-10-10,80, -2019-10-11,78, -2019-10-12,80, -2019-10-13,78, -2019-10-14,79, -2019-10-15,78, -2019-10-16,79, -2019-10-17,79, -2019-10-18,79, -2019-10-19,79, -2019-10-20,84, -2019-10-21,82, +2019-09-30,85, +2019-10-01,84, +2019-10-02,83, +2019-10-03,84, +2019-10-04,89, +2019-10-05,92, +2019-10-06,90, +2019-10-07,86, +2019-10-08,87, +2019-10-09,83, +2019-10-10,86, +2019-10-11,88, +2019-10-12,84, +2019-10-13,85, +2019-10-14,86, +2019-10-15,84, +2019-10-16,82, +2019-10-17,80, +2019-10-18,83, +2019-10-19,81, +2019-10-20,83, +2019-10-21,84, 2019-10-22,83, -2019-10-23,79, -2019-10-24,79, -2019-10-25,79, -2019-10-26,84, -2019-10-27,80, -2019-10-28,83, -2019-10-29,86, -2019-10-30,86, -2019-10-31,85, -2019-11-01,82, -2019-11-02,84, -2019-11-03,85, +2019-10-23,85, +2019-10-24,82, +2019-10-25,85, +2019-10-26,86, +2019-10-27,83, +2019-10-28,84, +2019-10-29,83, +2019-10-30,88, +2019-10-31,87, +2019-11-01,85, +2019-11-02,88, +2019-11-03,86, 2019-11-04,85, -2019-11-05,82, -2019-11-06,88, -2019-11-07,84, -2019-11-08,84, -2019-11-09,80, -2019-11-10,81, -2019-11-11,82, -2019-11-12,82, -2019-11-13,79, -2019-11-14,85, -2019-11-15,83, +2019-11-05,85, +2019-11-06,89, +2019-11-07,85, +2019-11-08,82, +2019-11-09,83, +2019-11-10,85, +2019-11-11,83, +2019-11-12,83, +2019-11-13,84, +2019-11-14,84, +2019-11-15,86, 2019-11-16,87, -2019-11-17,83, -2019-11-18,86, -2019-11-19,88, -2019-11-20,87, -2019-11-21,87, -2019-11-22,95, -2019-11-23,95, -2019-11-24,90, -2019-11-25,87, -2019-11-26,89, -2019-11-27,88, -2019-11-28,92, -2019-11-29,93, -2019-11-30,88, -2019-12-01,89, -2019-12-02,88, -2019-12-03,90, -2019-12-04,89, -2019-12-05,89, -2019-12-06,90, -2019-12-07,91, +2019-11-17,90, +2019-11-18,94, +2019-11-19,89, +2019-11-20,91, +2019-11-21,91, +2019-11-22,93, +2019-11-23,94, +2019-11-24,98, +2019-11-25,95, +2019-11-26,95, +2019-11-27,99, +2019-11-28,101, +2019-11-29,95, +2019-11-30,91, +2019-12-01,96, +2019-12-02,94, +2019-12-03,91, +2019-12-04,98, +2019-12-05,97, +2019-12-06,94, +2019-12-07,93, 2019-12-08,91, -2019-12-09,90, -2019-12-10,91, -2019-12-11,91, -2019-12-12,89, -2019-12-13,89, -2019-12-14,87, -2019-12-15,90, -2019-12-16,91, -2019-12-17,97, -2019-12-18,96, -2019-12-19,94, -2019-12-20,92, -2019-12-21,95, -2019-12-22,97, -2019-12-23,96, -2019-12-24,92, -2019-12-25,94, -2019-12-26,95, -2019-12-27,94, -2019-12-28,92, -2019-12-29,96, -2019-12-30,97, -2019-12-31,96, +2019-12-09,93, +2019-12-10,97, +2019-12-11,100, +2019-12-12,91, +2019-12-13,96, +2019-12-14,94, +2019-12-15,92, +2019-12-16,92, +2019-12-17,96, +2019-12-18,99, +2019-12-19,97, +2019-12-20,96, +2019-12-21,100, +2019-12-22,99, +2019-12-23,93, +2019-12-24,97, +2019-12-25,97, +2019-12-26,96, +2019-12-27,100, +2019-12-28,98, +2019-12-29,102, +2019-12-30,101, +2019-12-31,98, 2020-01-01,102, -2020-01-02,105, -2020-01-03,100, -2020-01-04,98, -2020-01-05,104, -2020-01-06,104, -2020-01-07,101, -2020-01-08,102, -2020-01-09,104, -2020-01-10,104, -2020-01-11,105, -2020-01-12,105, -2020-01-13,109, -2020-01-14,113, -2020-01-15,106, -2020-01-16,114, -2020-01-17,106, -2020-01-18,109, -2020-01-19,109, -2020-01-20,111, -2020-01-21,113, -2020-01-22,115, -2020-01-23,115, -2020-01-24,119, -2020-01-25,118, -2020-01-26,124, -2020-01-27,120, -2020-01-28,119, -2020-01-29,126, -2020-01-30,122, -2020-01-31,121, -2020-02-01,126, -2020-02-02,122, -2020-02-03,124, -2020-02-04,122, -2020-02-05,122, -2020-02-06,120, -2020-02-07,125, -2020-02-08,124, -2020-02-09,129, -2020-02-10,126, -2020-02-11,131, -2020-02-12,124, -2020-02-13,128, -2020-02-14,131, -2020-02-15,127, -2020-02-16,129, -2020-02-17,125, -2020-02-18,124, -2020-02-19,128, -2020-02-20,121, -2020-02-21,125, +2020-01-02,109, +2020-01-03,106, +2020-01-04,105, +2020-01-05,106, +2020-01-06,103, +2020-01-07,104, +2020-01-08,103, +2020-01-09,107, +2020-01-10,108, +2020-01-11,107, +2020-01-12,103, +2020-01-13,110, +2020-01-14,107, +2020-01-15,111, +2020-01-16,112, +2020-01-17,112, +2020-01-18,113, +2020-01-19,119, +2020-01-20,119, +2020-01-21,119, +2020-01-22,122, +2020-01-23,120, +2020-01-24,127, +2020-01-25,128, +2020-01-26,129, +2020-01-27,129, +2020-01-28,138, +2020-01-29,135, +2020-01-30,134, +2020-01-31,131, +2020-02-01,135, +2020-02-02,133, +2020-02-03,131, +2020-02-04,132, +2020-02-05,131, +2020-02-06,133, +2020-02-07,136, +2020-02-08,137, +2020-02-09,138, +2020-02-10,142, +2020-02-11,135, +2020-02-12,137, +2020-02-13,141, +2020-02-14,135, +2020-02-15,136, +2020-02-16,134, +2020-02-17,132, +2020-02-18,130, +2020-02-19,129, +2020-02-20,128, +2020-02-21,129, 2020-02-22,128, -2020-02-23,129, -2020-02-24,136, -2020-02-25,135, -2020-02-26,128, -2020-02-27,132, -2020-02-28,126, -2020-02-29,127, -2020-03-01,127, -2020-03-02,130, -2020-03-03,133, -2020-03-04,134, -2020-03-05,129, -2020-03-06,133, -2020-03-07,136, -2020-03-08,139, -2020-03-09,138, -2020-03-10,132, -2020-03-11,141, -2020-03-12,134, -2020-03-13,134, -2020-03-14,136, -2020-03-15,133, -2020-03-16,135, -2020-03-17,135, -2020-03-18,137, -2020-03-19,137, +2020-02-23,132, +2020-02-24,137, +2020-02-25,138, +2020-02-26,139, +2020-02-27,136, +2020-02-28,132, +2020-02-29,140, +2020-03-01,139, +2020-03-02,134, +2020-03-03,137, +2020-03-04,142, +2020-03-05,136, +2020-03-06,138, +2020-03-07,141, +2020-03-08,136, +2020-03-09,135, +2020-03-10,133, +2020-03-11,139, +2020-03-12,145, +2020-03-13,138, +2020-03-14,143, +2020-03-15,143, +2020-03-16,144, +2020-03-17,138, +2020-03-18,142, +2020-03-19,147, 2020-03-20,146, -2020-03-21,141, -2020-03-22,141, -2020-03-23,143, -2020-03-24,155, -2020-03-25,151, -2020-03-26,151, -2020-03-27,152, -2020-03-28,160, -2020-03-29,161, -2020-03-30,156, -2020-03-31,163, -2020-04-01,160, -2020-04-02,163, -2020-04-03,166, -2020-04-04,160, -2020-04-05,164, -2020-04-06,165, -2020-04-07,165, -2020-04-08,172, -2020-04-09,169, -2020-04-10,169, -2020-04-11,169, -2020-04-12,164, -2020-04-13,166, -2020-04-14,168, -2020-04-15,172, -2020-04-16,169, -2020-04-17,176, -2020-04-18,175, -2020-04-19,172, -2020-04-20,170, -2020-04-21,173, -2020-04-22,174, -2020-04-23,173, -2020-04-24,178, -2020-04-25,176, -2020-04-26,182, -2020-04-27,176, -2020-04-28,181, -2020-04-29,185, -2020-04-30,185, -2020-05-01,184, -2020-05-02,184, -2020-05-03,186, -2020-05-04,182, -2020-05-05,178,Rollout of release: Started rollout of 0.9.0 at 100%. -2020-05-06,187, -2020-05-07,197, -2020-05-08,198, -2020-05-09,212, -2020-05-10,212, -2020-05-11,228, -2020-05-12,227, -2020-05-13,235, -2020-05-14,238, -2020-05-15,243, -2020-05-16,249, -2020-05-17,259, -2020-05-18,257, -2020-05-19,255, -2020-05-20,248, -2020-05-21,268, -2020-05-22,264, -2020-05-23,275, -2020-05-24,276, -2020-05-25,280, -2020-05-26,284, -2020-05-27,279, -2020-05-28,280, -2020-05-29,288, -2020-05-30,286, -2020-05-31,286, -2020-06-01,286, -2020-06-02,289, -2020-06-03,292, -2020-06-04,295, -2020-06-05,284, -2020-06-06,290, -2020-06-07,293, -2020-06-08,303, -2020-06-09,308, -2020-06-10,311, -2020-06-11,315, -2020-06-12,312, -2020-06-13,303, -2020-06-14,316, -2020-06-15,315, -2020-06-16,323, -2020-06-17,327, -2020-06-18,321, -2020-06-19,332, -2020-06-20,325, -2020-06-21,330, -2020-06-22,320,Rollout of release: Started rollout of 0.9.1 at 100%. -2020-06-23,325, -2020-06-24,326, -2020-06-25,330, -2020-06-26,318, -2020-06-27,325, -2020-06-28,330, -2020-06-29,325, -2020-06-30,323, -2020-07-01,325, -2020-07-02,334, -2020-07-03,332, -2020-07-04,322, -2020-07-05,331, -2020-07-06,333, -2020-07-07,327, -2020-07-08,336, -2020-07-09,340, -2020-07-10,337, -2020-07-11,342, -2020-07-12,343, -2020-07-13,342, -2020-07-14,338, -2020-07-15,347, -2020-07-16,353, -2020-07-17,354, -2020-07-18,358, -2020-07-19,355, -2020-07-20,356, -2020-07-21,354, -2020-07-22,348, -2020-07-23,355, -2020-07-24,357, -2020-07-25,363, -2020-07-26,362, -2020-07-27,359, -2020-07-28,361, -2020-07-29,361,Rollout of release: Started rollout of 0.9.2 at 100%. -2020-07-30,370, -2020-07-31,365, -2020-08-01,374, -2020-08-02,370, -2020-08-03,371, -2020-08-04,377, -2020-08-05,374, -2020-08-06,375, -2020-08-07,376, -2020-08-08,380, -2020-08-09,381, -2020-08-10,386, -2020-08-11,389, -2020-08-12,388, -2020-08-13,386, -2020-08-14,388, -2020-08-15,393, -2020-08-16,404, -2020-08-17,406, -2020-08-18,392, -2020-08-19,393, -2020-08-20,405, -2020-08-21,397, -2020-08-22,405, -2020-08-23,409, -2020-08-24,402, -2020-08-25,407, -2020-08-26,413, -2020-08-27,422, -2020-08-28,423, -2020-08-29,442, -2020-08-30,438, -2020-08-31,447, -2020-09-01,452, -2020-09-02,465, -2020-09-03,465, -2020-09-04,456, -2020-09-05,457, -2020-09-06,458, -2020-09-07,465, -2020-09-08,465, -2020-09-09,472, -2020-09-10,475, -2020-09-11,467, -2020-09-12,471, -2020-09-13,469, -2020-09-14,466, -2020-09-15,474, -2020-09-16,478, -2020-09-17,482, -2020-09-18,483, -2020-09-19,483, -2020-09-20,489, -2020-09-21,489, -2020-09-22,496, -2020-09-23,505, -2020-09-24,502, -2020-09-25,502, -2020-09-26,494, -2020-09-27,492, -2020-09-28,507, -2020-09-29,504, -2020-09-30,506, -2020-10-01,511, -2020-10-02,508, -2020-10-03,506, -2020-10-04,517, -2020-10-05,506, -2020-10-06,519,Metric update: Data reconciliation on this date may result in a one-off increase in reported uninstalls. -2020-10-07,510, -2020-10-08,515, -2020-10-09,519, -2020-10-10,519, -2020-10-11,519, -2020-10-12,520, -2020-10-13,529, -2020-10-14,525, -2020-10-15,542, -2020-10-16,525, -2020-10-17,529, -2020-10-18,525, -2020-10-19,537, -2020-10-20,528, -2020-10-21,543, -2020-10-22,543, -2020-10-23,529, -2020-10-24,527, -2020-10-25,517, -2020-10-26,534, -2020-10-27,518, -2020-10-28,541, -2020-10-29,530, -2020-10-30,522, -2020-10-31,535, -2020-11-01,524, -2020-11-02,533, -2020-11-03,534, -2020-11-04,545, -2020-11-05,535, -2020-11-06,525, -2020-11-07,532, -2020-11-08,530, -2020-11-09,527, -2020-11-10,528, -2020-11-11,530, -2020-11-12,540, -2020-11-13,534, -2020-11-14,532, -2020-11-15,526, -2020-11-16,534, -2020-11-17,531, -2020-11-18,547, -2020-11-19,537, -2020-11-20,542, -2020-11-21,532, -2020-11-22,543, -2020-11-23,559, -2020-11-24,571, -2020-11-25,574, -2020-11-26,571, -2020-11-27,582, -2020-11-28,583, -2020-11-29,593, -2020-11-30,580, -2020-12-01,590, -2020-12-02,587, -2020-12-03,584, -2020-12-04,582, -2020-12-05,593, -2020-12-06,584, -2020-12-07,597, -2020-12-08,611, -2020-12-09,601, -2020-12-10,610, -2020-12-11,612, -2020-12-12,606, -2020-12-13,610, -2020-12-14,604, -2020-12-15,600, -2020-12-16,627, -2020-12-17,600, -2020-12-18,616, -2020-12-19,611, -2020-12-20,612, -2020-12-21,606, -2020-12-22,601, -2020-12-23,615, -2020-12-24,600, -2020-12-25,606, -2020-12-26,620, -2020-12-27,624, -2020-12-28,631, -2020-12-29,622, -2020-12-30,621, -2020-12-31,627, -2021-01-01,643, -2021-01-02,651, -2021-01-03,640, -2021-01-04,635, -2021-01-05,639, -2021-01-06,656,Rollout of release: Started rollout of 0.10.0 at 100%. -2021-01-07,646, -2021-01-08,730, -2021-01-09,739, -2021-01-10,732, -2021-01-11,748, -2021-01-12,741, -2021-01-13,759, -2021-01-14,744, -2021-01-15,747, -2021-01-16,750, -2021-01-17,750, -2021-01-18,752, -2021-01-19,749, -2021-01-20,756, -2021-01-21,764, -2021-01-22,759, -2021-01-23,768, -2021-01-24,778, -2021-01-25,778, -2021-01-26,785, -2021-01-27,773, -2021-01-28,765, -2021-01-29,767, -2021-01-30,770, -2021-01-31,780, -2021-02-01,783, -2021-02-02,777, -2021-02-03,793, -2021-02-04,784, -2021-02-05,803, -2021-02-06,793, -2021-02-07,804, -2021-02-08,801, -2021-02-09,806, -2021-02-10,806, -2021-02-11,799, -2021-02-12,813, -2021-02-13,792, -2021-02-14,805, -2021-02-15,810, -2021-02-16,817, -2021-02-17,811, -2021-02-18,826, -2021-02-19,823, -2021-02-20,831, -2021-02-21,830, -2021-02-22,833, -2021-02-23,840, -2021-02-24,847, -2021-02-25,840, -2021-02-26,830, -2021-02-27,846, -2021-02-28,828, -2021-03-01,843, -2021-03-02,852, -2021-03-03,840, -2021-03-04,835, -2021-03-05,846, -2021-03-06,848, -2021-03-07,851, -2021-03-08,858, -2021-03-09,861, -2021-03-10,839, -2021-03-11,845, -2021-03-12,862, -2021-03-13,857, -2021-03-14,857, -2021-03-15,850, -2021-03-16,861, -2021-03-17,867, -2021-03-18,869, -2021-03-19,867, -2021-03-20,859, -2021-03-21,848, -2021-03-22,849, -2021-03-23,869, -2021-03-24,868, -2021-03-25,881, -2021-03-26,872, -2021-03-27,866, -2021-03-28,877, -2021-03-29,867, -2021-03-30,878, -2021-03-31,874, -2021-04-01,872, -2021-04-02,863, -2021-04-03,860, -2021-04-04,868, -2021-04-05,870, -2021-04-06,859, -2021-04-07,861, -2021-04-08,867, -2021-04-09,873, -2021-04-10,855, -2021-04-11,852, -2021-04-12,852, -2021-04-13,851, -2021-04-14,853, -2021-04-15,864, -2021-04-16,860, -2021-04-17,873, -2021-04-18,848, -2021-04-19,853, -2021-04-20,861, -2021-04-21,866, -2021-04-22,862, -2021-04-23,856, -2021-04-24,871, -2021-04-25,859, -2021-04-26,855, -2021-04-27,848, -2021-04-28,847, -2021-04-29,859, -2021-04-30,852, -2021-05-01,860, -2021-05-02,857, -2021-05-03,840, -2021-05-04,850, -2021-05-05,837, -2021-05-06,842, -2021-05-07,835, -2021-05-08,836, -2021-05-09,848, -2021-05-10,834, -2021-05-11,848, -2021-05-12,852, -2021-05-13,860, -2021-05-14,853, -2021-05-15,848, -2021-05-16,847, -2021-05-17,857, -2021-05-18,854, -2021-05-19,848, -2021-05-20,867, -2021-05-21,860, -2021-05-22,871, -2021-05-23,846, -2021-05-24,863, -2021-05-25,869, -2021-05-26,860, -2021-05-27,856, -2021-05-28,870, -2021-05-29,873, -2021-05-30,871, -2021-05-31,859, -2021-06-01,855, -2021-06-02,875, -2021-06-03,877, -2021-06-04,866, -2021-06-05,875, -2021-06-06,881, -2021-06-07,865, -2021-06-08,886, -2021-06-09,908, -2021-06-10,892, -2021-06-11,886, -2021-06-12,891, -2021-06-13,893, -2021-06-14,907, -2021-06-15,900, -2021-06-16,901, -2021-06-17,913, -2021-06-18,913, -2021-06-19,932, -2021-06-20,919, -2021-06-21,918, -2021-06-22,924, -2021-06-23,938, -2021-06-24,937, -2021-06-25,938, -2021-06-26,935, -2021-06-27,927, -2021-06-28,926, -2021-06-29,928, -2021-06-30,925, -2021-07-01,920, -2021-07-02,922, -2021-07-03,928, -2021-07-04,911, -2021-07-05,924, -2021-07-06,923, -2021-07-07,917, -2021-07-08,915, -2021-07-09,926, -2021-07-10,907, -2021-07-11,917, -2021-07-12,933, -2021-07-13,948, -2021-07-14,920, -2021-07-15,942, -2021-07-16,931, -2021-07-17,927, -2021-07-18,926, -2021-07-19,924, -2021-07-20,939, -2021-07-21,937, -2021-07-22,934, -2021-07-23,931, -2021-07-24,935, -2021-07-25,933, -2021-07-26,949, -2021-07-27,927, -2021-07-28,929, -2021-07-29,944, -2021-07-30,926, -2021-07-31,926, -2021-08-01,941, -2021-08-02,909, -2021-08-03,916, -2021-08-04,923, -2021-08-05,928, -2021-08-06,912, -2021-08-07,915, -2021-08-08,925, -2021-08-09,928, -2021-08-10,926, -2021-08-11,924, -2021-08-12,932, -2021-08-13,925, -2021-08-14,916, -2021-08-15,917, -2021-08-16,938, -2021-08-17,919, -2021-08-18,927, -2021-08-19,931, -2021-08-20,941, -2021-08-21,934, -2021-08-22,933, -2021-08-23,938, -2021-08-24,935, -2021-08-25,930, -2021-08-26,938, -2021-08-27,955, -2021-08-28,961, -2021-08-29,961, -2021-08-30,947, -2021-08-31,967, -2021-09-01,947, -2021-09-02,961, -2021-09-03,958, -2021-09-04,951, -2021-09-05,945, -2021-09-06,959, -2021-09-07,959, -2021-09-08,949, -2021-09-09,949, -2021-09-10,960, -2021-09-11,953, -2021-09-12,950, -2021-09-13,946, -2021-09-14,968, -2021-09-15,964, -2021-09-16,966, -2021-09-17,961, -2021-09-18,952, -2021-09-19,951, -2021-09-20,969, -2021-09-21,950, -2021-09-22,988, -2021-09-23,978, -2021-09-24,1014, -2021-09-25,994, -2021-09-26,996, -2021-09-27,1008, -2021-09-28,1019, -2021-09-29,1049, -2021-09-30,1054, -2021-10-01,1037, -2021-10-02,1055, -2021-10-03,1030, -2021-10-04,1047, -2021-10-05,1023, -2021-10-06,1064, -2021-10-07,1050, -2021-10-08,1042, -2021-10-09,1060, -2021-10-10,1058, -2021-10-11,1055, -2021-10-12,1074, -2021-10-13,1071, -2021-10-14,1080, -2021-10-15,1071, -2021-10-16,1071, -2021-10-17,1041, -2021-10-18,1056, -2021-10-19,1063, -2021-10-20,1089, -2021-10-21,1078, -2021-10-22,1066, -2021-10-23,1069, -2021-10-24,1067, -2021-10-25,1071, -2021-10-26,1053, -2021-10-27,1061, -2021-10-28,1067, -2021-10-29,1051, -2021-10-30,1064, -2021-10-31,1071, -2021-11-01,1077, -2021-11-02,1066, -2021-11-03,1072, -2021-11-04,1065, -2021-11-05,1065, -2021-11-06,1052, -2021-11-07,1072, -2021-11-08,1052, -2021-11-09,1037, -2021-11-10,1046, -2021-11-11,1057, -2021-11-12,1053, -2021-11-13,1062, -2021-11-14,1055, -2021-11-15,1049, -2021-11-16,1058, -2021-11-17,1056, -2021-11-18,1040, -2021-11-19,1061, -2021-11-20,1048, -2021-11-21,1052, -2021-11-22,1056, -2021-11-23,1060, -2021-11-24,1039, -2021-11-25,1087, -2021-11-26,1042, -2021-11-27,1050, -2021-11-28,1040, -2021-11-29,1038, -2021-11-30,1067, -2021-12-01,1039, -2021-12-02,1040, -2021-12-03,1062, -2021-12-04,1047, -2021-12-05,1056, -2021-12-06,1031, -2021-12-07,1034, -2021-12-08,1055, -2021-12-09,1054, -2021-12-10,1068, -2021-12-11,1048, -2021-12-12,1057, -2021-12-13,1051, -2021-12-14,1056, -2021-12-15,1054, -2021-12-16,1042, -2021-12-17,1060, -2021-12-18,1049, -2021-12-19,1067, -2021-12-20,1050, -2021-12-21,1078, -2021-12-22,1094, -2021-12-23,1065, -2021-12-24,1080, -2021-12-25,1073, -2021-12-26,1064, -2021-12-27,1070, -2021-12-28,1085, -2021-12-29,1085, -2021-12-30,1084, -2021-12-31,1088, -2022-01-01,1077, -2022-01-02,1078, -2022-01-03,1102, -2022-01-04,1117, -2022-01-05,1111, -2022-01-06,1119, -2022-01-07,1142, -2022-01-08,1124, -2022-01-09,1113, -2022-01-10,1114, -2022-01-11,1111, -2022-01-12,1103, -2022-01-13,1109, -2022-01-14,1115, -2022-01-15,1102, -2022-01-16,1122, -2022-01-17,1095, -2022-01-18,1095, -2022-01-19,1099, -2022-01-20,1109, -2022-01-21,1102, -2022-01-22,1103, -2022-01-23,1104, -2022-01-24,1103, -2022-01-25,1118, -2022-01-26,1113, -2022-01-27,1108, -2022-01-28,1122, -2022-01-29,1127, -2022-01-30,1103, -2022-01-31,1116, -2022-02-01,1111, -2022-02-02,1102, -2022-02-03,1101, -2022-02-04,1126, -2022-02-05,1117, -2022-02-06,1137, -2022-02-07,1125, -2022-02-08,1126, -2022-02-09,1163, -2022-02-10,1150, -2022-02-11,1158, -2022-02-12,1161, -2022-02-13,1137, -2022-02-14,1140, -2022-02-15,1157, -2022-02-16,1146, -2022-02-17,1154, -2022-02-18,1151, -2022-02-19,1163, -2022-02-20,1144, -2022-02-21,1185, -2022-02-22,1149, -2022-02-23,1159, -2022-02-24,1151, -2022-02-25,1145, -2022-02-26,1146, -2022-02-27,1172, -2022-02-28,1158, -2022-03-01,1165, -2022-03-02,1161, -2022-03-03,1163, -2022-03-04,1183, -2022-03-05,1185, -2022-03-06,1179, -2022-03-07,1193, -2022-03-08,1183, -2022-03-09,1178, -2022-03-10,1192, -2022-03-11,1201, -2022-03-12,1207, -2022-03-13,1195, -2022-03-14,1194, -2022-03-15,1198, -2022-03-16,1191, -2022-03-17,1202, -2022-03-18,1181, -2022-03-19,1189, -2022-03-20,1189, -2022-03-21,1185, -2022-03-22,1210, -2022-03-23,1199, -2022-03-24,1235, -2022-03-25,1194, -2022-03-26,1219, -2022-03-27,1227, -2022-03-28,1233, -2022-03-29,1234, -2022-03-30,1220, -2022-03-31,1239, -2022-04-01,1252, -2022-04-02,1248, -2022-04-03,1236, -2022-04-04,1246, -2022-04-05,1247, -2022-04-06,1261, -2022-04-07,1269, -2022-04-08,1264, -2022-04-09,1260, -2022-04-10,1264, -2022-04-11,1266, -2022-04-12,1253, -2022-04-13,1258, -2022-04-14,1273, -2022-04-15,1257, -2022-04-16,1269, -2022-04-17,1256, -2022-04-18,1249, -2022-04-19,1254, -2022-04-20,1251, -2022-04-21,1242,"Change in reporting data: We made improvements to how installs, uninstalls, updates, and device activity are counted, including how we count users who have removed install activity for privacy reasons." -2022-04-22,1244, -2022-04-23,1246, -2022-04-24,1255, -2022-04-25,1262, -2022-04-26,1242, -2022-04-27,1231, -2022-04-28,1232, -2022-04-29,1234, -2022-04-30,1264, -2022-05-01,1266, -2022-05-02,1254, -2022-05-03,1264, -2022-05-04,1274, -2022-05-05,1268, -2022-05-06,1270, -2022-05-07,1259, -2022-05-08,1257, -2022-05-09,1262, -2022-05-10,1271, -2022-05-11,1266, -2022-05-12,1267, -2022-05-13,1262, -2022-05-14,1272, -2022-05-15,1283, -2022-05-16,1276, -2022-05-17,1301, -2022-05-18,1268, -2022-05-19,1295, -2022-05-20,1257, -2022-05-21,1272, -2022-05-22,1281, -2022-05-23,1272, -2022-05-24,1271, -2022-05-25,1284, -2022-05-26,1286, -2022-05-27,1276, -2022-05-28,1272, -2022-05-29,1280, -2022-05-30,1270, -2022-05-31,1276, -2022-06-01,1270, -2022-06-02,1272, -2022-06-03,1288, -2022-06-04,1259, -2022-06-05,1259, -2022-06-06,1308, -2022-06-07,1285, -2022-06-08,1286, -2022-06-09,1292, -2022-06-10,1273, -2022-06-11,1298, -2022-06-12,1293, -2022-06-13,1295, -2022-06-14,1280, -2022-06-15,1305, -2022-06-16,1309, -2022-06-17,1319, -2022-06-18,1297, -2022-06-19,1312, -2022-06-20,1305, -2022-06-21,1320, -2022-06-22,1325, -2022-06-23,1298, -2022-06-24,1308, -2022-06-25,1303, -2022-06-26,1357, -2022-06-27,1348, -2022-06-28,1393, -2022-06-29,1408, -2022-06-30,1409, -2022-07-01,1401, -2022-07-02,1406, -2022-07-03,1426, -2022-07-04,1439, -2022-07-05,1425, -2022-07-06,1422, -2022-07-07,1384, -2022-07-08,1403, -2022-07-09,1438, -2022-07-10,1402, -2022-07-11,1410, -2022-07-12,1449, -2022-07-13,1445, -2022-07-14,1413, -2022-07-15,1419, -2022-07-16,1440, -2022-07-17,1430, -2022-07-18,1417, -2022-07-19,1427, -2022-07-20,1433, -2022-07-21,1403, -2022-07-22,1416, -2022-07-23,1425, -2022-07-24,1425, -2022-07-25,1426, -2022-07-26,1434, -2022-07-27,1423, -2022-07-28,1421, -2022-07-29,1423, -2022-07-30,1431, -2022-07-31,1407, -2022-08-01,1424, -2022-08-02,1403, -2022-08-03,1406, -2022-08-04,1435, -2022-08-05,1413, -2022-08-06,1400, -2022-08-07,1425, -2022-08-08,1414, -2022-08-09,1417, -2022-08-10,1410, -2022-08-11,1404, -2022-08-12,1426, -2022-08-13,1396, -2022-08-14,1414, -2022-08-15,1413, -2022-08-16,1443, -2022-08-17,1440, -2022-08-18,1436, -2022-08-19,1436, -2022-08-20,1424, -2022-08-21,1429, -2022-08-22,1435, -2022-08-23,1440, -2022-08-24,1444, -2022-08-25,1466, -2022-08-26,1439, -2022-08-27,1457, -2022-08-28,1447, -2022-08-29,1474, -2022-08-30,1462, -2022-08-31,1477, -2022-09-01,1481, -2022-09-02,1473, -2022-09-03,1470, -2022-09-04,1486, -2022-09-05,1470, -2022-09-06,1480, -2022-09-07,1478, -2022-09-08,1468, -2022-09-09,1463, -2022-09-10,1479, -2022-09-11,1474, -2022-09-12,1478, -2022-09-13,1480, -2022-09-14,1486, -2022-09-15,1486, -2022-09-16,1484, -2022-09-17,1483, -2022-09-18,1511, -2022-09-19,1496, -2022-09-20,1483, -2022-09-21,1472, -2022-09-22,1513, -2022-09-23,1514, -2022-09-24,1512, -2022-09-25,1501, -2022-09-26,1520, -2022-09-27,1516, -2022-09-28,1507, -2022-09-29,1509, -2022-09-30,1526, -2022-10-01,1516, -2022-10-02,1518, -2022-10-03,1506, -2022-10-04,1516, -2022-10-05,1508, -2022-10-06,1502, -2022-10-07,1525, -2022-10-08,1520, -2022-10-09,1497, -2022-10-10,1511, -2022-10-11,1522, -2022-10-12,1540, -2022-10-13,1516, -2022-10-14,1500, -2022-10-15,1549, -2022-10-16,1534, -2022-10-17,1527, -2022-10-18,1537, -2022-10-19,1525, -2022-10-20,1552, -2022-10-21,1524, -2022-10-22,1531, -2022-10-23,1528, -2022-10-24,1534, -2022-10-25,1534, -2022-10-26,1505, -2022-10-27,1536, -2022-10-28,1522, -2022-10-29,1529, -2022-10-30,1517, -2022-10-31,1526, -2022-11-01,1540, -2022-11-02,1522, -2022-11-03,1550, -2022-11-04,1507, -2022-11-05,1531, -2022-11-06,1553, -2022-11-07,1563, -2022-11-08,1549, -2022-11-09,1543, -2022-11-10,1553, -2022-11-11,1538, -2022-11-12,1534, -2022-11-13,1564, -2022-11-14,1588, -2022-11-15,1556, -2022-11-16,1582, -2022-11-17,1580, -2022-11-18,1575, -2022-11-19,1544, -2022-11-20,1603, -2022-11-21,1569, -2022-11-22,1557, -2022-11-23,1570, -2022-11-24,1551, -2022-11-25,1557, -2022-11-26,1590, -2022-11-27,1563, -2022-11-28,1575, -2022-11-29,1572, -2022-11-30,1590, -2022-12-01,1573, -2022-12-02,1579, -2022-12-03,1585, -2022-12-04,1555, -2022-12-05,1550, -2022-12-06,1563, -2022-12-07,1567, -2022-12-08,1570, -2022-12-09,1571, -2022-12-10,1548, -2022-12-11,1561, -2022-12-12,1576, -2022-12-13,1577, -2022-12-14,1576, -2022-12-15,1554, -2022-12-16,1570, -2022-12-17,1539, -2022-12-18,1563, -2022-12-19,1573, -2022-12-20,1562, -2022-12-21,1562, -2022-12-22,1549, -2022-12-23,1549, -2022-12-24,1572, -2022-12-25,1546, -2022-12-26,1531, -2022-12-27,1558, -2022-12-28,1538, -2022-12-29,1535, -2022-12-30,1539, -2022-12-31,1547, -2023-01-01,1578, -2023-01-02,1551, -2023-01-03,1535, -2023-01-04,1557, -2023-01-05,1565, -2023-01-06,1599, -2023-01-07,1576, -2023-01-08,1573, -2023-01-09,1590, -2023-01-10,1609, -2023-01-11,1591, -2023-01-12,1581, -2023-01-13,1558, -2023-01-14,1567, -2023-01-15,1575, -2023-01-16,1545, -2023-01-17,1595, -2023-01-18,1577, -2023-01-19,1570, -2023-01-20,1595, -2023-01-21,1601, -2023-01-22,1570, -2023-01-23,1631, -2023-01-24,1590, -2023-01-25,1591, -2023-01-26,1583, -2023-01-27,1616, -2023-01-28,1587, -2023-01-29,1618, -2023-01-30,1606, -2023-01-31,1599, -2023-02-01,1632, -2023-02-02,1633, -2023-02-03,1628, -2023-02-04,1640, -2023-02-05,1653, -2023-02-06,1651, -2023-02-07,1651, -2023-02-08,1664, -2023-02-09,1668, -2023-02-10,1667, -2023-02-11,1667, -2023-02-12,1661, -2023-02-13,1683, -2023-02-14,1667, -2023-02-15,1670, -2023-02-16,1703, -2023-02-17,1672, -2023-02-18,1686, -2023-02-19,1698, -2023-02-20,1674, -2023-02-21,1706, -2023-02-22,1688, -2023-02-23,1671, -2023-02-24,1710, -2023-02-25,1684, -2023-02-26,1711, -2023-02-27,1718, -2023-02-28,1701, -2023-03-01,1727, -2023-03-02,1715, -2023-03-03,1712, -2023-03-04,1708, -2023-03-05,1698, -2023-03-06,1710, -2023-03-07,1711, -2023-03-08,1711, -2023-03-09,1710, -2023-03-10,1734, -2023-03-11,1695, -2023-03-12,1687, -2023-03-13,1676, -2023-03-14,1692, -2023-03-15,1688, -2023-03-16,1705, -2023-03-17,1700, -2023-03-18,1689, -2023-03-19,1674, -2023-03-20,1652, -2023-03-21,1662, -2023-03-22,1663, -2023-03-23,1712, -2023-03-24,1693, -2023-03-25,1673, -2023-03-26,1674, -2023-03-27,1668, -2023-03-28,1641, -2023-03-29,1685, -2023-03-30,1676, -2023-03-31,1683, -2023-04-01,1650, -2023-04-02,1652, -2023-04-03,1653, -2023-04-04,1667, -2023-04-05,1645, -2023-04-06,1688, -2023-04-07,1677, -2023-04-08,1658, -2023-04-09,1684, -2023-04-10,1628, -2023-04-11,1650, -2023-04-12,1670, -2023-04-13,1625, -2023-04-14,1656, -2023-04-15,1640, -2023-04-16,1641, -2023-04-17,1655, -2023-04-18,1660, -2023-04-19,1642, -2023-04-20,1652, -2023-04-21,1665, -2023-04-22,1631, -2023-04-23,1621, -2023-04-24,1668, -2023-04-25,1628, -2023-04-26,1657, -2023-04-27,1629, -2023-04-28,1637, -2023-04-29,1665, -2023-04-30,1610, -2023-05-01,1644, -2023-05-02,1633, -2023-05-03,1642, -2023-05-04,1639, -2023-05-05,1614, -2023-05-06,1622, -2023-05-07,1620, -2023-05-08,1614, -2023-05-09,1641, -2023-05-10,1622, -2023-05-11,1625, -2023-05-12,1625, -2023-05-13,1615, -2023-05-14,1627, -2023-05-15,1597, -2023-05-16,1602, -2023-05-17,1594, -2023-05-18,1610, -2023-05-19,1584, -2023-05-20,1604, -2023-05-21,1603, -2023-05-22,1607, -2023-05-23,1578, -2023-05-24,1548, -2023-05-25,1584, -2023-05-26,1571, -2023-05-27,1554, -2023-05-28,1566, -2023-05-29,1564, -2023-05-30,1542, -2023-05-31,1556, -2023-06-01,1556, -2023-06-02,1551, -2023-06-03,1534, -2023-06-04,1544, -2023-06-05,1533, -2023-06-06,1528, -2023-06-07,1539, -2023-06-08,1535, -2023-06-09,1520, -2023-06-10,1507, -2023-06-11,1531, -2023-06-12,1506, -2023-06-13,1526, -2023-06-14,1505, -2023-06-15,1494, -2023-06-16,1483, -2023-06-17,1491, -2023-06-18,1487, -2023-06-19,1495, -2023-06-20,1503, -2023-06-21,1493, -2023-06-22,1496, -2023-06-23,1519, -2023-06-24,1500, -2023-06-25,1487, -2023-06-26,1482, -2023-06-27,1494, -2023-06-28,1498, -2023-06-29,1497, -2023-06-30,1489, -2023-07-01,1493, -2023-07-02,1491, -2023-07-03,1488, -2023-07-04,1473, -2023-07-05,1479, -2023-07-06,1485, -2023-07-07,1501, -2023-07-08,1465, -2023-07-09,1491, -2023-07-10,1493, -2023-07-11,1489, -2023-07-12,1493, -2023-07-13,1498, -2023-07-14,1512, -2023-07-15,1475, -2023-07-16,1494, -2023-07-17,1468, -2023-07-18,1492, -2023-07-19,1485, -2023-07-20,1472, -2023-07-21,1476, -2023-07-22,1504, -2023-07-23,1474, -2023-07-24,1471, -2023-07-25,1488, -2023-07-26,1481, -2023-07-27,1493, -2023-07-28,1464, -2023-07-29,1462, -2023-07-30,1469, -2023-07-31,1465, -2023-08-01,1458, -2023-08-02,1446, -2023-08-03,1453, -2023-08-04,1427, -2023-08-05,1469, -2023-08-06,1444, -2023-08-07,1455, -2023-08-08,1437, -2023-08-09,1447, -2023-08-10,1444, -2023-08-11,1437, -2023-08-12,1446, -2023-08-13,1455, -2023-08-14,1462, -2023-08-15,1461, -2023-08-16,1458, -2023-08-17,1444, -2023-08-18,1448, -2023-08-19,1440, -2023-08-20,1438, -2023-08-21,1442, -2023-08-22,1442, -2023-08-23,1458, -2023-08-24,1434, -2023-08-25,1418, -2023-08-26,1444, -2023-08-27,1434, -2023-08-28,1437, -2023-08-29,1426, -2023-08-30,1458, -2023-08-31,1436, -2023-09-01,1456, -2023-09-02,1431, -2023-09-03,1428, -2023-09-04,1436, -2023-09-05,1414, -2023-09-06,1430, -2023-09-07,1410, -2023-09-08,1402, -2023-09-09,1453, -2023-09-10,1449, -2023-09-11,1424, -2023-09-12,1406, -2023-09-13,1428, -2023-09-14,1411, -2023-09-15,1398, -2023-09-16,1400, -2023-09-17,1424, -2023-09-18,1389, -2023-09-19,1428, -2023-09-20,1401, -2023-09-21,1402, -2023-09-22,1400, -2023-09-23,1381, -2023-09-24,1370, -2023-09-25,1398, -2023-09-26,1400,Rollout of release: Started rollout of 0.12.1 at 100%. Rollout of release: Started rollout of 0.12.0 at 100%. -2023-09-27,1379, -2023-09-28,1409, -2023-09-29,1406, -2023-09-30,1399, -2023-10-01,1390, -2023-10-02,1380, -2023-10-03,1392, -2023-10-04,1408, -2023-10-05,1390, -2023-10-06,1392, -2023-10-07,1397, -2023-10-08,1396,Rollout of release: Started rollout of 0.12.1b3 at 10%. -2023-10-09,1370, -2023-10-10,1396, -2023-10-11,1369, -2023-10-12,1366, -2023-10-13,1401,Rollout of release: Halted rollout of 0.12.1b3. Rollout of release: Started rollout of 32 (0.12.1b4) at 100%. Rollout of release: Started rollout of 0.12.1b5 at 100%. Rollout of release: Started rollout of 0.12.1 at 100%. -2023-10-14,1402, -2023-10-15,1430, -2023-10-16,1418, -2023-10-17,1408, -2023-10-18,1429, -2023-10-19,1446, -2023-10-20,1470, -2023-10-21,1469, -2023-10-22,1453, -2023-10-23,1462, -2023-10-24,1495, -2023-10-25,1481, -2023-10-26,1505, -2023-10-27,1496, -2023-10-28,1530, -2023-10-29,1543, -2023-10-30,1534, -2023-10-31,1549, -2023-11-01,1523, -2023-11-02,1500, -2023-11-03,1509, -2023-11-04,1488, -2023-11-05,1535, -2023-11-06,1553, -2023-11-07,1541, -2023-11-08,1543, -2023-11-09,1552, -2023-11-10,1555, -2023-11-11,1560, -2023-11-12,1557, -2023-11-13,1564, -2023-11-14,1570, -2023-11-15,1570, -2023-11-16,1561, -2023-11-17,1568, -2023-11-18,1585, -2023-11-19,1566, -2023-11-20,1587, -2023-11-21,1613, -2023-11-22,1595, -2023-11-23,1603, -2023-11-24,1613, -2023-11-25,1572, -2023-11-26,1604, -2023-11-27,1594, -2023-11-28,1591, -2023-11-29,1587, -2023-11-30,1598, -2023-12-01,1595, -2023-12-02,1617, -2023-12-03,1596, -2023-12-04,1609, -2023-12-05,1613, -2023-12-06,1612, -2023-12-07,1608, -2023-12-08,1582, -2023-12-09,1620, -2023-12-10,1607, -2023-12-11,1629, -2023-12-12,1641, -2023-12-13,1631, -2023-12-14,1646, -2023-12-15,1656, -2023-12-16,1639, -2023-12-17,1665, -2023-12-18,1638, -2023-12-19,1672, -2023-12-20,1632, -2023-12-21,1674, -2023-12-22,1657, -2023-12-23,1681, -2023-12-24,1643, -2023-12-25,1683, -2023-12-26,1678, -2023-12-27,1688, -2023-12-28,1685, -2023-12-29,1680, -2023-12-30,1694, -2023-12-31,1676, -2024-01-01,1705, -2024-01-02,1724, -2024-01-03,1701, -2024-01-04,1703, -2024-01-05,1697, -2024-01-06,1722, -2024-01-07,1715, -2024-01-08,1743, -2024-01-09,1718, -2024-01-10,1735, -2024-01-11,1735, -2024-01-12,1746, -2024-01-13,1730, -2024-01-14,1729, -2024-01-15,1728, -2024-01-16,1735, -2024-01-17,1739, -2024-01-18,1776, -2024-01-19,1737, -2024-01-20,1781, -2024-01-21,1786, -2024-01-22,1759, -2024-01-23,1778, -2024-01-24,1809, -2024-01-25,1812, -2024-01-26,1781, -2024-01-27,1796, -2024-01-28,1784, -2024-01-29,1819, -2024-01-30,1827, -2024-01-31,1816, -2024-02-01,1836, -2024-02-02,1806, -2024-02-03,1856, -2024-02-04,1861, -2024-02-05,1862, -2024-02-06,1856, -2024-02-07,1836, -2024-02-08,1860, -2024-02-09,1875, -2024-02-10,1891, -2024-02-11,1883, -2024-02-12,1920, -2024-02-13,1891, -2024-02-14,1898, -2024-02-15,1925, -2024-02-16,1957, -2024-02-17,1964, -2024-02-18,1943, -2024-02-19,1950, -2024-02-20,1981, -2024-02-21,1958, -2024-02-22,2003, -2024-02-23,1954, -2024-02-24,1964, -2024-02-25,1954, -2024-02-26,1979, -2024-02-27,1975, -2024-02-28,2002, -2024-02-29,1963, -2024-03-01,2021, -2024-03-02,1958, -2024-03-03,1987, -2024-03-04,1999, -2024-03-05,1994, -2024-03-06,1987, -2024-03-07,2006, -2024-03-08,1985, -2024-03-09,1981, -2024-03-10,2012, -2024-03-11,1989, -2024-03-12,2009, -2024-03-13,1977, -2024-03-14,1980, -2024-03-15,1999, -2024-03-16,1980, -2024-03-17,2017, -2024-03-18,1991, -2024-03-19,2009, -2024-03-20,2014, -2024-03-21,1983, -2024-03-22,2022, -2024-03-23,1968, -2024-03-24,1996, -2024-03-25,1978, -2024-03-26,1997, -2024-03-27,1993, -2024-03-28,1964, -2024-03-29,2005, -2024-03-30,1985, -2024-03-31,2069, -2024-04-01,1995, -2024-04-02,2026, -2024-04-03,2062, -2024-04-04,2012, -2024-04-05,2011, -2024-04-06,2039, -2024-04-07,2045, -2024-04-08,2027, -2024-04-09,2020, -2024-04-10,2014, -2024-04-11,2020, -2024-04-12,2035, -2024-04-13,2032, -2024-04-14,2033, -2024-04-15,2030, -2024-04-16,2021, -2024-04-17,2038, -2024-04-18,2032, -2024-04-19,2012, -2024-04-20,2056, -2024-04-21,2035, -2024-04-22,2022, -2024-04-23,2060, -2024-04-24,2043, -2024-04-25,2048, -2024-04-26,2045, -2024-04-27,2051, -2024-04-28,2040, -2024-04-29,2080, -2024-04-30,2059, -2024-05-01,2063, -2024-05-02,2079, -2024-05-03,2060, -2024-05-04,2079, -2024-05-05,2088, -2024-05-06,2044, -2024-05-07,2046, -2024-05-08,2098, -2024-05-09,2062, -2024-05-10,2099, -2024-05-11,2098, -2024-05-12,2069, -2024-05-13,2110, -2024-05-14,2074, -2024-05-15,2080, -2024-05-16,2111, -2024-05-17,2096, -2024-05-18,2109, -2024-05-19,2117, -2024-05-20,2115, -2024-05-21,2099, -2024-05-22,2094, -2024-05-23,2091, -2024-05-24,2074, -2024-05-25,2094, -2024-05-26,2085, -2024-05-27,2109, -2024-05-28,2101, -2024-05-29,2113, -2024-05-30,2092, -2024-05-31,2102, -2024-06-01,2082, -2024-06-02,2091, -2024-06-03,2100, -2024-06-04,2106, -2024-06-05,2134, -2024-06-06,2125, -2024-06-07,2138, -2024-06-08,2105, -2024-06-09,2094, -2024-06-10,2125, -2024-06-11,2118, -2024-06-12,2123, -2024-06-13,2118, -2024-06-14,2118, -2024-06-15,2100, -2024-06-16,2101, -2024-06-17,2100, -2024-06-18,2128, -2024-06-19,2102, -2024-06-20,2125, -2024-06-21,2127, -2024-06-22,2139, -2024-06-23,2104, -2024-06-24,2140, -2024-06-25,2138, -2024-06-26,2132, -2024-06-27,2100, -2024-06-28,2138, -2024-06-29,2137, -2024-06-30,2126, -2024-07-01,2143, -2024-07-02,2153, -2024-07-03,2138, -2024-07-04,2150, -2024-07-05,2171, -2024-07-06,2164, -2024-07-07,2161, -2024-07-08,2190, -2024-07-09,2171, -2024-07-10,2185, -2024-07-11,2178, -2024-07-12,2170, -2024-07-13,2190, -2024-07-14,2177, -2024-07-15,2185, -2024-07-16,2176, -2024-07-17,2195, -2024-07-18,2160, -2024-07-19,2170, -2024-07-20,2189, -2024-07-21,2188, -2024-07-22,2170, -2024-07-23,2177, -2024-07-24,2188, -2024-07-25,2200, -2024-07-26,2216, -2024-07-27,2221, -2024-07-28,2206, -2024-07-29,2208, -2024-07-30,2233, -2024-07-31,2185, -2024-08-01,2218, -2024-08-02,2226, -2024-08-03,2201, -2024-08-04,2236, -2024-08-05,2191, -2024-08-06,2216, -2024-08-07,2223, -2024-08-08,2205, -2024-08-09,2218, -2024-08-10,2200, -2024-08-11,2192, -2024-08-12,2226, -2024-08-13,2217, -2024-08-14,2206, -2024-08-15,2207, -2024-08-16,2251, -2024-08-17,2228, -2024-08-18,2202, -2024-08-19,2229, -2024-08-20,2229, -2024-08-21,2232, -2024-08-22,2214, -2024-08-23,2257, -2024-08-24,2229, -2024-08-25,2222, -2024-08-26,2204, -2024-08-27,2219, -2024-08-28,2234, -2024-08-29,2245, -2024-08-30,2281, -2024-08-31,2238, -2024-09-01,2240, -2024-09-02,2261, -2024-09-03,2250, -2024-09-04,2299, -2024-09-05,2250, -2024-09-06,2308, -2024-09-07,2269, -2024-09-08,2266, -2024-09-09,2289, -2024-09-10,2294, -2024-09-11,2307, -2024-09-12,2270, -2024-09-13,2317, -2024-09-14,2269, -2024-09-15,2309, -2024-09-16,2324, -2024-09-17,2331, -2024-09-18,2347, -2024-09-19,2290, -2024-09-20,2350, -2024-09-21,2358, -2024-09-22,2388, -2024-09-23,2378, -2024-09-24,2389, -2024-09-25,2424, -2024-09-26,2435, -2024-09-27,2381, -2024-09-28,2386, -2024-09-29,2394, -2024-09-30,2425, -2024-10-01,2418, -2024-10-02,2452, -2024-10-03,2461, -2024-10-04,2412, -2024-10-05,2476, -2024-10-06,2469, -2024-10-07,2465, -2024-10-08,2434, -2024-10-09,2484, -2024-10-10,2472, -2024-10-11,2493, -2024-10-12,2467, -2024-10-13,2430, -2024-10-14,2472, -2024-10-15,2461, -2024-10-16,2464, -2024-10-17,2501, -2024-10-18,2449, -2024-10-19,2475, -2024-10-20,2487, -2024-10-21,2484, -2024-10-22,2510, -2024-10-23,2492, -2024-10-24,2490, -2024-10-25,2512, -2024-10-26,2506, -2024-10-27,2508, -2024-10-28,2496, -2024-10-29,2502, -2024-10-30,2536, -2024-10-31,2510, -2024-11-01,2480, -2024-11-02,2488, -2024-11-03,2505, -2024-11-04,2515, -2024-11-05,2488, -2024-11-06,2493, -2024-11-07,2485, -2024-11-08,2502, -2024-11-09,2498, -2024-11-10,2504, -2024-11-11,2533, -2024-11-12,2531, -2024-11-13,2518, -2024-11-14,2532, -2024-11-15,2513, -2024-11-16,2512, -2024-11-17,2535, -2024-11-18,2529, -2024-11-19,2539, -2024-11-20,2539, -2024-11-21,2552, -2024-11-22,2528, -2024-11-23,2504, -2024-11-24,2537, -2024-11-25,2541, -2024-11-26,2543, -2024-11-27,2543, -2024-11-28,2496, -2024-11-29,2521, -2024-11-30,2555, -2024-12-01,2508, -2024-12-02,2565, -2024-12-03,2564, -2024-12-04,2505, -2024-12-05,2571, -2024-12-06,2527, -2024-12-07,2571, -2024-12-08,2559, -2024-12-09,2577, -2024-12-10,2565, -2024-12-11,2579, -2024-12-12,2558, -2024-12-13,2562, -2024-12-14,2559, -2024-12-15,2537, -2024-12-16,2553, -2024-12-17,2576, -2024-12-18,2544, -2024-12-19,2566, -2024-12-20,2566, -2024-12-21,2556, -2024-12-22,2590, -2024-12-23,2592, -2024-12-24,2584, -2024-12-25,2585, -2024-12-26,2608, -2024-12-27,2579, -2024-12-28,2602, -2024-12-29,2609, -2024-12-30,2594, -2024-12-31,2611, -2025-01-01,2599, -2025-01-02,2622, -2025-01-03,2602, -2025-01-04,2603, -2025-01-05,2605, -2025-01-06,2586, -2025-01-07,2596, -2025-01-08,2590, -2025-01-09,2594, -2025-01-10,2601, -2025-01-11,2618, -2025-01-12,2617, -2025-01-13,2603, -2025-01-14,2667, -2025-01-15,2630, -2025-01-16,2652, -2025-01-17,2608, -2025-01-18,2628, -2025-01-19,2650, -2025-01-20,2641, -2025-01-21,2672, -2025-01-22,2687, -2025-01-23,2678, -2025-01-24,2641, -2025-01-25,2670, -2025-01-26,2688, -2025-01-27,2707, -2025-01-28,2720, -2025-01-29,2699, -2025-01-30,2716, -2025-01-31,2691, -2025-02-01,2696, -2025-02-02,2677, -2025-02-03,2723, -2025-02-04,2739, -2025-02-05,2728, -2025-02-06,2732, -2025-02-07,2750, -2025-02-08,2768, -2025-02-09,2748, -2025-02-10,2745, -2025-02-11,2738, -2025-02-12,2740, -2025-02-13,2721, -2025-02-14,2705, -2025-02-15,2704, -2025-02-16,2699, -2025-02-17,2680, -2025-02-18,2697, -2025-02-19,2659, -2025-02-20,2694, -2025-02-21,2683, -2025-02-22,2689, -2025-02-23,2720, -2025-02-24,2687, -2025-02-25,2701, -2025-02-26,2750, -2025-02-27,2749, -2025-02-28,2720, -2025-03-01,2732, -2025-03-02,2715, -2025-03-03,2702, -2025-03-04,2748, -2025-03-05,2712, -2025-03-06,2731, -2025-03-07,2719, -2025-03-08,2715, -2025-03-09,2695, -2025-03-10,2745, -2025-03-11,2726, -2025-03-12,2760, -2025-03-13,2746, -2025-03-14,2749, -2025-03-15,2754, -2025-03-16,2722, -2025-03-17,2750, -2025-03-18,2774, -2025-03-19,2783, -2025-03-20,2765, -2025-03-21,2766, -2025-03-22,2773, -2025-03-23,2768, -2025-03-24,2788, -2025-03-25,2789, -2025-03-26,2803, -2025-03-27,2806, -2025-03-28,2821, -2025-03-29,2804, -2025-03-30,2790, -2025-03-31,2826, -2025-04-01,2863, -2025-04-02,2824, -2025-04-03,2816, -2025-04-04,2828, -2025-04-05,2832, -2025-04-06,2897, -2025-04-07,2896, -2025-04-08,2877, -2025-04-09,2883, -2025-04-10,2851, -2025-04-11,2859, -2025-04-12,2893, -2025-04-13,2900, -2025-04-14,2898, -2025-04-15,2889, -2025-04-16,2910, -2025-04-17,2895, -2025-04-18,2898, -2025-04-19,2904, -2025-04-20,2904, -2025-04-21,2886, -2025-04-22,2882, -2025-04-23,2897, -2025-04-24,2910, -2025-04-25,2924, -2025-04-26,2930, -2025-04-27,2925, -2025-04-28,2952, -2025-04-29,2966, -2025-04-30,2970, -2025-05-01,2913, -2025-05-02,2960, -2025-05-03,2920, -2025-05-04,2939, -2025-05-05,2988, -2025-05-06,2970, -2025-05-07,3025, -2025-05-08,2995, -2025-05-09,2992, -2025-05-10,2984, -2025-05-11,3031, -2025-05-12,2995, -2025-05-13,3042, -2025-05-14,3030, -2025-05-15,3001, -2025-05-16,3035, -2025-05-17,3004, -2025-05-18,3059, -2025-05-19,3029, -2025-05-20,3080, -2025-05-21,3059, -2025-05-22,3055, -2025-05-23,3078, -2025-05-24,3067, -2025-05-25,3103, -2025-05-26,3079, -2025-05-27,3100, -2025-05-28,3099, -2025-05-29,3085, -2025-05-30,3112, -2025-05-31,3111, -2025-06-01,3117, -2025-06-02,3140, -2025-06-03,3114, -2025-06-04,3122, -2025-06-05,3112, -2025-06-06,3137, -2025-06-07,3129, -2025-06-08,3146, -2025-06-09,3150, -2025-06-10,3140, -2025-06-11,3169, -2025-06-12,3176, -2025-06-13,3123, -2025-06-14,3142, -2025-06-15,3173, -2025-06-16,3157, -2025-06-17,3161, -2025-06-18,3166, -2025-06-19,3153, -2025-06-20,3199, -2025-06-21,3205, -2025-06-22,3173, -2025-06-23,3145, -2025-06-24,3211, -2025-06-25,3159, -2025-06-26,3205, -2025-06-27,3193, -2025-06-28,3169, -2025-06-29,3182, -2025-06-30,3205, -2025-07-01,3224, -2025-07-02,3243, -2025-07-03,3214, -2025-07-04,3223, -2025-07-05,3215, -2025-07-06,3235, -2025-07-07,3214, -2025-07-08,3246, -2025-07-09,3264, -2025-07-10,3289, -2025-07-11,3292, -2025-07-12,3286, -2025-07-13,3285, -2025-07-14,3311, -2025-07-15,3313, -2025-07-16,3292, -2025-07-17,3294, -2025-07-18,3301, -2025-07-19,3276, -2025-07-20,3283, -2025-07-21,3291, -2025-07-22,3312, -2025-07-23,3322, -2025-07-24,3287, -2025-07-25,3319, -2025-07-26,3329, -2025-07-27,3353, -2025-07-28,3333, -2025-07-29,3332, -2025-07-30,3343, -2025-07-31,3337, -2025-08-01,3342, -2025-08-02,3388, -2025-08-03,3364, -2025-08-04,3394, -2025-08-05,3370, -2025-08-06,3371, -2025-08-07,3382, -2025-08-08,3383, -2025-08-09,3377, -2025-08-10,3398, -2025-08-11,3434, -2025-08-12,3395, -2025-08-13,3403, -2025-08-14,3396, -2025-08-15,3424, -2025-08-16,3419, -2025-08-17,3400, -2025-08-18,3404, -2025-08-19,3407, -2025-08-20,3443, -2025-08-21,3419, -2025-08-22,3421, -2025-08-23,3404, -2025-08-24,3416, -2025-08-25,3415, -2025-08-26,3435, -2025-08-27,3398, -2025-08-28,3414, -2025-08-29,3424, -2025-08-30,3420, -2025-08-31,3452, -2025-09-01,3441, -2025-09-02,3466, -2025-09-03,3458, -2025-09-04,3460, -2025-09-05,3482, -2025-09-06,3515, -2025-09-07,3480, -2025-09-08,3473, -2025-09-09,3486, -2025-09-10,3488, -2025-09-11,3473, -2025-09-12,3481, -2025-09-13,3476, -2025-09-14,3534, -2025-09-15,3528, -2025-09-16,3518, -2025-09-17,3477, -2025-09-18,3503, -2025-09-19,3497, -2025-09-20,3530, -2025-09-21,3495, -2025-09-22,3546, -2025-09-23,3577, -2025-09-24,3582, -2025-09-25,3539, -2025-09-26,3567, -2025-09-27,3550, -2025-09-28,3580, -2025-09-29,3565, -2025-09-30,3582, -2025-10-01,3606, -2025-10-02,3568, -2025-10-03,3557, -2025-10-04,3570, -2025-10-05,3579, -2025-10-06,3607, -2025-10-07,3619, -2025-10-08,3612, -2025-10-09,3614, -2025-10-10,3654, -2025-10-11,3645, -2025-10-12,3628, -2025-10-13,3640, -2025-10-14,3656, -2025-10-15,3699, -2025-10-16,3679, -2025-10-17,3688, -2025-10-18,3656, -2025-10-19,3714, -2025-10-20,3694, -2025-10-21,3722, -2025-10-22,3707, -2025-10-23,3707, -2025-10-24,3673, -2025-10-25,3718, -2025-10-26,3734, -2025-10-27,3736, -2025-10-28,3753, -2025-10-29,3722, -2025-10-30,3741, -2025-10-31,3753, -2025-11-01,3729, -2025-11-02,3753, -2025-11-03,3780, -2025-11-04,3802, -2025-11-05,3795, -2025-11-06,3789, -2025-11-07,3841, -2025-11-08,3810, -2025-11-09,3815, -2025-11-10,3796, -2025-11-11,3821, -2025-11-12,3794, -2025-11-13,3845, -2025-11-14,3844, -2025-11-15,3833, -2025-11-16,3853, -2025-11-17,3825, -2025-11-18,3839, -2025-11-19,3848, -2025-11-20,3838, -2025-11-21,3864, -2025-11-22,3846, -2025-11-23,3884, -2025-11-24,3927, -2025-11-25,3899, -2025-11-26,3938, -2025-11-27,3936, -2025-11-28,3918, -2025-11-29,3938, -2025-11-30,3940, -2025-12-01,3911, -2025-12-02,3922, -2025-12-03,3898, -2025-12-04,3953, -2025-12-05,3992, -2025-12-06,3932, -2025-12-07,3991, -2025-12-08,4044, -2025-12-09,3995, -2025-12-10,4021, -2025-12-11,3980, -2025-12-12,4020, -2025-12-13,4053, -2025-12-14,4055, -2025-12-15,4073, -2025-12-16,4114, -2025-12-17,4039, -2025-12-18,4084, -2025-12-19,4088, -2025-12-20,4113, -2025-12-21,4097, -2025-12-22,4093, -2025-12-23,4080, -2025-12-24,4126, -2025-12-25,4106, -2025-12-26,4111, -2025-12-27,4101, -2025-12-28,4113, -2025-12-29,4134, -2025-12-30,4141, -2025-12-31,4194, -2026-01-01,4183, -2026-01-02,4171, -2026-01-03,4230, -2026-01-04,4193, -2026-01-05,4227, -2026-01-06,4243, -2026-01-07,4276, -2026-01-08,4234, -2026-01-09,4236, -2026-01-10,4282, -2026-01-11,4234, -2026-01-12,4275, -2026-01-13,4305, -2026-01-14,4289, -2026-01-15,4294, -2026-01-16,4289, -2026-01-17,4268, -2026-01-18,4317, -2026-01-19,4277, -2026-01-20,4318, -2026-01-21,4290, -2026-01-22,4302, -2026-01-23,4321, -2026-01-24,4322, -2026-01-25,4332, -2026-01-26,4337, -2026-01-27,4381, -2026-01-28,4400, -2026-01-29,4392, -2026-01-30,4446, -2026-01-31,4456, -2026-02-01,4481, -2026-02-02,4488, -2026-02-03,4519, -2026-02-04,4532, -2026-02-05,4546, -2026-02-06,4507, -2026-02-07,4536, -2026-02-08,4532, -2026-02-09,4562, -2026-02-10,4580, -2026-02-11,4562, -2026-02-12,4576, -2026-02-13,4572, -2026-02-14,4561, -2026-02-15,4568, -2026-02-16,4575, -2026-02-17,4577, -2026-02-18,4583, -2026-02-19,4558, -2026-02-20,4613, -2026-02-21,4583, -2026-02-22,4603, -2026-02-23,4581, -2026-02-24,4644, -2026-02-25,4599, -2026-02-26,4623, -2026-02-27,4631, -2026-02-28,4633, -2026-03-01,4673, -2026-03-02,4628, -2026-03-03,4626, -2026-03-04,4634, -2026-03-05,4637, -2026-03-06,4636, -2026-03-07,4637, -2026-03-08,4679, -2026-03-09,4665, -2026-03-10,4637, -2026-03-11,4672, -2026-03-12,4724, -2026-03-13,4728,"Change in reporting data: We've updated our acquisition and install metrics to: